diff --git "a/data_dbpedia_4_datasets_old.csv" "b/data_dbpedia_4_datasets_old.csv" new file mode 100644--- /dev/null +++ "b/data_dbpedia_4_datasets_old.csv" @@ -0,0 +1,17004 @@ +question,query,dataset-id +Give me all school types.,"PREFIX rdfs: +PREFIX rdf: +PREFIX yago: +SELECT DISTINCT ?uri ?string +WHERE +{ + ?uri rdf:type yago:SchoolTypes . + OPTIONAL {?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } +}",qald-1 +Which presidents were born in 1945?,"PREFIX rdfs: +PREFIX rdf: +PREFIX onto: +PREFIX yago: +SELECT DISTINCT ?uri ?string +WHERE +{ + { + ?uri rdf:type onto:President . + ?uri onto:birthDate ?date . + FILTER regex(?date,'^1945') . + OPTIONAL {?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } + } + UNION + { + ?uri rdf:type yago:President. + ?uri onto:birthDate ?date . + FILTER regex(?date, '^1945') . + OPTIONAL {?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } + } +}",qald-1 +Who are the presidents of the United States?,"PREFIX rdf: +PREFIX yago: +PREFIX onto: +PREFIX res: +PREFIX rdfs: +PREFIX prop: +SELECT DISTINCT ?uri ?string +WHERE +{ + { + ?uri rdf:type yago:PresidentsOfTheUnitedStates. + } + UNION + { + ?uri rdf:type onto:President. + ?uri prop:title res:President_of_the_United_States. + } + OPTIONAL {?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } +}",qald-1 +Who was the wife of President Lincoln?,"PREFIX rdfs: +PREFIX rdf: +PREFIX foaf: +PREFIX onto: +SELECT ?uri ?string +WHERE +{ + ?person rdf:type onto:President . + ?person foaf:surname 'Lincoln'@en . + ?person onto:spouse ?uri. + OPTIONAL {?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } +}",qald-1 +Who developed the video game World of Warcraft?,"PREFIX rdfs: +PREFIX rdf: +PREFIX onto: +SELECT ?uri ?string +WHERE +{ + ?subject rdf:type onto:Software . + ?subject rdfs:label 'World of Warcraft'@en . + ?subject onto:developer ?uri . + OPTIONAL {?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } +}",qald-1 +What is the official website of Tom Hanks?,"PREFIX rdfs: +PREFIX foaf: +SELECT ?uri +WHERE +{ + ?subject rdfs:label 'Tom Hanks'@en . + ?subject foaf:homepage ?uri +}",qald-1 +List all episodes of the first season of the HBO television series The Sopranos!,"PREFIX rdfs: +PREFIX onto: +PREFIX res: +SELECT ?uri ?string +WHERE +{ + ?uri onto:series res:The_Sopranos . + ?uri onto:seasonNumber 1 . + OPTIONAL {?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } +}",qald-1 +Who produced the most films?,"PREFIX rdfs: +PREFIX rdf: +PREFIX onto: +SELECT ?uri ?string +WHERE +{ + ?film rdf:type onto:Film . + ?film onto:producer ?uri . + OPTIONAL {?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } +} ORDER BY DESC(COUNT(?film)) LIMIT 1",qald-1 +Which people have as their given name Jimmy?,"PREFIX rdfs: +PREFIX rdf: +PREFIX foaf: +SELECT DISTINCT ?uri ?string +WHERE +{ + ?uri rdf:type foaf:Person. + ?uri foaf:givenName 'Jimmy'@en . + OPTIONAL {?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } +}",qald-1 +Is there a video game called Battle Chess?,"PREFIX rdf: +PREFIX onto: +PREFIX rdfs: +ASK +WHERE +{ + ?software rdf:type onto:Software . + ?software rdfs:label ?name . + FILTER (regex(?name, 'Battle Chess')) +}",qald-1 +Which mountains are higher than the Nanga Parbat?,"PREFIX rdfs: +PREFIX rdf: +PREFIX onto: +PREFIX prop: +SELECT ?uri ?string +WHERE +{ + ?uri rdf:type onto:Mountain . + ?acon rdfs:label 'Nanga Parbat'@en . + ?acon prop:elevationM ?elevation . + ?uri prop:elevationM ?allelevation . + FILTER (?allelevation > ?elevation) . + OPTIONAL {?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } +}",qald-1 +Who created English Wikipedia?,"PREFIX onto: +PREFIX rdf: +PREFIX rdfs: +SELECT ?uri ?string +WHERE +{ + ?website rdf:type onto:Website . + ?website onto:author ?uri . + ?website rdfs:label 'English Wikipedia'@en . + OPTIONAL {?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } +}",qald-1 +Give me all actors starring in Batman Begins.,"PREFIX rdfs: +PREFIX rdf: +PREFIX foaf: +PREFIX onto: +SELECT ?uri ?string +WHERE +{ + ?film rdf:type onto:Film . + ?film onto:starring ?uri . + ?film foaf:name 'Batman Begins'@en . + OPTIONAL {?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } +}",qald-1 +Which software has been developed by organizations founded in California?,"PREFIX rdfs: +PREFIX onto: +PREFIX res: +SELECT ?uri ?string +WHERE +{ + ?company rdf:type onto:Organisation . + ?company onto:foundationPlace res:California . + ?uri onto:developer ?company . + ?uri rdf:type onto:Software . + OPTIONAL {?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } +}",qald-1 +Which companies work in the aerospace industry as well as on nuclear reactor technology?,"PREFIX rdfs: +PREFIX rdf: +PREFIX onto: +PREFIX res: +PREFIX prop: +SELECT ?uri ?string +WHERE +{ + ?uri rdf:type onto:Company . + ?uri prop:industry res:Aerospace . + ?uri prop:industry res:Nuclear_reactor_technology . + OPTIONAL {?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } +}",qald-1 +Is Christian Bale starring in Batman Begins?,"PREFIX rdf: +PREFIX foaf: +PREFIX onto: +ASK +WHERE +{ + ?film rdf:type onto:Film . + ?film onto:starring ?actors . + ?actors rdfs:label 'Christian Bale'@en . + ?film foaf:name 'Batman Begins'@en +}",qald-1 +Give me the websites of companies with more than 500000 employees.,"PREFIX rdf: +PREFIX prop: +PREFIX xsd: +PREFIX foaf: +PREFIX onto: +SELECT DISTINCT ?uri +WHERE +{ + ?subject rdf:type onto:Company . + ?subject prop:numEmployees ?employees . + FILTER( xsd:integer(?employees) >= 500000 ) . + ?subject foaf:homepage ?uri . +}",qald-1 +Which actors were born in Germany?,"PREFIX rdfs: +PREFIX rdf: +PREFIX onto: +PREFIX res: +PREFIX yago: +SELECT DISTINCT ?uri ?string +WHERE +{ + ?uri rdf:type onto:Actor . + { + ?uri onto:birthPlace res:Germany . + } + UNION + { + ?uri onto:birthPlace ?city . + ?city rdf:type yago:StatesOfGermany . + } + OPTIONAL {?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } +}",qald-1 +Which country does the Airedale Terrier come from?,"PREFIX rdfs: +PREFIX prop: +SELECT ?string +WHERE +{ + ?dog rdfs:label 'Airedale Terrier'@en . + ?dog prop:country ?string +}",qald-1 +Which birds are there in the United States?,"PREFIX yago: +PREFIX rdfs: +PREFIX rdf: +SELECT DISTINCT ?uri ?string +WHERE +{ + ?uri rdf:type yago:BirdsOfTheUnitedStates. + OPTIONAL {?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } +}",qald-1 +Give me all European Capitals!,"PREFIX yago: +PREFIX rdfs: +PREFIX rdf: +SELECT ?uri ?string +WHERE +{ + ?uri rdf:type yago:CapitalsInEurope. + OPTIONAL {?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } +}",qald-1 +Which cities have more than 2 million inhabitants?,"PREFIX rdfs: +PREFIX rdf: +PREFIX prop: +PREFIX xsd: +PREFIX onto: +SELECT DISTINCT ?uri ?string +WHERE +{ + ?uri rdf:type onto:City. + { ?uri prop:population ?population. } + UNION + { ?uri prop:populationUrban ?population. } + FILTER (xsd:integer(?population) > 2000000) . + OPTIONAL {?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } +}",qald-1 +Who was Tom Hanks married to?,"PREFIX rdfs: +PREFIX prop: +SELECT DISTINCT ?uri ?string +WHERE +{ + ?person rdfs:label 'Tom Hanks'@en . + ?person prop:spouse ?string . + OPTIONAL { ?uri rdfs:label ?string . } +}",qald-1 +When was DBpedia released?,"PREFIX onto: +PREFIX rdf: +PREFIX rdfs: +SELECT ?date +WHERE +{ + ?website rdf:type onto:Software . + ?website onto:releaseDate ?date . + ?website rdfs:label 'DBpedia'@en +}",qald-1 +Which people were born in Heraklion?,"PREFIX rdfs: +PREFIX rdf: +PREFIX onto: +PREFIX yago: +SELECT DISTINCT ?uri ?string +WHERE +{ + ?uri rdf:type onto:Person . + ?uri onto:birthPlace ?city . + ?city rdfs:label 'Heraklion'@en + OPTIONAL {?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } +}",qald-1 +Which caves have more than 3 entrances?,"PREFIX rdfs: +PREFIX onto: +PREFIX rdf: +SELECT ?uri ?string +WHERE +{ + ?uri rdf:type onto:Cave . + ?uri onto:numberOfEntrances ?entrance . + FILTER (?entrance > 3) . + OPTIONAL {?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } +}",qald-1 +Give me all films produced by Hal Roach.,"PREFIX rdfs: +PREFIX rdf: +PREFIX foaf: +PREFIX onto: +SELECT DISTINCT ?uri ?string +WHERE +{ + ?uri rdf:type onto:Film . + ?uri onto:producer ?producer . + ?producer rdfs:label 'Hal Roach'@en . + OPTIONAL {?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } +}",qald-1 +Which software has been published by Mean Hamster Software?,"PREFIX rdfs: +PREFIX rdf: +PREFIX onto: +PREFIX prop: +PREFIX res: +SELECT DISTINCT ?uri ?string +WHERE +{ + ?uri rdf:type onto:Software . + { ?uri prop:publisher 'Mean Hamster Software'@en . } + UNION + { ?uri onto:publisher res:Mean_Hamster_Software . } + OPTIONAL {?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } +}",qald-1 +What languages are spoken in Estonia?,"PREFIX rdfs: +PREFIX rdf: +PREFIX onto: +SELECT DISTINCT ?uri ?string +WHERE +{ + ?country rdf:type onto:Country. + { ?country onto:language ?uri . } + UNION + { ?uri onto:spokenIn ?country . } + FILTER (regex(?country, 'Estonia')). + OPTIONAL {?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } +}",qald-1 +Who owns Aldi?,"PREFIX rdfs: +PREFIX rdf: +PREFIX onto: +SELECT ?uri ?string +WHERE +{ + ?orga rdf:type onto:Organisation . + ?orga onto:keyPerson ?uri . + ?orga rdfs:label 'Aldi'@en . + OPTIONAL {?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } + FILTER (lang(?string) = 'en') +}",qald-1 +Which capitals in Europe were host cities of the summer olympic games?,"PREFIX rdfs: +PREFIX rdf: +PREFIX yago: +SELECT ?uri ?string +WHERE +{ + ?uri rdf:type yago:CapitalsInEurope . + ?uri rdf:type yago:HostCitiesOfTheSummerOlympicGames . + OPTIONAL {?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } +}",qald-1 +Who has been the 5th president of the United States of America?,"PREFIX rdf: +PREFIX onto: +PREFIX rdfs: +SELECT ?uri ?string +WHERE +{ + ?uri rdf:type onto:President . + ?uri onto:orderInOffice '5th President of the United States'@en . + OPTIONAL {?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } +}",qald-1 +Who is called Dana?,"PREFIX rdf: +PREFIX rdfs: +PREFIX foaf: +PREFIX prop: +SELECT DISTINCT ?uri ?string +WHERE +{ + { ?uri rdf:type foaf:Person. + ?uri foaf:givenName 'Dana'@en. } + UNION + { ?uri prop:alias ?alias . + FILTER regex(?alias,'Dana') . } + OPTIONAL {?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } +}",qald-1 +Which music albums contain the song Last Christmas?,"PREFIX rdfs: +PREFIX rdf: +PREFIX foaf: +PREFIX onto: +SELECT DISTINCT ?uri ?string +WHERE +{ + ?single rdf:type onto:Single . + ?single onto:album ?uri . + ?single foaf:name 'Last Christmas'@en . + OPTIONAL {?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } +}",qald-1 +Which books were written by Danielle Steel?,"PREFIX rdfs: +PREFIX rdf: +PREFIX foaf: +PREFIX onto: +SELECT ?uri ?string +WHERE +{ + ?uri rdf:type onto:Book . + ?uri onto:author ?author . + ?author foaf:name 'Danielle Steel'@en . + OPTIONAL {?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } +}",qald-1 +"Which companies are located in California, USA?","PREFIX rdfs: +PREFIX onto: +PREFIX res: +SELECT DISTINCT ?uri ?string +WHERE +{ + ?uri rdf:type onto:Organisation . + ?uri onto:location res:California . + OPTIONAL {?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } +}",qald-1 +Which genre does DBpedia belong to?,"PREFIX prop: +PREFIX onto: +PREFIX rdf: +PREFIX rdfs: +SELECT ?uri ?string +WHERE +{ + ?dbpedia rdf:type onto:Software . + ?dbpedia onto:genre ?uri . + ?dbpedia rdfs:label 'DBpedia'@en . + OPTIONAL {?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } +}",qald-1 +Which country has the most official languages?,"PREFIX onto: +PREFIX rdf: +PREFIX rdfs: +SELECT ?uri ?string +WHERE +{ + ?uri rdf:type onto:Country . + ?uri onto:language ?language . + OPTIONAL {?uri rdfs:label ?string . FILTER (lang(?string) = 'en')} +} ORDER BY DESC(count(?language)) LIMIT 1",qald-1 +In which programming language is GIMP written?,"PREFIX prop: +PREFIX res: +SELECT ?string +WHERE +{ + res:GIMP prop:programmingLanguage ?string . +}",qald-1 +Who produced films starring Natalie Portman?,"PREFIX rdfs: +PREFIX rdf: +PREFIX foaf: +PREFIX onto: +SELECT DISTINCT ?uri ?string +WHERE +{ + ?film rdf:type onto:Film . + ?film onto:starring ?actors . + ?actors foaf:name 'Natalie Portman'@en . + ?film onto:producer ?uri . + OPTIONAL {?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } +}",qald-1 +Give me all movies with Tom Cruise!,"PREFIX rdfs: +PREFIX onto: +PREFIX res: +PREFIX rdf: +PREFIX prop: +SELECT DISTINCT ?uri ?string +WHERE +{ + ?uri rdf:type onto:Film. + { ?uri prop:starring res:Tom_Cruise . } + UNION + { ?uri onto:starring res:Tom_Cruise . } + OPTIONAL {?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } +}",qald-1 +In which films did Julia Roberts as well as Richard Gere play?,"PREFIX rdfs: +PREFIX rdf: +PREFIX onto: +PREFIX res: +SELECT ?uri ?string +WHERE +{ + ?uri rdf:type onto:Film . + ?uri onto:starring res:Julia_Roberts . + ?uri onto:starring res:Richard_Gere. + OPTIONAL {?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } +}",qald-1 +Give me all female German chancellors!,"PREFIX rdf: +PREFIX rdfs: +PREFIX yago: +PREFIX prop: +SELECT ?uri ?string +WHERE +{ + ?uri rdf:type yago:FemaleHeadsOfGovernment. + ?uri prop:office ?office . + FILTER regex(?office, 'Chancellor of Germany'). + OPTIONAL {?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } +}",qald-1 +Who wrote the book The pillars of the Earth?,"PREFIX rdfs: +PREFIX rdf: +PREFIX rdfs: +PREFIX onto: +SELECT ?uri ?string +WHERE +{ + ?books rdf:type onto:Book . + ?books onto:author ?uri . + ?books rdfs:label 'The Pillars of the Earth'@en . + OPTIONAL {?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } +}",qald-1 +How many films did Leonardo DiCaprio star in?,"PREFIX rdf: +PREFIX foaf: +PREFIX onto: +SELECT COUNT(?film) +WHERE +{ + ?film rdf:type onto:Film . + ?film onto:starring ?actors . + ?actors foaf:name 'Leonardo DiCaprio'@en . +}",qald-1 +Give me all soccer clubs in the Premier League.,"PREFIX rdfs: +PREFIX onto: +PREFIX resource: +SELECT DISTINCT ?uri ?string +WHERE +{ + ?uri onto:league resource:Premier_League . + OPTIONAL {?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } +}",qald-1 +When was Capcom founded?,"PREFIX res: +PREFIX prop: +SELECT ?date +WHERE +{ + res:Capcom prop:foundation ?date . +}",qald-1 +Which organizations were founded in 1950?,"PREFIX rdf: +PREFIX onto: +PREFIX prop: +PREFIX rdfs: +SELECT DISTINCT ?uri ?string +WHERE +{ + ?uri rdf:type onto:Organisation . + ?uri prop:foundation ?date . + FILTER regex(?date,'^1950') . + OPTIONAL {?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } +}",qald-1 +What is the highest mountain?,"PREFIX rdfs: +PREFIX onto: +PREFIX rdf: +SELECT ?uri ?string +WHERE +{ + ?uri rdf:type onto:Mountain . + ?uri onto:elevation ?elevation . + OPTIONAL {?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } +} ORDER BY DESC(?elevation) LIMIT 1",qald-1 +Is Natalie Portman an actress?,"PREFIX rdfs: +PREFIX rdf: +PREFIX onto: +ASK +WHERE +{ + ?subject rdf:type onto:Actor. + ?subject rdfs:label 'Natalie Portman'@en. +}",qald-1 +Which presidents of the United States had more than three children?,"PREFIX rdf: +PREFIX rdfs: +PREFIX onto: +PREFIX yago: +SELECT DISTINCT ?uri ?string +WHERE +{ + ?uri rdf:type yago:PresidentsOfTheUnitedStates . + ?uri onto:child ?child . + OPTIONAL {?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } +} HAVING (count(?child) > 3)",qald-1 +Give me the official websites of actors of the television show Charmed.,"PREFIX rdfs: +PREFIX rdf: +PREFIX foaf: +PREFIX onto: +SELECT DISTINCT ?uri +WHERE +{ + ?film rdf:type onto:TelevisionShow . + ?film rdfs:label 'Charmed'@en . + ?film onto:starring ?actors . + ?actors foaf:homepage ?uri . +}",qald-1 +Who is the daughter of Bill Clinton married to?,"PREFIX res: +PREFIX dbpedia2: +PREFIX onto: +PREFIX rdfs: +SELECT DISTINCT ?uri ?string +WHERE +{ + res:Bill_Clinton onto:child ?child . + ?child dbpedia2:spouse ?string . + ?uri rdfs:label ?string . +}",qald-1 +Which river does the Brooklyn Bridge cross?,"PREFIX res: +PREFIX dbpedia2: +SELECT DISTINCT ?uri ?string +WHERE +{ + res:Brooklyn_Bridge dbpedia2:crosses ?string . + ?uri dbpedia2:name ?string . +}",qald-1 +How many monarchical countries are there in Europe?,"PREFIX onto: +PREFIX yago: +PREFIX rdf: +SELECT COUNT(DISTINCT ?uri) +WHERE +{ + ?uri rdf:type yago:EuropeanCountries . + ?uri onto:governmentType ?govern . + FILTER regex(?govern,'monarchy') . +}",qald-1 +Where did Abraham Lincoln die?,"PREFIX onto: +PREFIX res: +PREFIX rdfs: +SELECT DISTINCT ?uri ?string +WHERE +{ + res:Abraham_Lincoln onto:deathPlace ?uri . + OPTIONAL {?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } +}",qald-1 +Is the wife of President Obama called Michelle?,"PREFIX rdfs: +PREFIX onto: +PREFIX res: +ASK +WHERE +{ + res:Barack_Obama onto:spouse ?spouse . + ?spouse rdfs:label ?name . + FILTER(regex(?name,'Michelle')) +}",qald-1 +Which states of Germany are governed by the Social Democratic Party?,"PREFIX onto: +PREFIX rdf: +PREFIX rdfs: +PREFIX yago: +SELECT DISTINCT ?uri ?string +WHERE +{ + ?uri rdf:type yago:StatesOfGermany . + ?uri onto:leaderParty res:Social_Democratic_Party_of_Germany . + OPTIONAL {?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } +}",qald-1 +Which U.S. states possess gold minerals?,"PREFIX yago: +PREFIX rdf: +PREFIX rdfs: +PREFIX dbpedia2: +SELECT DISTINCT ?uri ?string +WHERE +{ + ?uri rdf:type yago:StatesOfTheUnitedStates . + ?uri dbpedia2:mineral ?mineral . + FILTER (regex(?mineral,'Gold')) . + OPTIONAL {?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } +}",qald-1 +In which country does the Nile start?,"PREFIX onto: +PREFIX rdfs: +PREFIX res: +SELECT ?uri ?string +WHERE +{ + res:Nile onto:sourceCountry ?uri . + OPTIONAL {?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } +}",qald-1 +Which locations have more than two caves?,"PREFIX onto: +PREFIX rdf: +PREFIX rdfs: +SELECT DISTINCT ?uri ?string +WHERE +{ + ?cave rdf:type onto:Cave . + ?cave onto:location ?uri . + OPTIONAL {?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } +} HAVING (count(?cave) > 2)",qald-1 +Is proinsulin a protein?,"PREFIX res: +PREFIX rdf: +PREFIX onto: +ASK +WHERE +{ + res:Proinsulin rdf:type onto:Protein . +}",qald-1 +Which classis does the Millepede belong to?,"PREFIX dbpedia2: +PREFIX res: +SELECT ?string +WHERE +{ + res:Millipede dbpedia2:classis ?string . +}",qald-1 +How tall is Claudia Schiffer?,"PREFIX res: +PREFIX onto: +SELECT ?number +WHERE +{ + res:Claudia_Schiffer onto:height ?number . +}",qald-1 +Who created Goofy?,"PREFIX res: +PREFIX prop: +SELECT DISTINCT ?uri ?string +WHERE +{ + res:Goofy prop:creator ?string . + ?uri prop:name ?string . +}",qald-1 +Give me the capitals of all U.S. states.,"PREFIX onto: +PREFIX rdf: +PREFIX rdfs: +PREFIX yago: +SELECT DISTINCT ?uri ?string +WHERE +{ + ?states rdf:type yago:StatesOfTheUnitedStates . + ?states onto:capital ?uri . + OPTIONAL {?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } +}",qald-1 +Give me all cities in New Jersey with more than 100000 inhabitants.,"PREFIX rdf: +PREFIX rdfs: +PREFIX dbpedia2: +PREFIX onto: +SELECT DISTINCT ?uri ?string +WHERE +{ + ?uri rdf:type onto:City . + ?uri dbpedia2:subdivisionName ?location . + FILTER (regex(?location, 'New Jersey')) . + ?uri dbpedia2:populationTotal ?inhabitants . + FILTER (?inhabitants > 100000) . + OPTIONAL {?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } +}",qald-1 +Which museum exhibits The Scream by Munch?,"PREFIX res: +PREFIX dbpedia2: +PREFIX rdfs: +SELECT ?uri ?string +WHERE +{ + res:The_Scream dbpedia2:museum ?string . + OPTIONAL { ?uri rdfs:label ?string. } +}",qald-1 +Is Egypts largest city also its capital?,"PREFIX res: +PREFIX onto: +ASK +WHERE +{ + res:Egypt onto:largestCity ?large . + res:Egypt onto:capital ?capital . + FILTER (?large = ?capital) +}",qald-1 +What is the revenue of IBM?,"PREFIX onto: +PREFIX res: +SELECT ?number +WHERE +{ + res:IBM onto:revenue ?number . +}",qald-1 +Which states border Utah?,"PREFIX res: +PREFIX dbpedia2: +PREFIX yago: +SELECT DISTINCT ?uri ?string +WHERE +{ + {res:Kansas dbpedia2:north ?string.} + UNION + {res:Kansas dbpedia2:northeast ?string.} + UNION + {res:Kansas dbpedia2:south ?string.} + UNION + {res:Kansas dbpedia2:southeast ?string.} + UNION + {res:Kansas dbpedia2:east ?string.} + UNION + {res:Kansas dbpedia2:west ?string.} + OPTIONAL { ?uri rdf:type yago:StatesOfTheUnitedStates . + ?uri dbpedia2:name ?string . } +}",qald-1 +In which country is the Limerick Lake?,"PREFIX onto: +PREFIX rdfs: +PREFIX res: +SELECT DISTINCT ?uri ?string +WHERE +{ + res:Limerick_Lake onto:country ?uri . + OPTIONAL { ?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } +}",qald-1 +Which television shows were created by Walt Disney?,"PREFIX onto: +PREFIX rdf: +PREFIX rdfs: +PREFIX res: +SELECT DISTINCT ?uri ?string +WHERE +{ + ?uri rdf:type onto:TelevisionShow . + ?uri onto:creator res:Walt_Disney . + OPTIONAL {?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } +}",qald-1 +Which mountain is the highest after the Annapurna?,"PREFIX onto: +PREFIX rdf: +PREFIX rdfs: +PREFIX res: +SELECT ?uri ?string +WHERE +{ + res:Annapurna onto:elevation ?elev . + ?uri rdf:type onto:Mountain . + ?uri onto:elevation ?all . + FILTER (?all < ?elev) . + OPTIONAL {?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } +} ORDER BY DESC(?all) LIMIT 1",qald-1 +In which films directed by Garry Marshall was Julia Roberts starring?,"PREFIX rdf: +PREFIX rdfs: +PREFIX onto: +PREFIX res: +SELECT DISTINCT ?uri ?string +WHERE +{ + ?uri rdf:type onto:Film . + ?uri onto:starring res:Julia_Roberts . + ?uri onto:director res:Garry_Marshall . + OPTIONAL {?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } +}",qald-1 +Which bridges are of the same type as the Manhattan Bridge?,"PREFIX onto: +PREFIX rdf: +PREFIX rdfs: +PREFIX res: +PREFIX dbpedia2: +SELECT DISTINCT ?uri ?string +WHERE +{ + ?uri rdf:type onto:Bridge . + ?uri dbpedia2:design ?design . + res:Manhattan_Bridge dbpedia2:design ?manha . + FILTER (regex(?design, ?manha)). + FILTER (?uri != res:Manhattan_Bridge) . + OPTIONAL {?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } +}",qald-1 +Was U.S. president Jackson involved in a war?,"PREFIX onto: +PREFIX yago: +PREFIX rdf: +PREFIX rdfs: +PREFIX dbpedia2: +ASK +WHERE +{ + ?uri rdf:type yago:PresidentsOfTheUnitedStates . + ?uri dbpedia2:name ?name . + FILTER (regex(?name, 'Jackson')) . + OPTIONAL {?uri onto:battle ?battle .} + FILTER BOUND(?battle). +}",qald-1 +Which European countries are a constitutional monarchy?,"PREFIX onto: +PREFIX yago: +PREFIX rdf: +PREFIX rdfs: +PREFIX res: +SELECT DISTINCT ?uri ?string +WHERE +{ + ?uri rdf:type yago:EuropeanCountries . + ?uri onto:governmentType res:Constitutional_monarchy . + OPTIONAL {?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } +}",qald-1 +Who is the author of WikiLeaks?,"PREFIX res: +PREFIX rdfs: +PREFIX onto: +SELECT ?uri ?string +WHERE +{ + res:WikiLeaks onto:author ?uri . + OPTIONAL {?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } +}",qald-1 +Which state of the United States of America has the highest density?,"PREFIX yago: +PREFIX rdf: +PREFIX rdfs: +PREFIX dbpedia2: +SELECT ?uri ?string +WHERE +{ + ?uri rdf:type yago:StatesOfTheUnitedStates . + ?uri dbpedia2:densityrank ?density + OPTIONAL {?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } +} ORDER BY ASC(?density) LIMIT 1",qald-1 +What is the currency of the Czech Republic?,"PREFIX dbpedia2: +PREFIX res: +PREFIX rdfs: +SELECT ?uri ?string +WHERE +{ + res:Czech_Republic dbpedia2:currency ?string . + ?uri rdfs:label ?string . +}",qald-1 +Which countries in the European Union adopted the Euro?,"PREFIX dbpedia2: +PREFIX res: +PREFIX rdfs: +PREFIX yago: +PREFIX rdf: +SELECT DISTINCT ?uri ?string +WHERE +{ + ?uri rdf:type yago:EuropeanUnionMemberStates . + { ?uri dbpedia2:currency res:Euro . } + UNION + { ?uri dbpedia2:currencyCode ?code . FILTER regex(?code,'EUR') } + OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } +}",qald-1 +What is the area code of Berlin?,"PREFIX onto: +PREFIX res: +SELECT ?string +WHERE +{ + res:Berlin onto:areaCode ?string . +}",qald-1 +Which countries have more than two official languages?,"PREFIX onto: +PREFIX rdf: +PREFIX rdfs: +SELECT DISTINCT ?uri ?string +WHERE +{ + ?uri rdf:type onto:Country . + ?uri onto:officialLanguage ?language . + OPTIONAL {?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } +} HAVING (count(?language) > 2)",qald-1 +Who is the owner of Universal Studios?,"PREFIX onto: +PREFIX res: +PREFIX rdfs: +SELECT ?uri ?string +WHERE +{ + res:Universal_Studios onto:owner ?uri . + OPTIONAL {?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } +}",qald-1 +Through which countries does the Yenisei river flow?,"PREFIX res: +PREFIX dbpedia2: +SELECT DISTINCT ?uri ?string +WHERE +{ + res:Yenisei_River dbpedia2:country ?string . + OPTIONAL { ?uri dbpedia2:commonName ?name . } + FILTER regex(?name,?string) . + OPTIONAL { ?uri dbpedia2:dateEnd ?date . } + FILTER (!BOUND(?date)) +}",qald-1 +When did Germany join the EU?,"PREFIX res: +PREFIX dbpedia2: +SELECT ?date +WHERE +{ + res:Germany dbpedia2:accessioneudate ?date . +}",qald-1 +Which monarchs of the United Kingdom were married to a German?,"PREFIX yago: +PREFIX onto: +PREFIX rdf: +PREFIX rdfs: +PREFIX res: +SELECT DISTINCT ?uri ?string +WHERE +{ + ?uri rdf:type yago:MonarchsOfTheUnitedKingdom . + { ?uri onto:spouse ?spouse . } UNION { ?spouse onto:spouse ?uri . } + ?spouse onto:birthPlace res:Germany. + OPTIONAL {?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } +}",qald-1 +When was the Battle of Gettysburg?,"PREFIX res: +PREFIX onto: +SELECT ?string +WHERE +{ + res:Battle_of_Gettysburg onto:date ?string . +}",qald-1 +What is the highest mountain in Germany?,"PREFIX rdf: +PREFIX rdfs: +PREFIX onto: +SELECT ?uri ?string +WHERE +{ + ?uri rdf:type onto:Mountain . + ?uri onto:elevation ?elevation . + ?uri onto:locatedInArea ?area . + FILTER (regex(?area,'Germany')) . + OPTIONAL {?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } +} ORDER BY DESC(?elevation) LIMIT 1",qald-1 +Give me all soccer clubs in Spain.,"PREFIX rdf: +PREFIX rdfs: +PREFIX onto: +PREFIX prop: +SELECT DISTINCT ?uri ?string +WHERE +{ + ?uri rdf:type onto:SoccerClub . + { ?uri onto:ground ?ground . } + UNION + { ?uri prop:ground ?ground . } + FILTER (regex(?ground, 'Spain')) . + OPTIONAL {?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } +}",qald-1 +What are the official languages of the Philippines?,"PREFIX onto: +PREFIX res: +PREFIX rdfs: +SELECT DISTINCT ?uri ?string +WHERE +{ + res:Philippines onto:officialLanguage ?uri . + OPTIONAL {?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } +}",qald-1 +Who is the mayor of New York City?,"PREFIX res: +PREFIX onto: +PREFIX rdfs: +SELECT ?uri ?string +WHERE +{ + res:New_York_City onto:leaderName ?uri . + OPTIONAL {?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } +}",qald-1 +Who designed the Brooklyn Bridge?,"PREFIX res: +PREFIX dbpedia2: +SELECT DISTINCT ?uri ?string +WHERE +{ + res:Brooklyn_Bridge dbpedia2:designer ?string . + ?uri dbpedia2:name ?string . +}",qald-1 +Which telecommunications organizations are located in Belgium?,"PREFIX rdfs: +PREFIX rdf: +PREFIX dbpedia2: +PREFIX onto: +PREFIX res: +SELECT ?uri ?string +WHERE +{ + ?uri rdf:type onto:Organisation . + ?uri dbpedia2:industry ?indus . + { ?uri onto:location res:Belgium. } + UNION { ?uri dbpedia2:location res:Belgium. } + UNION { ?uri dbpedia2:locationCountry 'Belgium'@en . } + FILTER (regex(?indus, 'Telecommunication')) . + OPTIONAL {?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } +}",qald-1 +What is the profession of Frank Herbert?,"PREFIX dbpedia2: +PREFIX res: +SELECT DISTINCT ?string +WHERE +{ + res:Frank_Herbert dbpedia2:occupation ?string . +}",qald-1 +What is the highest place of Karakoram?,"PREFIX onto: +PREFIX rdfs: +PREFIX res: +SELECT ?uri ?string +WHERE +{ + res:Karakoram onto:highestPlace ?uri . + OPTIONAL {?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } +}",qald-1 +Give me the homepage of Forbes.,"PREFIX res: +PREFIX foaf: +SELECT DISTINCT ?uri +WHERE +{ + res:Forbes foaf:homepage ?uri . +}",qald-1 +Which companies are in the computer software industry?,"PREFIX rdfs: +PREFIX rdf: +PREFIX dbpedia2: +PREFIX onto: +PREFIX res: +SELECT DISTINCT ?uri ?string +WHERE +{ + ?uri rdf:type onto:Company . + ?uri dbpedia2:industry ?indus . + FILTER regex(?indus,'Computer') . + FILTER regex(?indus,'software','i') . + OPTIONAL {?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } +}",qald-1 +What did Bruce Carver die from?,"PREFIX res: +PREFIX onto: +SELECT ?uri ?string +WHERE +{ + res:Bruce_Carver onto:deathCause ?uri . + OPTIONAL {?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } +}",qald-1 +Give me all female Russian astronauts.,"PREFIX yago: +PREFIX rdf: +PREFIX rdfs: +SELECT DISTINCT ?uri ?string +WHERE { + ?uri rdf:type yago:RussianCosmonauts . + ?uri rdf:type yago:FemaleAstronauts . + OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } +}",qald-2 +Give me the birthdays of all actors of the television show Charmed.,"PREFIX dbo: +PREFIX res: +SELECT DISTINCT ?date +WHERE { + res:Charmed dbo:starring ?actor . + ?actor dbo:birthDate ?date . +}",qald-2 +Is the wife of president Obama called Michelle?,"PREFIX dbo: +PREFIX res: +PREFIX rdfs: +ASK +WHERE { + res:Barack_Obama dbo:spouse ?spouse . + ?spouse rdfs:label ?name . + FILTER(regex(?name,'Michelle')) +}",qald-2 +Which countries have places with more than two caves?,"PREFIX dbo: +PREFIX rdf: +PREFIX rdfs: +SELECT DISTINCT ?uri ?string +WHERE { + ?cave rdf:type dbo:Cave . + ?cave dbo:location ?uri . + ?uri rdf:type dbo:Country . + OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } +} +GROUP BY ?uri ?string +HAVING (COUNT(?cave) > 2)",qald-2 +Give me the capitals of all countries in Africa.,"PREFIX dbo: +PREFIX yago: +PREFIX rdf: +PREFIX rdfs: +SELECT DISTINCT ?uri ?string +WHERE { + ?states rdf:type yago:AfricanCountries . + ?states dbo:capital ?uri . + OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } +}",qald-2 +How many employees does IBM have?,"PREFIX dbo: +PREFIX res: +SELECT ?number +WHERE { + res:IBM dbo:numberOfEmployees ?number . +}",qald-2 +Which states border Illinois?,"PREFIX res: +PREFIX dbp: +PREFIX rdfs: +SELECT DISTINCT ?uri ?string +WHERE { + res:Illinois dbp:borderingstates ?uri . + OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') . } +}",qald-2 +Which European countries have a constitutional monarchy?,"PREFIX dbo: +PREFIX res: +PREFIX yago: +PREFIX rdf: +PREFIX rdfs: +SELECT DISTINCT ?uri ?string +WHERE { + ?uri rdf:type yago:EuropeanCountries . + ?uri dbo:governmentType res:Constitutional_monarchy . + OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } +}",qald-2 +Which awards did WikiLeaks win?,"PREFIX res: +PREFIX dbp: +PREFIX rdfs: +SELECT DISTINCT ?uri ?string +WHERE { + res:WikiLeaks dbp:awards ?uri . + OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } +}",qald-2 +Which state of the USA has the highest population density?,"PREFIX yago: +PREFIX dbp: +PREFIX rdf: +PREFIX rdfs: +SELECT DISTINCT ?uri ?string +WHERE { + ?uri rdf:type yago:StatesOfTheUnitedStates . + ?uri dbp:densityrank ?rank . + OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } +} +ORDER BY ASC(?rank) LIMIT 1",qald-2 +When did Finland join the EU?,"PREFIX res: +PREFIX dbp: +SELECT DISTINCT ?date +WHERE { + res:Finland dbp:accessioneudate ?date . +}",qald-2 +What is the highest mountain in Australia?,"PREFIX dbo: +PREFIX res: +PREFIX rdf: +PREFIX rdfs: +SELECT DISTINCT ?uri ?string +WHERE { + ?uri rdf:type dbo:Mountain . + ?uri dbo:locatedInArea res:Australia . + ?uri dbo:elevation ?elevation . + OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } +} +ORDER BY DESC(?elevation) LIMIT 1",qald-2 +Is Frank Herbert still alive?,"PREFIX dbo: +PREFIX res: +ASK +WHERE { + res:Frank_Herbert dbo:deathDate ?date . + FILTER (!BOUND(?date)) +}",qald-2 +Give me all companies in the advertising industry.,"PREFIX dbp: +PREFIX dbo: +PREFIX res: +PREFIX rdf: +PREFIX rdfs: +SELECT DISTINCT ?uri ?string +WHERE { + ?uri rdf:type dbo:Company . + ?uri dbp:industry ?industry . + FILTER regex(?industry,'advertising','i') . + OPTIONAL {?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } +}",qald-2 +Give me all presidents of the United States.,"PREFIX yago: +PREFIX dbo: +PREFIX dbp: +PREFIX res: +PREFIX rdf: +PREFIX rdfs: +SELECT DISTINCT ?uri ?string +WHERE { + ?uri rdf:type dbo:Person . + { ?uri rdf:type yago:PresidentsOfTheUnitedStates. } + UNION + { ?uri rdf:type dbo:President. + ?uri dbp:title res:President_of_the_United_States. } + ?uri rdfs:label ?string. + FILTER (lang(?string) = 'en' && !regex(?string,'Presidency','i') && !regex(?string,'and the')) . +}",qald-2 +Who was the wife of U.S. president Lincoln?,"PREFIX dbo: +PREFIX res: +PREFIX rdfs: +SELECT DISTINCT ?uri ?string +WHERE { + res:Abraham_Lincoln dbo:spouse ?uri. + OPTIONAL { ?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } +}",qald-2 +What is the official website of Tom Cruise?,"PREFIX foaf: +PREFIX res: +SELECT DISTINCT ?string +WHERE { + res:Tom_Cruise foaf:homepage ?string . +}",qald-2 +Give me all people with first name Jimmy.,"PREFIX foaf: +PREFIX rdf: +PREFIX rdfs: +SELECT DISTINCT ?uri ?string +WHERE { + ?uri rdf:type foaf:Person. + ?uri foaf:givenName 'Jimmy'@en . + OPTIONAL { ?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } +}",qald-2 +Who created Wikipedia?,"PREFIX dbo: +PREFIX res: +PREFIX rdfs: +SELECT DISTINCT ?uri ?string +WHERE { + res:Wikipedia dbo:author ?uri . + OPTIONAL { ?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } +}",qald-2 +Give me all video games published by Mean Hamster Software.,"PREFIX dbo: +PREFIX dbp: +PREFIX res: +PREFIX rdf: +PREFIX rdfs: +SELECT DISTINCT ?uri ?string +WHERE { + ?uri rdf:type dbo:VideoGame . + { ?uri dbp:publisher 'Mean Hamster Software'@en . } + UNION + { ?uri dbo:publisher res:Mean_Hamster_Software . } + OPTIONAL { ?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } +}",qald-2 +Which languages are spoken in Estonia?,"PREFIX dbo: +PREFIX res: +PREFIX rdfs: +SELECT DISTINCT ?uri ?string +WHERE { + { res:Estonia dbo:language ?uri . } + UNION + { ?uri dbo:spokenIn res:Estonia . } + OPTIONAL { ?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } +}",qald-2 +How many films did Hal Roach produce?,"PREFIX dbo: +PREFIX res: +SELECT COUNT(DISTINCT ?uri) +WHERE { + ?uri dbo:producer res:Hal_Roach . +}",qald-2 +Give me all books written by Danielle Steel.,"PREFIX dbo: +PREFIX res: +PREFIX rdf: +PREFIX rdfs: +SELECT DISTINCT ?uri ?string +WHERE { + ?uri rdf:type dbo:Book . + ?uri dbo:author res:Danielle_Steel . + OPTIONAL { ?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } +}",qald-2 +"Which airports are located in California, USA?","PREFIX dbo: +PREFIX res: +PREFIX rdf: +PREFIX rdfs: +SELECT DISTINCT ?uri ?string +WHERE { + ?uri rdf:type dbo:Airport . + ?uri dbo:location res:California . + OPTIONAL { ?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } +}",qald-2 +Give me all Canadian Grunge record labels.,"PREFIX dbo: +PREFIX res: +PREFIX rdf: +PREFIX rdfs: +SELECT DISTINCT ?uri ?string +WHERE { + ?uri rdf:type dbo:RecordLabel . + ?uri dbo:genre res:Grunge . + ?uri dbo:country res:Canada . + OPTIONAL { ?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } +}",qald-2 +Give me all movies with Tom Cruise.,"PREFIX dbo: +PREFIX res: +PREFIX rdf: +PREFIX rdfs: +SELECT DISTINCT ?uri ?string +WHERE { + ?uri rdf:type dbo:Film. + ?uri dbo:starring res:Tom_Cruise . + OPTIONAL {?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } +}",qald-2 +Give me all female German chancellors.,"PREFIX yago: +PREFIX dbp: +PREFIX res: +PREFIX rdf: +PREFIX rdfs: +SELECT DISTINCT ?uri ?string +WHERE { + ?uri rdf:type yago:FemaleHeadsOfGovernment. + ?uri dbp:office res:Chancellor_of_Germany . + OPTIONAL { ?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } +}",qald-2 +Was Natalie Portman born in the United States?,"PREFIX dbo: +PREFIX res: +ASK +WHERE { + res:Natalie_Portman dbo:birthPlace ?city . + ?city dbo:country res:United_States . +}",qald-2 +Which German cities have more than 250000 inhabitants?,"PREFIX dbo: +PREFIX res: +PREFIX rdf: +PREFIX rdfs: +SELECT DISTINCT ?uri ?string WHERE +{ + { ?uri rdf:type dbo:City . } UNION { ?uri rdf:type dbo:Town . } + ?uri dbo:country res:Germany . + ?uri dbo:populationTotal ?population . + FILTER ( ?population > 250000 ) + OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } +}",qald-2 +Who was the successor of John F. Kennedy?,"PREFIX dbo: +PREFIX res: +PREFIX rdfs: +SELECT DISTINCT ?uri ?string WHERE +{ + res:John_F._Kennedy dbo:successor ?uri . + OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } +}",qald-2 +Who is the mayor of Berlin?,"PREFIX dbo: +PREFIX res: +PREFIX rdfs: +SELECT DISTINCT ?uri ?string WHERE +{ + res:Berlin dbo:leader ?uri . + OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } +}",qald-2 +How many students does the Free University in Amsterdam have?,"PREFIX dbo: +PREFIX res: +SELECT ?num WHERE +{ + res:Vrije_Universiteit dbo:numberOfStudents ?num . +}",qald-2 +What is the second highest mountain on Earth?,"PREFIX dbo: +PREFIX rdf: +PREFIX rdfs: +SELECT DISTINCT ?uri ?string WHERE +{ + ?uri rdf:type dbo:Mountain . + ?uri dbo:elevation ?elevation . + OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } +} +ORDER BY DESC(?elevation) OFFSET 1 LIMIT 1",qald-2 +Give me all professional skateboarders from Sweden.,"PREFIX dbo: +PREFIX dbp: +PREFIX res: +PREFIX rdfs: +SELECT DISTINCT ?uri ?string WHERE +{ + ?uri dbo:occupation res:Skateboarding . + { ?uri dbo:birthPlace res:Sweden . } + UNION + { ?uri dbo:birthPlace ?place . + ?place dbo:country res:Sweden . } + OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } +}",qald-2 +When was Alberta admitted as province?,"PREFIX dbp: +PREFIX res: +SELECT ?date WHERE +{ + res:Alberta dbp:admittancedate ?date . +}",qald-2 +To which countries does the Himalayan mountain system extend?,"PREFIX dbo: +PREFIX res: +PREFIX rdfs: +SELECT DISTINCT ?uri ?string WHERE +{ + res:Himalayas dbo:country ?uri . + OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } +}",qald-2 +Give me a list of all trumpet players that were bandleaders.,"PREFIX dbo: +PREFIX res: +PREFIX rdfs: +SELECT DISTINCT ?uri ?string WHERE +{ + ?uri dbo:occupation res:Bandleader . + ?uri dbo:instrument res:Trumpet . + OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } +}",qald-2 +What is the total amount of men and women serving in the FDNY?,"PREFIX dbp: +PREFIX res: +SELECT ?num WHERE +{ + res:New_York_City_Fire_Department dbp:strength ?num . +}",qald-2 +Who is the Formula 1 race driver with the most races?,"PREFIX dbo: +PREFIX res: +PREFIX rdf: +PREFIX rdfs: +SELECT DISTINCT ?uri ?string WHERE { + ?uri rdf:type dbo:FormulaOneRacer . + ?uri dbo:races ?x . + OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } +} +ORDER BY DESC(?x) OFFSET 0 LIMIT 1",qald-2 +Give me all world heritage sites designated within the past five years.,"PREFIX dbo: +PREFIX dbp: +PREFIX rdf: +PREFIX rdfs: +SELECT DISTINCT ?uri ?string WHERE { + ?uri rdf:type dbo:WorldHeritageSite . + ?uri dbp:year ?x . + FILTER ( ?x >= ""2007""^^xsd:integer) + OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } +}",qald-2 +Who is the youngest player in the Premier League?,"PREFIX dbo: +PREFIX res: +PREFIX rdfs: +SELECT DISTINCT ?uri ?string WHERE { + ?uri dbo:team ?x . + ?x dbo:league res:Premier_League . + ?uri dbo:birthDate ?y . + OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } +} +ORDER BY DESC(?y) OFFSET 0 LIMIT 1",qald-2 +Give me all members of Prodigy.,"PREFIX dbo: +PREFIX res: +PREFIX rdfs: +SELECT DISTINCT ?uri ?string WHERE +{ + res:The_Prodigy dbo:bandMember ?uri . + OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } +}",qald-2 +What is the longest river?,"PREFIX dbo: +PREFIX dbp: +PREFIX rdf: +PREFIX rdfs: +SELECT DISTINCT ?uri ?string WHERE +{ + ?uri rdf:type dbo:River . + ?uri dbp:length ?x . + OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } +} +ORDER BY DESC(?x) OFFSET 0 LIMIT 1",qald-2 +Does the new Battlestar Galactica series have more episodes than the old one?,"PREFIX dbo: +PREFIX res: +ASK WHERE { + dbo:numberOfEpisodes ?x . + dbo:numberOfEpisodes ?y . + FILTER (?y > ?x) +}",qald-2 +Give me all cars that are produced in Germany.,"PREFIX dbo: +PREFIX dbp: +PREFIX res: +PREFIX yago: +PREFIX rdf: +PREFIX rdfs: +SELECT DISTINCT ?uri ?string WHERE +{ + ?uri rdf:type dbo:Automobile . + { ?uri dbp:production res:Germany . } UNION { ?uri dbp:assembly res:Germany . } + UNION { ?uri dbp:manufacturer ?x . + { ?x dbo:locationCountry res:Germany . } UNION { ?x rdf:type yago:AutomotiveCompaniesOfGermany . } } + OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } +}",qald-2 +Give me all people that were born in Vienna and died in Berlin.,"PREFIX dbo: +PREFIX res: +PREFIX rdfs: +SELECT DISTINCT ?uri ?string WHERE +{ + ?uri dbo:birthPlace res:Vienna . + ?uri dbo:deathPlace res:Berlin . + OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } +}",qald-2 +How tall is Michael Jordan?,"PREFIX dbo: +PREFIX res: +SELECT ?num WHERE +{ + res:Michael_Jordan dbo:height ?num . +}",qald-2 +What is the capital of Canada?,"PREFIX dbo: +PREFIX res: +PREFIX rdfs: +SELECT DISTINCT ?uri ?string WHERE +{ + res:Canada dbo:capital ?uri . + OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } +}",qald-2 +Who is the governor of Texas?,"PREFIX res: +PREFIX dbp: +PREFIX foaf: +SELECT DISTINCT ?uri ?string WHERE +{ + res:Texas dbp:governor ?string . + ?uri foaf:name ?string. +}",qald-2 +"Do Harry and William, Princes of Wales, have the same mother?","PREFIX dbp: +ASK WHERE +{ + dbp:mother ?x . + dbp:mother ?y . + FILTER (?x = ?y) +}",qald-2 +Who was the father of Queen Elizabeth II?,"PREFIX res: +PREFIX dbp: +PREFIX rdfs: +SELECT DISTINCT ?uri ?string WHERE { + res:Elizabeth_II dbp:father ?uri . + OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } +}",qald-2 +Which U.S. state has been admitted latest?,"PREFIX res: +PREFIX dbp: +PREFIX yago: +PREFIX rdf: +PREFIX rdfs: +SELECT DISTINCT ?uri ?string ?x WHERE +{ + ?uri rdf:type yago:StatesOfTheUnitedStates . + ?uri dbp:admittancedate ?x . + OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } +} +ORDER BY DESC(?x) OFFSET 0 LIMIT 1",qald-2 +How many official languages are spoken on the Seychelles?,"PREFIX dbo: +PREFIX res: +SELECT COUNT(DISTINCT ?x) WHERE +{ + res:Seychelles dbo:officialLanguage ?x . +}",qald-2 +Sean Parnell is the governor of which U.S. state?,"PREFIX yago: +PREFIX dbp: +PREFIX res: +PREFIX rdf: +PREFIX rdfs: +SELECT DISTINCT ?uri ?string WHERE +{ + ?uri rdf:type yago:StatesOfTheUnitedStates . + ?uri dbp:governor res:Sean_Parnell . + OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } +}",qald-2 +Give me all movies directed by Francis Ford Coppola.,"PREFIX dbo: +PREFIX res: +PREFIX rdf: +PREFIX rdfs: +SELECT DISTINCT ?uri ?string WHERE +{ + ?uri rdf:type dbo:Film . + ?uri dbo:director res:Francis_Ford_Coppola . + OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } +}",qald-2 +Give me all actors starring in movies directed by and starring William Shatner.,"PREFIX dbo: +PREFIX dbp: +PREFIX res: +PREFIX rdfs: +SELECT DISTINCT ?uri ?string WHERE +{ + ?x dbo:director res:William_Shatner . + ?x dbo:starring res:William_Shatner . + { ?x dbo:starring ?uri . } UNION { ?x dbp:starring ?uri . } + OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } +}",qald-2 +What is the birth name of Angela Merkel?,"PREFIX dbp: +PREFIX res: +SELECT DISTINCT ?string WHERE +{ + res:Angela_Merkel dbp:birthName ?string . +}",qald-2 +Give me all current Methodist national leaders.,"PREFIX dbp: +PREFIX res: +PREFIX yago: +PREFIX rdf: +PREFIX rdfs: +SELECT DISTINCT ?uri ?string WHERE +{ + ?uri rdf:type yago:CurrentNationalLeaders . + ?uri dbp:religion res:Methodism . + OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } +}",qald-2 +How often did Nicole Kidman marry?,"PREFIX dbo: +PREFIX res: +SELECT COUNT(DISTINCT ?x) WHERE +{ + res:Nicole_Kidman dbo:spouse ?x . +}",qald-2 +Give me all Australian nonprofit organizations.,"PREFIX dbo: +PREFIX res: +PREFIX rdfs: +SELECT DISTINCT ?uri ?string WHERE +{ + ?uri dbo:type res:Nonprofit_organization . + { ?uri dbo:locationCountry res:Australia . } + UNION + { ?uri dbo:location ?x . + ?x dbo:country res:Australia . } + OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } +}",qald-2 +In which military conflicts did Lawrence of Arabia participate?,"PREFIX dbo: +PREFIX res: +PREFIX rdfs: +SELECT DISTINCT ?uri ?string WHERE +{ + res:T._E._Lawrence dbo:battle ?uri . + OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } +}",qald-2 +Who developed Skype?,"PREFIX dbo: +PREFIX res: +PREFIX rdfs: +SELECT DISTINCT ?uri ?string WHERE +{ + res:Skype dbo:developer ?uri . + OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } +}",qald-2 +How many inhabitants does Maribor have?,"PREFIX dbo: +PREFIX res: +SELECT ?num WHERE +{ + res:Maribor dbo:populationTotal ?num . +}",qald-2 +Give me all companies in Munich.,"PREFIX dbo: +PREFIX res: +PREFIX rdf: +PREFIX rdfs: +SELECT DISTINCT ?uri ?string WHERE +{ + ?uri rdf:type dbo:Company . + { ?uri dbo:location res:Munich . } + UNION + { ?uri dbo:headquarter res:Munich . } + UNION + { ?uri dbo:locationCity res:Munich . } + OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } +}",qald-2 +List all boardgames by GMT.,"PREFIX dbo: +PREFIX res: +PREFIX rdfs: +SELECT ?uri ?string WHERE +{ + ?uri dbo:publisher res:GMT_Games . + OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } +}",qald-2 +Who founded Intel?,"PREFIX dbo: +PREFIX res: +PREFIX rdfs: +SELECT DISTINCT ?uri ?string WHERE +{ + res:Intel dbo:foundedBy ?uri . + OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } +}",qald-2 +Who is the husband of Amanda Palmer?,"PREFIX dbp: +PREFIX res: +PREFIX rdfs: +SELECT DISTINCT ?uri ?string WHERE +{ + res:Amanda_Palmer dbp:spouse ?uri . + OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } +}",qald-2 +Give me all breeds of the German Shepherd dog.,"PREFIX dbp: +PREFIX res: +PREFIX rdfs: +SELECT ?uri WHERE +{ + ?uri dbp:breed res:German_Shepherd_Dog . + OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } +}",qald-2 +Which cities does the Weser flow through?,"PREFIX dbo: +PREFIX res: +PREFIX rdfs: +SELECT DISTINCT ?uri ?string WHERE +{ + res:Weser dbo:city ?uri . + OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } +}",qald-2 +Which countries are connected by the Rhine?,"PREFIX dbo: +PREFIX res: +PREFIX rdfs: +SELECT DISTINCT ?uri ?string WHERE +{ + res:Rhine dbo:country ?uri . + OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } +}",qald-2 +Which professional surfers were born on the Philippines?,"PREFIX dbo: +PREFIX res: +PREFIX rdfs: +SELECT DISTINCT ?uri ?string WHERE +{ + ?uri dbo:occupation res:Surfing . + ?uri dbo:birthPlace res:Philippines . + OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } +}",qald-2 +In which UK city are the headquarters of the MI6?,"PREFIX res: +PREFIX dbo: +PREFIX rdfs: +SELECT DISTINCT ?uri ?string WHERE +{ + res:Secret_Intelligence_Service dbo:headquarter ?uri . + ?uri dbo:country res:United_Kingdom . + OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } +}",qald-2 +Which other weapons did the designer of the Uzi develop?,"PREFIX dbo: +PREFIX dbp: +PREFIX res: +PREFIX rdf: +PREFIX rdfs: +SELECT DISTINCT ?uri ?string WHERE { + ?uri rdf:type dbo:Weapon . + ?uri dbp:designer ?x . + res:Uzi dbp:designer ?x . + FILTER (?uri != res:Uzi) + OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } +}",qald-2 +Was the Cuban Missile Crisis earlier than the Bay of Pigs Invasion?,"PREFIX dbo: +PREFIX res: +ASK WHERE +{ + res:Cuban_Missile_Crisis dbo:date ?x . + res:Bay_of_Pigs_Invasion dbo:date ?y . + FILTER (?x < ?y) +}",qald-2 +Give me all Frisian islands that belong to the Netherlands.,"PREFIX dbo: +PREFIX res: +PREFIX yago: +PREFIX rdf: +PREFIX rdfs: +SELECT DISTINCT ?uri ?string WHERE +{ + ?uri rdf:type yago:FrisianIslands . + ?uri dbo:country res:Netherlands . + OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } +}",qald-2 +What is the ruling party in Lisbon?,"PREFIX dbp: +PREFIX res: +PREFIX rdfs: +SELECT DISTINCT ?uri ?string WHERE +{ + res:Lisbon dbp:leaderParty ?uri . + OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } +}",qald-2 +What are the nicknames of San Francisco?,"PREFIX dbp: +PREFIX res: +SELECT DISTINCT ?string WHERE +{ + res:San_Francisco dbp:nickname ?string . +}",qald-2 +Which Greek goddesses dwelt on Mount Olympus?,"PREFIX dbp: +PREFIX res: +PREFIX yago: +PREFIX rdf: +PREFIX rdfs: +SELECT DISTINCT ?uri ?string WHERE +{ + ?uri rdf:type yago:GreekGoddesses . + ?uri dbp:abode res:Mount_Olympus . + OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } +}",qald-2 +When were the Hells Angels founded?,"PREFIX dbp: +PREFIX res: +SELECT ?date WHERE +{ + res:Hells_Angels dbp:founded ?date . +}",qald-2 +Give me the Apollo 14 astronauts.,"PREFIX dbo: +PREFIX res: +PREFIX rdfs: +SELECT DISTINCT ?uri ?string WHERE +{ + ?uri dbo:mission res:Apollo_14 . + OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } +}",qald-2 +What is the time zone of Salt Lake City?,"PREFIX res: +PREFIX dbp: +PREFIX rdfs: +SELECT DISTINCT ?uri ?string WHERE +{ + res:Salt_Lake_City dbp:timezone ?uri . + OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } +}",qald-2 +Which U.S. states are in the same timezone as Utah?,"PREFIX res: +PREFIX dbp: +PREFIX yago: +PREFIX rdf: +PREFIX rdfs: +SELECT DISTINCT ?uri ?string WHERE +{ + res:Utah dbp:timezone ?x . + ?uri rdf:type yago:StatesOfTheUnitedStates . + ?uri dbp:timezone ?x . + FILTER (?uri != res:Utah) + OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } +}",qald-2 +Give me a list of all lakes in Denmark.,"PREFIX dbo: +PREFIX res: +PREFIX yago: +PREFIX rdf: +PREFIX rdfs: +SELECT DISTINCT ?uri ?string WHERE +{ + { ?uri rdf:type dbo:Lake . + ?uri dbo:country res:Denmark . } + UNION + { ?uri rdf:type yago:LakesOfDenmark . } + OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } +}",qald-2 +How many space missions have there been?,"PREFIX res: +PREFIX dbo: +PREFIX rdf: +SELECT COUNT(DISTINCT ?uri) WHERE +{ + ?uri rdf:type dbo:SpaceMission . +}",qald-2 +Did Socrates influence Aristotle?,"PREFIX dbo: +PREFIX res: +PREFIX rdfs: +ASK WHERE +{ + res:Aristotle dbo:influencedBy res:Socrates . + OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } +}",qald-2 +Give me all Argentine films.,"PREFIX dbo: +PREFIX dbp: +PREFIX res: +PREFIX yago: +PREFIX rdf: +PREFIX rdfs: +SELECT DISTINCT ?uri ?string WHERE +{ + { ?uri rdf:type yago:ArgentineFilms . } + UNION + { ?uri rdf:type dbo:Film . + { ?uri dbo:country res:Argentina . } UNION { ?uri dbp:country 'Argentina'@en . } } + OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } +}",qald-2 +Give me all launch pads operated by NASA.,"PREFIX dbo: +PREFIX res: +PREFIX rdf: +PREFIX rdfs: +SELECT DISTINCT ?uri ?string WHERE +{ + ?uri rdf:type dbo:LaunchPad . + ?uri dbo:operator res:NASA . + OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } +}",qald-2 +Which instruments did John Lennon play?,"PREFIX dbo: +PREFIX res: +PREFIX rdfs: +SELECT DISTINCT ?uri ?string WHERE +{ + res:John_Lennon dbo:instrument ?uri . + OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } +}",qald-2 +Which ships were called after Benjamin Franklin?,"PREFIX res: +PREFIX dbp: +PREFIX rdfs: +SELECT DISTINCT ?uri ?string WHERE +{ + ?uri dbp:shipNamesake res:Benjamin_Franklin . + OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } +}",qald-2 +Who are the parents of the wife of Juan Carlos I?,"PREFIX dbo: +PREFIX res: +PREFIX rdfs: +SELECT DISTINCT ?uri ?string WHERE +{ + res:Juan_Carlos_I_of_Spain dbo:spouse ?x . + ?x dbo:parent ?uri . + OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } +}",qald-2 +How many employees does Google have?,"PREFIX res: +PREFIX dbo: +SELECT ?num WHERE +{ + res:Google dbo:numberOfEmployees ?num . +}",qald-2 +Did Tesla win a nobel prize in physics?,"PREFIX dbo: +PREFIX res: +ASK WHERE +{ + res:Nikola_Tesla dbo:award res:Nobel_Prize_in_Physics . +}",qald-2 +Is Michelle Obama the wife of Barack Obama?,"PREFIX dbo: +PREFIX res: +ASK WHERE +{ + res:Barack_Obama dbo:spouse res:Michelle_Obama . +}",qald-2 +When was the Statue of Liberty built?,"PREFIX dbp: +PREFIX res: +SELECT ?num WHERE +{ + res:Statue_of_Liberty dbp:built ?num . +}",qald-2 +In which U.S. state is Area 51 located?,"PREFIX dbo: +PREFIX res: +PREFIX rdfs: +SELECT DISTINCT ?uri ?string WHERE +{ + res:Area_51 dbo:location ?uri . + ?uri dbo:country res:United_States . + OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } +}",qald-2 +How many children did Benjamin Franklin have?,"PREFIX res: +PREFIX dbo: +SELECT COUNT(DISTINCT ?uri) { + res:Benjamin_Franklin dbo:child ?uri . +}",qald-2 +When did Michael Jackson die?,"PREFIX dbo: +PREFIX res: +SELECT DISTINCT ?date WHERE { + res:Michael_Jackson dbo:deathDate ?date . +}",qald-2 +Which daughters of British earls died in the same place they were born in?,"PREFIX dbo: +PREFIX yago: +PREFIX rdf: +PREFIX rdfs: +SELECT DISTINCT ?uri ?string WHERE +{ + ?uri rdf:type yago:DaughtersOfBritishEarls . + ?uri dbo:birthPlace ?x . + ?uri dbo:deathPlace ?y . + FILTER (?x != ?y) . + OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } +}",qald-2 +List the children of Margaret Thatcher.,"PREFIX res: +PREFIX dbo: +PREFIX rdfs: +SELECT DISTINCT ?uri ?string WHERE +{ + res:Margaret_Thatcher dbo:child ?uri . + OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } +}",qald-2 +Who was called Scarface?,"PREFIX dbp: +PREFIX res: +PREFIX rdfs: +SELECT DISTINCT ?uri ?string WHERE { + ?uri dbp:nickname res:Scarface . + OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } +}",qald-2 +Was Margaret Thatcher a chemist?,"PREFIX res: +PREFIX dbo: +ASK WHERE { + res:Margaret_Thatcher dbo:profession res:Chemist . +}",qald-2 +Was Dutch Schultz a jew?,"PREFIX dbp: +PREFIX res: +ASK WHERE { + res:Dutch_Schultz dbp:ethnicity 'Jewish'@en . +}",qald-2 +Give me all books by William Goldman with more than 300 pages.,"PREFIX dbo: +PREFIX res: +PREFIX rdf: +PREFIX rdfs: +SELECT DISTINCT ?uri ?string WHERE +{ + ?uri rdf:type dbo:Book . + ?uri dbo:author res:William_Goldman . + ?uri dbo:numberOfPages ?x . + FILTER (?x > 300) + OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } +}",qald-2 +Which books by Kerouac were published by Viking Press?,"PREFIX dbo: +PREFIX res: +PREFIX rdf: +PREFIX rdfs: +SELECT DISTINCT ?uri ?string WHERE { + ?uri rdf:type dbo:Book . + ?uri dbo:publisher res:Viking_Press . + ?uri dbo:author res:Jack_Kerouac . + OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } +}",qald-2 +Give me a list of all American inventions.,"PREFIX yago: +PREFIX rdf: +PREFIX rdfs: +SELECT DISTINCT ?uri ?string WHERE +{ + ?uri rdf:type yago:AmericanInventions . + OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } +}",qald-2 +How high is the Mount Everest?,"PREFIX dbo: +PREFIX res: +SELECT ?num WHERE +{ + res:Mount_Everest dbo:elevation ?num. +}",qald-2 +Who created the comic Captain America?,"PREFIX dbo: +PREFIX res: +PREFIX rdfs: +SELECT ?uri ?string WHERE { + res:Captain_America dbo:creator ?uri . + OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } +}",qald-2 +How many people live in the capital of Australia?,"PREFIX dbo: +PREFIX res: +SELECT ?num WHERE { + res:Australia dbo:capital ?x . + ?x dbo:populationTotal ?num . +}",qald-2 +What is the largest city in Australia?,"PREFIX dbo: +PREFIX res: +PREFIX rdfs: +SELECT DISTINCT ?uri ?string WHERE { + res:Australia dbo:largestCity ?uri . + OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } +}",qald-2 +Who composed the music for Harold and Maude?,"PREFIX res: +PREFIX dbo: +PREFIX rdfs: +SELECT DISTINCT ?uri ?string WHERE { + res:Harold_and_Maude dbo:musicComposer ?uri . + OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } +}",qald-2 +Which films starring Clint Eastwood did he direct himself?,"PREFIX dbo: +PREFIX res: +PREFIX rdfs: +SELECT DISTINCT ?uri ?string WHERE +{ + ?uri dbo:director res:Clint_Eastwood . + ?uri dbo:starring res:Clint_Eastwood . + OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } +}",qald-2 +In which city was the former Dutch queen Juliana buried?,"PREFIX dbo: +PREFIX res: +PREFIX rdf: +PREFIX rdfs: +SELECT DISTINCT ?uri ?string WHERE +{ + res:Juliana_of_the_Netherlands dbo:restingPlace ?uri. + ?uri rdf:type dbo:Settlement . + OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } +}",qald-2 +Where is the residence of the prime minister of Spain?,"PREFIX dbp: +PREFIX res: +PREFIX rdfs: +SELECT DISTINCT ?uri ?string WHERE +{ + res:Prime_Minister_of_Spain dbp:residence ?uri . + OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } +}",qald-2 +Which U.S. State has the abbreviation MN?,"PREFIX dbp: +PREFIX res: +PREFIX yago: +PREFIX rdf: +PREFIX rdfs: +SELECT ?uri ?string WHERE +{ + ?uri rdf:type yago:StatesOfTheUnitedStates . + ?uri dbp:postalabbreviation 'MN'@en . + OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } +}",qald-2 +Show me all songs from Bruce Springsteen released between 1980 and 1990.,"PREFIX dbo: +PREFIX res: +PREFIX yago: +PREFIX rdf: +PREFIX rdfs: +SELECT DISTINCT ?uri ?string WHERE +{ + ?uri rdf:type dbo:Song . + ?uri dbo:artist res:Bruce_Springsteen . + ?uri dbo:releaseDate ?date . + FILTER (?date >= '1980-01-01'^^xsd:date && ?date <= '1990-12-31'^^xsd:date) + OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } +}",qald-2 +Which movies did Sam Raimi direct after Army of Darkness?,"PREFIX dbo: +PREFIX dbp: +PREFIX res: +PREFIX rdf: +PREFIX rdfs: +SELECT DISTINCT ?uri ?string WHERE +{ + ?uri rdf:type dbo:Film . + ?uri dbo:director res:Sam_Raimi . + { ?uri dbo:releaseDate ?x . } UNION { ?uri dbp:released ?x . } + res:Army_of_Darkness dbo:releaseDate ?y . + FILTER (?x > ?y) + OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } +}",qald-2 +What is the founding year of the brewery that produces Pilsner Urquell?,"PREFIX dbp: +PREFIX res: +PREFIX rdfs: +SELECT ?num WHERE +{ + res:Pilsner_Urquell dbp:brewery ?uri . + ?uri dbp:foundation ?num . + OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } +}",qald-2 +Who wrote the lyrics for the Polish national anthem?,"PREFIX dbo: +PREFIX dbp: +PREFIX res: +PREFIX rdfs: +SELECT DISTINCT ?uri ?string WHERE +{ + res:Poland dbo:anthem ?x . + ?x dbp:author ?uri . + OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } +}",qald-2 +Give me all B-sides of the Ramones.,"PREFIX dbo: +PREFIX dbp: +PREFIX res: +SELECT DISTINCT ?string WHERE +{ + ?x dbo:musicalArtist res:Ramones . + ?x dbp:bSide ?string . +}",qald-2 +Who painted The Storm on the Sea of Galilee?,"PREFIX dbp: +PREFIX res: +PREFIX rdfs: +SELECT DISTINCT ?uri ?string WHERE +{ + res:The_Storm_on_the_Sea_of_Galilee dbp:artist ?uri . + OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } +}",qald-2 +Which country does the creator of Miffy come from?,"PREFIX dbo: +PREFIX res: +PREFIX rdfs: +SELECT DISTINCT ?uri ?string WHERE +{ + res:Miffy dbo:creator ?x . + ?x dbo:nationality ?uri . + OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } +}",qald-2 +For which label did Elvis record his first album?,"PREFIX dbo: +PREFIX res: +PREFIX rdf: +PREFIX rdfs: +SELECT DISTINCT ?uri ?string WHERE +{ + ?x rdf:type dbo:Album . + ?x dbo:artist res:Elvis_Presley . + ?x dbo:releaseDate ?y . + ?x dbo:recordLabel ?uri . + OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } +} +ORDER BY ASC(?y) LIMIT 1",qald-2 +Who produces Orangina?,"PREFIX dbo: +PREFIX res: +PREFIX rdfs: +SELECT DISTINCT ?uri ?string WHERE +{ + ?uri dbo:product res:Orangina . + OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } +}",qald-2 +Who is the daughter of Ingrid Bergman married to?,"PREFIX dbo: +PREFIX res: +PREFIX rdfs: +SELECT DISTINCT ?uri +WHERE { + res:Ingrid_Bergman dbo:child ?child . + ?child dbo:spouse ?uri . +}",qald-3 +In which city did John F. Kennedy die?,"PREFIX dbo: +PREFIX res: +PREFIX rdf: +SELECT DISTINCT ?uri +WHERE { + res:John_F._Kennedy dbo:deathPlace ?uri . + ?uri rdf:type dbo:City . +}",qald-3 +Which classis do tree frogs belong to?,"PREFIX dbp: +PREFIX res: +SELECT DISTINCT ?uri +WHERE { + res:Hylidae dbp:classis ?uri . +}",qald-3 +When did Latvia join the EU?,"PREFIX res: +PREFIX dbp: +SELECT DISTINCT ?date +WHERE { + res:Latvia dbp:accessioneudate ?date . +}",qald-3 +Give me all actors starring in Last Action Hero.,"PREFIX dbp: +PREFIX res: +SELECT DISTINCT ?uri +WHERE { + res:Last_Action_Hero dbp:starring ?uri . +}",qald-3 +Who wrote the book Les Piliers de la terre?,"PREFIX dbo: +PREFIX res: +SELECT DISTINCT ?uri +WHERE { + res:The_Pillars_of_the_Earth dbo:author ?uri . +}",qald-3 +Who is the governor of Wyoming?,"PREFIX res: +PREFIX dbp: +SELECT DISTINCT ?uri +WHERE { + res:Wyoming dbp:governor ?uri . +}",qald-3 +Do Prince Harry and Prince William have the same mother?,"PREFIX dbp: +ASK +WHERE { + dbp:mother ?x . + dbp:mother ?y . + FILTER (?x = ?y) +}",qald-3 +Who developed Minecraft?,"PREFIX dbo: +PREFIX res: +SELECT DISTINCT ?uri +WHERE { + res:Minecraft dbo:developer ?uri . +}",qald-3 +List all games by GMT.,"PREFIX dbo: +PREFIX res: +SELECT DISTINCT ?uri +WHERE { + ?uri dbo:publisher res:GMT_Games . +}",qald-3 +In which U.S. state is Fort Knox located?,"PREFIX dbo: +PREFIX dbp: +PREFIX res: +SELECT DISTINCT ?uri +WHERE { + res:Fort_Knox dbp:location ?uri . + ?uri dbo:country res:United_States . +}",qald-3 +Which U.S. state has the abbreviation MN?,"PREFIX dbp: +PREFIX yago: +PREFIX rdf: +SELECT DISTINCT ?uri +WHERE { + ?uri rdf:type yago:StatesOfTheUnitedStates . + ?uri dbp:postalabbreviation 'MN'@en . +}",qald-3 +Which movies did Kurosawa direct after Rashomon?,"PREFIX dbo: +PREFIX dbp: +PREFIX res: +PREFIX rdf: +SELECT DISTINCT ?uri +WHERE { + ?uri rdf:type dbo:Film . + ?uri dbo:director res:Akira_Kurosawa . + { ?uri dbo:releaseDate ?x . } UNION { ?uri dbp:released ?x . } + dbo:releaseDate ?y . + FILTEr (?y > ?x) +}",qald-3 +Which diseases is Cetuximab used for?,"PREFIX rdfs: +SELECT DISTINCT ?v +WHERE { + ?x rdfs:label ?l. + FILTER(REGEX(?l,'Cetuximab','i')). + ?x ?v. + ?v a . +}",qald-4 +What are the diseases caused by Valdecoxib?,"PREFIX rdfs: +SELECT DISTINCT ?x +WHERE { + ?v1 rdfs:label ?l. + FILTER(REGEX(?l,'Valdecoxib','i')). + ?v2 ?v1. + ?v2 ?x. + ?x a ?c. + ?c . +}",qald-4 +What is the side effects of drugs used for Tuberculosis?,"PREFIX rdfs: +SELECT DISTINCT ?x +WHERE { + ?v2. + ?v2 a . + ?v3 ?v2. + ?v3 ?x. +}",qald-4 +What are the side effects of Valdecoxib?,"PREFIX rdfs: +SELECT DISTINCT ?x +WHERE { + ?v1 rdfs:label ?l. + FILTER(REGEX(?l,'Valdecoxib','i')). + ?v2 ?v1. + ?v2 ?x. +}",qald-4 +Which genes are associated with breast cancer?,"SELECT DISTINCT ?x +WHERE { + ?x. +}",qald-4 +Which drugs have fever as a side effect?,"SELECT DISTINCT ?x +WHERE { + ?x a . + ?x . +}",qald-4 +Give me diseases treated by tetracycline,"SELECT DISTINCT ?x +WHERE { + ?x a . + ?x . +}",qald-4 +Which drugs interact with allopurinol?,"SELECT DISTINCT ?x +WHERE { + ?x . +}",qald-4 +What are side effects of drugs used for asthma?,"SELECT DISTINCT ?v3 ?v1 +WHERE { + ?v2. + ?v0 ?v1. + ?v2 ?v0. +}",qald-4 +Which foods does allopurinol interact with?,"SELECT DISTINCT ?l0 +WHERE { + ?l0. +}",qald-4 +What are enzymes of drugs used for anemia?,"SELECT DISTINCT ?v1 +WHERE { + ?v0 ?v1. + ?x ?v0. + ?x rdfs:label ?l. + FILTER(REGEX(?l,'Anemia','i')). +}",qald-4 +What is the target drug of Vidarabine?,"SELECT DISTINCT ?v0 +WHERE { + ?v0. +}",qald-4 +Which drugs target Multidrug resistance protein 1?,"SELECT DISTINCT ?v1 +WHERE { + ?v1 a . + ?v1 . +}",qald-4 +Give me drug references of drugs targeting Prothrombin.,"SELECT DISTINCT ?v0 +WHERE { + ?v0. + ?v1 . +}",qald-4 +Which genes are associated with diseases treated with Cetuximab?,"SELECT DISTINCT ?v1 +WHERE { + ?v0 a . + ?v0 ?v1. + ?v0 . +}",qald-4 +Which drugs have hypertension and vomiting as side-effects?,"SELECT DISTINCT ?s +WHERE { + ?s . + ?s . +}",qald-4 +Which are possible drugs against rickets?,"SELECT DISTINCT ?x +WHERE { + ?x. +}",qald-4 +What are the common side effects of Doxil and Bextra?,"SELECT DISTINCT ?y +WHERE { + ?y. + ?y. +}",qald-4 +Which are the drugs whose side effects are associated with the gene TRPM6?,"SELECT DISTINCT ?x +WHERE { + ?x . + ?x owl:sameAs ?k. + ?l ?k . +}",qald-4 +Which are the side effects of Penicillin G?,"SELECT DISTINCT ?s +WHERE { + ?x owl:sameAs . + ?x ?s. +}",qald-4 +Which diseases are associated with the gene FOXP2?,"SELECT DISTINCT ?x +WHERE { + ?x . +}",qald-4 +Which are possible drugs for diseases associated with the gene ALD?,"SELECT DISTINCT ?x +WHERE { + ?s . + ?s ?x. +}",qald-4 +Which are targets of Hydroxocobalamin?,"SELECT DISTINCT ?x +WHERE { + ?x. +}",qald-4 +Which are targets for possible drugs for diseases associated with the gene ALD?,"SELECT DISTINCT ?z +WHERE { + ?s . + ?s ?x. + ?x ?z. +}",qald-4 +Which genes are associated with diseases whose possible drugs target Cubilin?,"SELECT DISTINCT ?z +WHERE { + ?s ?z. + ?s ?x. + ?x . +}",qald-4 +Give me the currencies of all G8 countries.,"PREFIX dbo: +PREFIX rdf: +SELECT DISTINCT ?uri +WHERE { + ?x text:""member of"" text:""G8"" . + ?x dbo:currency ?uri . +}",qald-4 +In which city was the assassin of Martin Luther King born?,"PREFIX dbo: +PREFIX res: +PREFIX rdf: +SELECT DISTINCT ?uri +WHERE { + res:Martin_Luther_King,_Jr. text:""assassin"" ?x . + ?x dbo:birthPlace ?uri . + ?uri rdf:type dbo:Settlement . +}",qald-4 +Which anti-apartheid activist graduated from the University of South Africa?,"PREFIX dbo: +PREFIX res: +PREFIX rdf: +SELECT DISTINCT ?uri +WHERE { + ?uri rdf:type text:""anti-apartheid activist"" . + ?uri dbo:almaMater res:University_of_South_Africa . +}",qald-4 +How many Golden Globe awards did the husband of Katie Holmes win?,"PREFIX dbo: +PREFIX dbp: +PREFIX res: +SELECT COUNT(DISTINCT ?awards) +WHERE { + res:Katie_Holmes dbp:spouse ?uri . + ?uri text:""win"" ?award . + ?award rdf:type text:""Golden Globe"" . +}",qald-4 +Which recipients of the Victoria Cross died in the Battle of Arnhem?,"PREFIX dbo: +PREFIX res: +SELECT DISTINCT ?uri +WHERE { + ?uri dbo:award res:Victoria_Cross . + ?uri text:""died in"" text:""Battle of Arnhem"" . +}",qald-4 +Where did the first man in space die?,"PREFIX dbo: +PREFIX res: +SELECT DISTINCT ?uri +WHERE { + ?x text:""is"" text:""first man in space"" . + ?x dbo:deathPlace ?uri . +}",qald-4 +How old was Steve Job's sister when she first met him?,"PREFIX dbo: +PREFIX res: +SELECT ?n +WHERE { + res:Steve_Jobs dbo:relative ?uri . + ?uri text:""did not meet until she was"" ?n . +}",qald-4 +Which members of the Wu-Tang Clan took their stage name from a movie?,"PREFIX dbo: +PREFIX res: +PREFIX rdf: +SELECT DISTINCT ?uri +WHERE { + res:Wu-Tang_Clan dbo:bandMember ?uri . + ?uri text:""stage name"" ?x . + ?x text:""from"" text:""movie"" . +}",qald-4 +Which writers had influenced the philosopher that refused a Nobel Prize?,"PREFIX dbo: +PREFIX rdf: +SELECT DISTINCT ?uri +WHERE { + ?x rdf:type dbo:Philosopher . + ?x text:""refuse"" text:""Nobel Prize"" . + ?x dbo:influencedBy ?uri . + ?uri rdf:type dbo:Writer . +}",qald-4 +Under which king did the British prime minister that signed the Munich agreement serve?,"PREFIX dbo: +PREFIX rdf: +PREFIX yago: +SELECT DISTINCT ?uri +WHERE { + ?x rdf:type yago:PrimeMinistersOfTheUnitedKingdom . + ?x text:""sign"" text:""Munich Agreement"" . + ?x dbo:monarch ?uri . +}",qald-4 +Who composed the music for the film that depicts the early life of Jane Austin?,"PREFIX dbo: +PREFIX rdf: +SELECT DISTINCT ?uri +WHERE { + ?x rdf:type dbo:Film . + ?x text:""depicts the early life of"" text:""Jane Austin"" . + ?x dbo:musicComposer ?uri . +}",qald-4 +Who succeeded the pope that reigned only 33 days?,"PREFIX dbo: +PREFIX rdf: +PREFIX yago: +SELECT DISTINCT ?uri +WHERE { + ?x rdf:type yago:Popes . + ?x text:""reign"" text:""33 days"" . + ?x dbo:successor ?uri . +}",qald-4 +On which island did the national poet of Greece die?,"PREFIX dbo: +PREFIX rdf: +PREFIX yago: +SELECT DISTINCT ?uri +WHERE { + ?x text:""considered"" text:""national poet of Greece"" . + ?x dbo:deathPlace ?uri . + ?uri rdf:type yago:Island109316454 . +}",qald-4 +Which horses did The Long Fellow ride?,"PREFIX dbo: +PREFIX rdf: +SELECT DISTINCT ?uri +WHERE { + ?x text:""known as"" text:""The Long Fellow"" . + ?x dbo:raceHorse ?uri . +}",qald-4 +"Of the people that died of radiation in Los Alamos, whose death was an accident?","PREFIX dbo: +PREFIX rdf: +SELECT DISTINCT ?uri +WHERE { + ?rui dbo:deathPlace . + ?uri dbo:deathCause res:Acute_radiation_syndrome . + ?uri text:""death circumstance"" text:""accident"" . +}",qald-4 +Which buildings owned by the crown overlook the North Sea?,"PREFIX dbo: +PREFIX rdf: +SELECT ?uri +WHERE { + ?uri rdf:type dbo:Building. + ?uri dbo:owner res:The_Crown . + ?uri text:""overlook"" text:""North Sea"" . +}",qald-4 +"Which buildings in art deco style did Shreve, Lamb and Harmon design?","PREFIX dbo: +PREFIX res: +PREFIX rdf: +SELECT DISTINCT ?uri +WHERE { + ?uri dbo:architect res:Shreve,_Lamb_&_Harmon . + { ?uri dbo:architecturalStyle res:Art_Deco . } + UNION + { ?uri text:""style text:""art deco"" . } +}",qald-4 +Which birds are protected under the National Parks and Wildlife Act?,"PREFIX dbo: +PREFIX res: +SELECT DISTINCT ?uri +WHERE { + ?uri rdf:type dbo:Bird . + ?uri text:""protected under"" text:""National Parks and Wildlife Act"". + +}",qald-4 +Which country did the first known photographer of snowflakes come from?,"PREFIX dbo: +PREFIX res: +SELECT DISTINCT ?uri +WHERE { + ?uri text:""is"" text:""first known photographer of snowflakes"" . + ?uri dbo:birthPlace ?x . + ?x rdf:type dbo:Country . +}",qald-4 +List all the battles fought by the lover of Cleopatra.,"PREFIX dbo: +PREFIX res: +SELECT DISTINCT ?uri +WHERE { + ?x text:""lover"" text:""Cleopatra"". + ?x dbo:battle ?uri . +}",qald-4 +Are the Rosetta Stone and the Gayer-Andersen cat exhibited in the same museum?,"PREFIX dbo: +PREFIX res: +ASK +WHERE { + ?m1 text:""exhibits"" res:Rosetta_Stone . + res:Gayer-Anderson_Cat dbo:museum ?x . + ?m2 rdfs:label ?m2 . + FILTER (?m1=?m2) +}",qald-4 +Which actress starring in the TV series Friends owns the production company Coquette Productions?,"PREFIX dbo: +PREFIX res: +SELECT DISTINCT ?uri +WHERE { + res:Friends dbo:starring ?uri . + ?uri text:""own"" text:""the production company Coquette Productions"" . +}",qald-4 +Dakar is the capital of which country member of the African Union?,"PREFIX dbo: +PREFIX res: +SELECT DISTINCT ?uri +WHERE { + ?uri text:""member of"" text:""the African Union"" . + ?uri dbo:capital res:Dakar . +}",qald-4 +When was the composer of the opera Madama Butterfly born?,"PREFIX dbo: +PREFIX res: +SELECT DISTINCT ?date +WHERE { + res:Madama_Butterfly text:""composer"" ?x . + ?x dbo:birthDate ?date . +}",qald-4 +Which street basketball player was diagnosed with Sarcoidosis?,"PREFIX dbo: +PREFIX yago: +PREFIX rdf: +SELECT DISTINCT ?uri +WHERE { + ?uri rdf:type yago:StreetBasketballPlayers . + ?uri text:""diagnosed with"" text:""Sarcoidosis"". +}",qald-4 +Give me all cosmonauts.,"PREFIX rdf: +PREFIX dbo: +PREFIX res: +SELECT DISTINCT ?uri +WHERE { + ?uri rdf:type dbo:Astronaut . + { ?uri dbo:nationality res:Russia . } + UNION + { ?uri dbo:nationality res:Soviet_Union . } +}",qald-4 +Who was John F. Kennedy's vice president?,"PREFIX dbo: +PREFIX res: +SELECT DISTINCT ?uri +WHERE { res:John_F._Kennedy dbo:vicePresident ?uri . +}",qald-4 +Give me a list of all bandleaders that play trumpet.,"PREFIX dbo: +PREFIX res: +SELECT DISTINCT ?uri +WHERE { + ?uri dbo:occupation res:Bandleader . + ?uri dbo:instrument res:Trumpet . +}",qald-4 +Which countries have more than ten caves?,"PREFIX dbo: +PREFIX rdf: +SELECT DISTINCT ?uri +WHERE { + ?uri rdf:type dbo:Country . ?cave rdf:type dbo:Cave . { ?cave dbo:location ?uri . } UNION { ?cave dbo:location ?loc . ?loc dbo:country ?uri . } } GROUP BY ?uri HAVING(COUNT(?cave) > 10)",qald-4 +Give me all world heritage sites designated within the past two years.,"PREFIX dbo: +PREFIX dbp: +PREFIX rdf: +PREFIX xsd: +SELECT DISTINCT ?uri +WHERE { + ?uri rdf:type dbo:WorldHeritageSite . + ?uri dbp:year ?x . + FILTER ( ?x >= '2012'^^xsd:integer) +}",qald-4 +Does Breaking Bad have more episodes than Game of Thrones?,"PREFIX dbo: +PREFIX res: +ASK +WHERE { + res:Breaking_Bad dbo:numberOfEpisodes ?x . + res:Game_of_Thrones dbo:numberOfEpisodes ?y . + FILTER (?y > ?x) +}",qald-4 +How many languages are spoken in Turkmenistan?,"PREFIX dbo: +PREFIX res: +SELECT COUNT(DISTINCT ?x) +WHERE { + res:Turkmenistan dbo:language ?x . +}",qald-4 +Give me all actors starring in movies directed by William Shatner.,"PREFIX dbo: +PREFIX dbp: +PREFIX res: +SELECT DISTINCT ?uri +WHERE { + ?x dbo:director res:William_Shatner . + ?x dbo:starring ?uri . +}",qald-4 +Are tree frogs a type of amphibian?,"PREFIX dbo: +PREFIX res: +ASK +WHERE { + res:Hylidae dbo:class res:Amphibian . +}",qald-4 +Give me all Methodist politicians.,"PREFIX dbo: +PREFIX res: +PREFIX rdf: +SELECT DISTINCT ?uri +WHERE { + ?uri rdf:type dbo:Politician . + ?uri dbo:religion res:Methodism . +}",qald-4 +How often did Jane Fonda marry?,"PREFIX dbo: +PREFIX res: +SELECT COUNT(DISTINCT ?uri) +WHERE { + res:Jane_Fonda dbo:spouse ?uri . +}",qald-4 +Which professional surfers were born in Australia?,"PREFIX dbo: +PREFIX res: +SELECT DISTINCT ?uri +WHERE { + ?uri dbo:occupation res:Surfing . + ?uri dbo:birthPlace res:Australia . +}",qald-4 +Give me all islands that belong to Japan.,"PREFIX dbo: +PREFIX res: +PREFIX rdf: +SELECT DISTINCT ?uri +WHERE { + ?uri rdf:type dbo:Island . + ?uri dbo:country res:Japan . +}",qald-4 +Give me all Apollo 14 astronauts.,"PREFIX dbo: +PREFIX res: +SELECT DISTINCT ?uri +WHERE { + ?uri dbo:mission res:Apollo_14 . +}",qald-4 +Which U.S. states are in the same time zone as Utah?,"PREFIX res: +PREFIX dbp: +PREFIX yago: +PREFIX rdf: +SELECT DISTINCT ?uri +WHERE { + res:Utah dbp:timezone ?x . + ?uri rdf:type yago:StatesOfTheUnitedStates . + ?uri dbp:timezone ?x . + FILTER (?uri != res:Utah) +}",qald-4 +Give me all Danish films.,"PREFIX dbo: +PREFIX res: +PREFIX rdf: +SELECT DISTINCT ?uri +WHERE { + ?uri rdf:type dbo:Film . + ?uri dbo:country res:Denmark . +}",qald-4 +Which instruments does Cat Stevens play?,"PREFIX dbo: +PREFIX res: +SELECT DISTINCT ?uri +WHERE { + res:Cat_Stevens dbo:instrument ?uri . +}",qald-4 +Which Chess players died in the same place they were born in?,"PREFIX dbo: +PREFIX rdf: +SELECT DISTINCT ?uri +WHERE { + ?uri rdf:type dbo:ChessPlayer . + ?uri dbo:birthPlace ?x . + ?uri dbo:deathPlace ?y . + FILTER (?x = ?y) . +}",qald-4 +Was Marc Chagall a jew?,"PREFIX dbp: +PREFIX res: +ASK +WHERE { + res:Marc_Chagall dbp:ethnicity 'Jewish'@en . +}",qald-4 +Give me all communist countries.,"PREFIX dbo: +PREFIX res: +PREFIX rdf: +SELECT DISTINCT ?uri +WHERE { + ?uri rdf:type dbo:Country . + { ?uri dbo:governmentType res:Communism . } + UNION + { ?uri dbo:governmentType res:Communist_state . } +}",qald-4 +Which U.S. state has the highest population density?,"PREFIX yago: +PREFIX dbp: +PREFIX rdf: +SELECT DISTINCT ?uri +WHERE { + ?uri rdf:type yago:StatesOfTheUnitedStates . + ?uri dbp:densityrank ?rank . +} +ORDER BY ASC(?rank) +OFFSET 0 LIMIT 1",qald-4 +Which countries adopted the Euro?,"PREFIX dbp: +PREFIX dbo: +PREFIX res: +PREFIX rdf: +SELECT DISTINCT ?uri +WHERE { + ?uri rdf:type dbo:Country . + { ?uri dbo:currency res:Euro . } + UNION + { ?uri dbp:currencyCode 'EUR'@en . } +}",qald-4 +Which monarchs were married to a German?,"PREFIX dbo: +PREFIX res: +PREFIX rdf: +SELECT DISTINCT ?uri +WHERE { + ?uri rdf:type dbo:Monarch . + ?uri dbo:spouse ?spouse . + { ?spouse dbo:birthPlace res:Germany. } + UNION + { ?spouse dbo:birthPlace ?p . + ?p dbo:country res:Germany. } +}",qald-4 +What is the official language of Suriname?,"PREFIX dbo: +PREFIX res: +SELECT DISTINCT ?uri +WHERE { + res:Suriname dbo:officialLanguage ?uri . +}",qald-4 +Who is the mayor of Tel Aviv?,"PREFIX dbo: +PREFIX res: +SELECT DISTINCT ?uri +WHERE { + res:Tel_Aviv dbo:leaderName ?uri . +}",qald-4 +What is the highest place of the Urals?,"PREFIX dbo: +PREFIX res: +SELECT DISTINCT ?uri +WHERE { + res:Ural_Mountains dbo:highestPlace ?uri . +}",qald-4 +Who is the editor of Forbes?,"PREFIX res: +PREFIX dbo: +SELECT DISTINCT ?uri +WHERE { + res:Forbes dbo:editor ?uri . +}",qald-4 +How many countries are there in Europe?,"PREFIX yago: +PREFIX rdf: +SELECT COUNT(DISTINCT ?uri) +WHERE { + ?uri rdf:type yago:EuropeanCountries . +}",qald-4 +Give me all libraries established earlier than 1400.,"PREFIX dbo: +PREFIX dbp: +PREFIX rdf: +SELECT DISTINCT ?uri +WHERE { + ?uri rdf:type dbo:Library . + ?uri dbp:established ?year . + FILTER (?year < 1400) +}",qald-4 +Give me all federal chancellors of Germany.,"PREFIX dbp: +PREFIX res: +SELECT DISTINCT ?uri +WHERE { + ?uri dbp:office res:Chancellor_of_Germany . +}",qald-4 +List all episodes of the first season of the HBO television series The Sopranos.,"PREFIX dbo: +PREFIX res: +SELECT DISTINCT ?uri +WHERE { + ?uri dbo:series res:The_Sopranos . + ?uri dbo:seasonNumber 1 . +}",qald-4 +Which companies work in the aerospace industry as well as in medicine?,"PREFIX dbo: +PREFIX res: +PREFIX rdf: +SELECT DISTINCT ?uri +WHERE { + ?uri rdf:type dbo:Company . + ?uri dbo:industry res:Aerospace . + ?uri dbo:industry res:Medicine . +}",qald-4 +Is Christian Bale starring in Velvet Goldmine?,"PREFIX dbo: +PREFIX res: +ASK +WHERE { + res:Velvet_Goldmine dbo:starring res:Christian_Bale . +}",qald-4 +How many Aldi stores are there?,"PREFIX res: +PREFIX dbo: +SELECT DISTINCT ?number +WHERE { + res:Aldi dbo:numberOfLocations ?number . +}",qald-4 +Who was the first president of the United States?,"PREFIX dbo: +PREFIX rdf: +SELECT DISTINCT ?uri +WHERE { + ?uri rdf:type dbo:Person . + ?uri dbo:office '1st President of the United States'@en . +}",qald-4 +Give me all female given names.,"PREFIX dbo: +PREFIX res: +PREFIX rdf: +SELECT DISTINCT ?uri +WHERE { + ?uri rdf:type dbo:GivenName . + ?uri dbo:gender res:Female . +}",qald-4 +Who wrote the book The Pillars of the Earth?,"PREFIX dbo: +PREFIX res: +SELECT DISTINCT ?uri +WHERE { + res:The_Pillars_of_the_Earth dbo:author ?uri . +}",qald-4 +In which U.S. state is Mount McKinley located?,"PREFIX yago: +PREFIX dbo: +PREFIX res: +PREFIX rdf: +SELECT DISTINCT ?uri +WHERE { + ?uri rdf:type yago:StatesOfTheUnitedStates . + res:Mount_McKinley dbo:locatedInArea ?uri . +}",qald-4 +Which organizations were founded in 1930?,"PREFIX dbo: +PREFIX rdf: +SELECT DISTINCT ?uri +WHERE { + ?uri rdf:type dbo:Organisation . + { ?uri dbo:formationYear ?date . } + UNION + { ?uri dbo:foundingYear ?date. } + FILTER regex(?date,'^1930') . +}",qald-4 +Which genes are associated with Endothelin receptor type B?,SELECT DISTINCT ?x WHERE {?x },qald-4 +Which genes are associated with subtypes of rickets?,SELECT DISTINCT ?z WHERE {?x . ?x ?z. },qald-4 +Which drug has the highest number of side-effects?,SELECT DISTINCT ?x WHERE {?x ?y. } GROUP BY ?x ORDER BY DESC(COUNT(?y)) LIMIT 1,qald-4 +List drugs that lead to strokes and arthrosis.,SELECT DISTINCT ?x WHERE {?x ?k. ?k . ?x },qald-4 +Which drugs have a water solubility of 2.78e-01 mg/mL?,"SELECT DISTINCT ?x WHERE {?x ""2.78e-01 mg/mL"".}",qald-4 +Give me the side-effects drugs with a solubility of 3.24e-02 mg/mL.,"SELECT DISTINCT ?k WHERE {?x ?y. ?x ""3.24e-02 mg/mL"". ?y ?k}",qald-4 +Which diseases are associated with SAR1B?,SELECT DISTINCT ?c WHERE {?c a . ?c . },qald-4 +Which experimental drugs interact with food?,SELECT DISTINCT ?x WHERE {?x a . ?x . ?x ?k. },qald-4 +Which approved drugs interact with fibers?,"SELECT DISTINCT ?x WHERE {?x a . ?x . ?x ?k. FILTER (contains(str(?k), ""fibers"")) }",qald-4 +Which drugs interact with food and have HIV infections as side-effects?,SELECT DISTINCT ?x WHERE {?x a . ?x ?k. ?x ?z. ?z },qald-4 +Give me diseases whose possible drugs target the elongation factor 2.,SELECT DISTINCT ?x WHERE {?x ?y. ?y },qald-4 +Which drugs achieve a protein binding of 100%?,"SELECT DISTINCT ?x WHERE {?x ""100%"" }",qald-4 +List illnesses that are treated by drugs whose mechanism of action involves norepinephrine and serotonin.,"SELECT DISTINCT ?a WHERE {?a ?x. ?x ?y. FILTER(contains(str(?y), ""norepinephrine"")) . FILTER(contains(str(?y), ""serotonin"")) }",qald-4 +Which is the least common chromosome location?,SELECT DISTINCT ?b WHERE {?a ?b } GROUP BY (?b) ORDER BY ASC(COUNT(?a)) LIMIT 1,qald-4 +Are there drugs that target the Protein kinase C beta type?,ASK WHERE {?a },qald-4 +Give me all diseases of the connective tissue class.,SELECT DISTINCT ?a WHERE {?a . },qald-4 +Which targets are involved in blood clotting?,"SELECT DISTINCT ?a WHERE {?a ?l. FILTER(contains(str(?l), ""blood clotting""))}",qald-4 +List the number of distinct side-effects of drugs which target genes whose general function involves cell division.,"SELECT COUNT(DISTINCT ?y) WHERE {?x ?z. ?z ?y. ?x ?a. ?a ?l. FILTER(contains(str(?l), ""cell division""))}",qald-4 +Which drugs have no side-effects?,SELECT DISTINCT ?z WHERE {{?z a } MINUS {?z ?y.} },qald-4 +List diseases whose possible drugs have no side effects.,SELECT DISTINCT ?k WHERE {{?k ?l. ?l ?z. ?z a } MINUS {?z ?y.} },qald-4 +Give me the drug categories of Desoxyn.,"SELECT DISTINCT ?y WHERE {?k ""Desoxyn"". ?k ?y }",qald-4 +Give me drugs in the gaseous state.,"SELECT DISTINCT ?k WHERE {?k ""Gas"" }",qald-4 +Which disease has the largest size?,SELECT DISTINCT ?k WHERE {?k ?l} ORDER BY DESC(?l) LIMIT 1,qald-4 +Which drugs have bipolar disorder as indication?,"SELECT DISTINCT ?x WHERE {?x ?k. FILTER (contains (str(?k), ""bipolar disorder"")) }",qald-4 +Which diseases have a class degree of 11?,"SELECT DISTINCT ?x WHERE {?x ""11""^^}",qald-4 +For which movie did the daughter of Francis Ford Coppola receive an Oscar?,"PREFIX dbo: +PREFIX res: +SELECT DISTINCT ?string +WHERE { + res:Francis_Ford_Coppola dbo:child ?x . + ?x text:""receive Oscar for"" ?string . +}",qald-4 +Which city does the first person to climb all 14 eight-thousanders come from?,"PREFIX dbo: +PREFIX rdf: +SELECT DISTINCT ?uri +WHERE { + ?x text:""is"" text:""first person to climb all fourteen eight-thousanders"" . + ?x dbo:birthPlace ?uri . + ?uri rdf:type dbo:Settlement . +}",qald-4 +At which college did the only American actor that received the César Award study?,"PREFIX dbo: +PREFIX res: +SELECT DISTINCT ?string +WHERE { + ?x text:""is"" text:""the only American actor that received the César Award"" . + ?x dbo:almaMater ?uri . +}",qald-4 +Did Napoleon's first wife die in France?,"PREFIX dbo: +PREFIX res: +ASK +WHERE { + ?x text:""first wife of"" text:""Napoleon"" . + ?x dbo:deathPlace res:France . +}",qald-4 +Who is the current James Bond?,"PREFIX dbo: +PREFIX res: +SELECT DISTINCT ?string +WHERE { + res:James_Bond dbo:lastAppearance ?x . + ?x text:""feature as James Bond"" ?string . +}",qald-4 +What eating disorder is characterized by eating substances such as clay and sand?,"PREFIX rdf: +PREFIX yago: +SELECT ?uri WHERE +{ + ?uri rdf:type yago:EatingDisorders . + ?uri text:""characterized by"" ""appetite for clay and sand"" . +}",qald-4 +What is the birth place of Hollywood's highest-paid actress?,"PREFIX dbo: +PREFIX res: +SELECT DISTINCT ?uri +WHERE { + ?x text:""is"" text:""Hollywood's highest-paid actress"" . + ?x dbo:birthPlace ?uri . +}",qald-4 +In which city does the leader of the Xposé girls live?,"PREFIX dbo: +PREFIX res: +SELECT DISTINCT ?uri +WHERE { + ?x text:""is"" text:""leader of the Xposé girls"" . + ?x dbo:residence ?uri .",qald-4 +Who plays Phileas Fogg in the adaptation of Around the World in 80 Days directed by Buzz Kulik?,"PREFIX dbo: +PREFIX res: +PREFIX rdfs: +SELECT DISTINCT ?uri +WHERE { + ?x rdfs:label ?l . + FILTER regex(?l,""Around the World in 80 Days"",""i"") + ?x dbo:director res:Buzz_Kulik . + ?x dbo:starring ?uri . + ?uri text:""plays"" text:""Phileas Fogg"" . +}",qald-4 +Who played the drums in the band that wrote Complete Control?,"PREFIX dbo: +PREFIX res: +SELECT DISTINCT ?uri +WHERE { + res:Complete_Control dbo:musicalArtist ?x . + ?x dbo:bandMember ?uri . + ?uri text:""plays"" text:""drums"" . +}",qald-4 +Give me all taikonauts.,"PREFIX dbo: +PREFIX res: +PREFIX rdf: +SELECT DISTINCT ?uri +WHERE { + ?uri rdf:type dbo:Astronaut . + ?uri dbo:nationality res:China . +}",qald-4 +How many languages are spoken in Colombia?,"PREFIX dbo: +PREFIX res: +SELECT COUNT(DISTINCT ?uri) +WHERE { + ?uri rdf:type dbo:Language . + res:Colombia dbo:language ?uri . +}",qald-4 +Which poet wrote the most books?,"PREFIX dbo: +PREFIX res: +PREFIX rdf: +SELECT DISTINCT ?uri +WHERE { + ?uri dbo:occupation res:Poet . + ?x dbo:author ?uri . + ?x rdf:type dbo:Book . +} +ORDER BY DESC(COUNT(?x)) +OFFSET 0 LIMIT 1",qald-4 +How many programming languages are there?,"PREFIX dbo: +PREFIX rdf: +SELECT COUNT(DISTINCT ?uri) +WHERE { + ?uri rdf:type dbo:ProgrammingLanguage . +}",qald-4 +Give me all Dutch parties.,"PREFIX dbo: +PREFIX res: +PREFIX rdf: +SELECT DISTINCT ?uri +WHERE { + ?uri rdf:type dbo:PoliticalParty . + ?uri dbo:country res:Netherlands . +}",qald-4 +When was Carlo Giuliani shot?,"PREFIX dbp: +PREFIX res: +SELECT DISTINCT ?date +WHERE { + res:Death_of_Carlo_Giuliani dbp:dateOfDeath ?date . +}",qald-4 +Does the Isar flow into a lake?,"PREFIX dbo: +PREFIX res: +PREFIX rdf: +ASK +WHERE { + ?x dbo:inflow res:Isar . + ?x rdf:type dbo:Lake . +}",qald-4 +Which rivers flow into a German lake?,"PREFIX dbo: +PREFIX res: +PREFIX rdf: +SELECT DISTINCT ?uri +WHERE { + ?uri rdf:type dbo:River . + ?x dbo:inflow ?uri . + ?x rdf:type dbo:Lake . + ?x dbo:country res:Germany . +}",qald-4 +How heavy is Jupiter's lightest moon?,"PREFIX dbo: +PREFIX dbp: +PREFIX res: +SELECT DISTINCT ?n +WHERE { + ?uri dbp:satelliteOf res:Jupiter . + ?uri dbo:mass ?n . +} +ORDER BY ASC(?n) +OFFSET 0 LIMIT 1",qald-4 +Who is the youngest Darts player?,"PREFIX dbo: +PREFIX rdf: +SELECT DISTINCT ?uri +WHERE { + ?uri rdf:type dbo:DartsPlayer . + ?uri dbo:birthDate ?date . +} +ORDER BY DESC(?date) +OFFSET 0 LIMIT 1",qald-4 +Give me all animals that are extinct.,"PREFIX dbo: +PREFIX rdf: +SELECT DISTINCT ?uri +WHERE { + ?uri rdf:type dbo:Animal . + ?uri dbo:conservationStatus ""EX""@en . +}",qald-4 +How many pages does War and Peace have?,"PREFIX dbo: +PREFIX res: +SELECT DISTINCT ?n +WHERE { + res:War_and_Peace dbo:numberOfPages ?n . +}",qald-4 +Which ingredients do I need for carrot cake?,"PREFIX dbo: +PREFIX res: +SELECT DISTINCT ?uri +WHERE { + res:Carrot_cake dbo:ingredient ?uri . +}",qald-4 +What is the most frequent death cause?,"PREFIX dbo: +SELECT DISTINCT ?x +WHERE { + ?uri dbo:deathCause ?x . +} +ORDER BY DESC(COUNT(DISTINCT ?uri)) +OFFSET 0 LIMIT 1",qald-4 +Who has Tom Cruise been married to?,"PREFIX dbo: +PREFIX res: +SELECT DISTINCT ?uri +WHERE { + ?uri dbo:spouse res:Tom_Cruise. +}",qald-4 +Who is the tallest player of the Atlanta Falcons?,"PREFIX dbo: +PREFIX dbp: +PREFIX res: +SELECT DISTINCT ?uri +WHERE { + ?uri dbo:team res:Atlanta_Falcons . + ?uri dbo:height ?h . +} +ORDER BY DESC(?h) +OFFSET 0 LIMIT 1",qald-4 +What is the bridge with the longest span?,"PREFIX dbo: +PREFIX res: +PREFIX rdf: +SELECT DISTINCT ?uri +WHERE { + ?uri rdf:type dbo:Bridge . + ?uri dbo:mainspan ?s . +} +ORDER BY DESC(?s) +OFFSET 0 LIMIT 1",qald-4 +Give me all films produced by Steven Spielberg with a budget of at least $80 million.,"PREFIX dbo: +PREFIX res: +PREFIX rdf: +SELECT DISTINCT ?uri +WHERE { + ?uri rdf:type dbo:Film . + ?uri dbo:director res:Steven_Spielberg . + ?uri dbo:budget ?b . + FILTER( xsd:double(?b) >= 8.0E7 ) +}",qald-4 +Is Cola a beverage?,"PREFIX dbo: +PREFIX res: +PREFIX rdf: +ASK +WHERE { + res:Cola rdf:type dbo:Beverage . +}",qald-4 +Which actor was casted in the most movies?,"PREFIX dbo: +PREFIX dbp: +PREFIX res: +PREFIX rdf: +SELECT DISTINCT ?uri +WHERE { + ?uri rdf:type dbo:Actor . + ?f rdf:type dbo:Film . + ?f dbo:starring ?uri . +} +ORDER BY DESC(COUNT(DISTINCT(?f))) +OFFSET 0 LIMIT 1",qald-4 +Where was Bach born?,"PREFIX dbo: +PREFIX res: +SELECT DISTINCT ?uri +WHERE { + res:Johann_Sebastian_Bach dbo:birthPlace ?uri . +}",qald-4 +Which of Tim Burton's films had the highest budget?,"PREFIX dbo: +PREFIX res: +SELECT DISTINCT ?uri +WHERE { + ?uri dbo:director res:Tim_Burton . + ?uri dbo:budget ?b . +} +ORDER BY ?b +OFFSET 0 LIMIT 1",qald-4 +Does Abraham Lincoln's death place have a website?,"PREFIX dbo: +PREFIX res: +ASK +WHERE { + res:Abraham_Lincoln dbo:deathPlace ?p . + ?p dbo:website ?w . +}",qald-4 +Who are the four youngest MVP basketball players?,"PREFIX dbo: +PREFIX dbp: +PREFIX res: +PREFIX rdf: +SELECT DISTINCT ?uri +WHERE { + ?uri rdf:type dbo:BasketballPlayer . + ?uri dbo:birthDate ?date. + ?uri dbp:highlights ?h . + FILTER regex(?h,""MVP"") +} +ORDER BY DESC(?date) +OFFSET 0 LIMIT 4",qald-4 +What are the top-10 action role-playing video games according to IGN?,"PREFIX dbo: +PREFIX dbp: +PREFIX res: +SELECT DISTINCT ?uri +WHERE { + ?uri . + ?uri dbp:ign ?score . +} +ORDER BY DESC(?score) +LIMIT 10",qald-4 +Give me all actors who were born in Berlin.,"PREFIX dbo: +PREFIX res: +PREFIX rdf: +SELECT DISTINCT ?uri +WHERE { + ?uri rdf:type dbo:Actor . + ?uri dbo:birthPlace res:Berlin . +}",qald-4 +Give me all actors who were born in Paris after 1950.,"PREFIX dbo: +PREFIX res: +PREFIX rdf: +SELECT DISTINCT ?uri +WHERE { + ?uri rdf:type dbo:Actor . + ?uri dbo:birthPlace res:Paris . + ?uri dbo:birthDate ?date . + FILTER ( ?date >= xsd:dateTime(""1950-12-31T00:00:00Z"")) +}",qald-4 +What was Brazil's lowest rank in the FIFA World Ranking?,"PREFIX dbp: +PREFIX res: +SELECT DISTINCT ?n +WHERE { + res:Brazil_national_football_team dbp:fifaMin ?n . +}",qald-4 +Give me all Australian metalcore bands.,"PREFIX dbo: +PREFIX res: +PREFIX rdf: +SELECT DISTINCT ?uri +WHERE { + ?uri rdf:type dbo:Band . + ?uri dbo:genre res:Metalcore . + { ?uri dbo:hometown res:Australia . } + UNION + { ?uri dbo:hometown ?h . + ?h dbo:country res:Australia . } +}",qald-4 +When is Halloween?,"PREFIX dbp: +PREFIX res: +SELECT DISTINCT ?date +WHERE { + res:Halloween dbp:date ?date . +}",qald-4 +How many inhabitants does the largest city in Canada have?,"PREFIX dbo: +PREFIX res: +SELECT DISTINCT ?num +WHERE { + res:Canada dbo:largestCity ?city . + ?city dbo:populationTotal ?num . +}",qald-4 +In which countries can you pay using the West African CFA franc?,"PREFIX dbo: +PREFIX res: +SELECT DISTINCT ?uri +WHERE { + ?uri dbo:currency res:West_African_CFA_franc . +}",qald-4 +Give me the capitals of all countries that the Himalayas run through.,"PREFIX dbp: +PREFIX dbo: +PREFIX res: +SELECT DISTINCT ?uri +WHERE { + res:Himalayas dbp:country ?country . + ?country dbo:capital ?uri . +}",qald-4 +Who was the first to climb Mount Everest?,"PREFIX res: +PREFIX dbo: +SELECT DISTINCT ?uri +WHERE { + res:Mount_Everest dbo:firstAscentPerson ?uri . +}",qald-4 +To which artistic movement did the painter of The Three Dancers belong?,"PREFIX res: +PREFIX dbo: +SELECT DISTINCT ?uri +WHERE { + res:The_Three_Dancers dbo:author ?person . + ?person dbo:movement ?uri . +}",qald-4 +Which pope succeeded John Paul II?,"PREFIX res: +PREFIX dbp: +SELECT DISTINCT ?uri +WHERE { + res:Pope_John_Paul_II dbp:successor ?uri . +}",qald-4 +What was the last movie with Alec Guinness?,"PREFIX dbo: +PREFIX res: +PREFIX rdf: +SELECT DISTINCT ?uri +WHERE { + ?uri rdf:type dbo:Film . + ?uri dbo:starring res:Alec_Guinness . + ?uri dbo:releaseDate ?date . +} +ORDER BY DESC(?date) +LIMIT 1",qald-4 +How many James Bond movies are there?,"PREFIX rdf: +PREFIX yago: +SELECT COUNT(DISTINCT ?uri) +WHERE { + ?uri rdf:type yago:JamesBondFilms . +}",qald-4 +Which actor played Chewbacca?,"PREFIX dbp: +PREFIX res: +SELECT DISTINCT ?uri +WHERE { + res:Chewbacca dbp:portrayer ?uri . +}",qald-4 +Give me the grandchildren of Bruce Lee.,"PREFIX dbo: +PREFIX res: +SELECT DISTINCT ?uri +WHERE { + res:Bruce_Lee dbo:child ?child . + ?child dbo:child ?uri . +}",qald-4 +Give me all writers that won the Nobel Prize in literature.,"PREFIX dbo: +PREFIX res: +SELECT DISTINCT ?uri +WHERE { + ?uri rdf:type dbo:Writer . + ?uri dbo:award res:Nobel_Prize_in_Literature . +}",qald-4 +What is the official color of the University of Oxford?,"PREFIX dbo: +PREFIX res: +SELECT DISTINCT ?string +WHERE { + res:University_of_Oxford dbo:officialSchoolColour ?string . +}",qald-4 +Give me all Swedish oceanographers.,"PREFIX dbo: +PREFIX res: +SELECT DISTINCT ?uri +WHERE { + ?uri dbo:field res:Oceanography . + ?uri dbo:birthPlace res:Sweden . +}",qald-4 +How deep is Lake Placid?,"PREFIX dbo: +SELECT DISTINCT ?n +WHERE { + dbo:depth ?n . +}",qald-4 +Is James Bond married?,"PREFIX dbo: +PREFIX res: +ASK +WHERE { + res:James_Bond dbo:spouse ?uri . +}",qald-4 +Which spaceflights were launched from Baikonur?,"PREFIX dbo: +PREFIX res: +SELECT DISTINCT ?uri +WHERE { + ?uri dbo:launchPad res:Baikonur_Cosmodrome . +}",qald-4 +Give me all actors called Baldwin.,"PREFIX dbo: +PREFIX res: +PREFIX foaf: +SELECT DISTINCT ?uri +WHERE { + ?uri foaf:surname ""Baldwin""@en . + { ?uri dbo:occupation res:Actor . } + UNION + { ?uri rdf:type dbo:Actor . } +}",qald-4 +What does CPU stand for?,"PREFIX dbo: +PREFIX res: +SELECT DISTINCT ?uri +WHERE { + ?uri dbo:abbreviation ""CPU""@en . +}",qald-4 +In which country does the Ganges start?,"PREFIX dbo: +PREFIX res: +SELECT DISTINCT ?uri +WHERE { + res:Ganges dbo:sourceCountry ?uri . +}",qald-5 +Do Prince Harry and Prince William have the same parents?,"PREFIX dbo: +ASK +WHERE { + dbo:parent ?x . + dbo:parent ?x . +}",qald-5 +How many missions does the Soyuz programme have?,"PREFIX dbp: +PREFIX res: +SELECT COUNT(DISTINCT ?uri) +WHERE { + ?uri dbp:programme res:Soyuz_programme . +}",qald-5 +Give me all Danish movies.,"PREFIX dbo: +PREFIX res: +PREFIX rdf: +SELECT DISTINCT ?uri +WHERE { + ?uri rdf:type dbo:Film . + ?uri dbo:country res:Denmark . +}",qald-5 +Is Rita Wilson the wife of Tom Hanks?,"PREFIX dbo: +PREFIX res: +ASK +WHERE { + res:Tom_Hanks dbo:spouse res:Rita_Wilson . +}",qald-5 +Who was called Frank The Tank?,"PREFIX dbp: +SELECT DISTINCT ?uri +WHERE { + ?uri dbp:nickname 'Frank The Tank'@en . +}",qald-5 +Which movies did Kurosawa direct?,"PREFIX dbo: +PREFIX res: +PREFIX rdf: +SELECT DISTINCT ?uri +WHERE { + ?uri rdf:type dbo:Film . + ?uri dbo:director res:Akira_Kurosawa . +}",qald-5 +Which television shows were created by John Cleese?,"PREFIX dbo: +PREFIX res: +PREFIX rdf: +SELECT DISTINCT ?uri +WHERE { + ?uri rdf:type dbo:TelevisionShow . + ?uri dbo:creator res:John_Cleese . +}",qald-5 +Which awards did Douglas Hofstadter win?,"PREFIX res: +PREFIX dbo: +SELECT DISTINCT ?uri +WHERE { + res:Douglas_Hofstadter dbo:award ?uri . +}",qald-5 +Who is the daughter of Robert Kennedy married to?,"PREFIX dbo: +PREFIX res: +SELECT DISTINCT ?uri +WHERE { + res:Robert_F._Kennedy dbo:child ?child . + ?child dbo:spouse ?uri . +}",qald-5 +Who is the owner of Rolls-Royce?,"PREFIX dbo: +PREFIX res: +SELECT DISTINCT ?uri +WHERE { + res:Rolls-Royce_Motors dbo:owner ?uri . +}",qald-5 +Was the wife of president Lincoln called Mary?,"PREFIX dbo: +PREFIX res: +PREFIX rdfs: +ASK +WHERE { + res:Abraham_Lincoln dbo:spouse ?spouse . + ?spouse rdfs:label ?name . + FILTER(regex(?name,'Mary')) +}",qald-5 +Who was the 16th president of the United States?,"PREFIX dbo: +PREFIX rdf: +SELECT DISTINCT ?uri +WHERE { + ?uri dbo:office 'President of the United States' . + ?uri dbo:orderInOffice '16th' . +}",qald-5 +What is the most frequent cause of death?,"PREFIX dbo: +SELECT DISTINCT ?x +WHERE { + ?uri dbo:deathCause ?x . +} +ORDER BY DESC(COUNT(DISTINCT ?uri)) +OFFSET 0 LIMIT 1",qald-5 +Which rockets were launched from Baikonur?,"PREFIX dbo: +PREFIX res: +PREFIX rdf: +SELECT DISTINCT ?uri +WHERE { + ?uri rdf:type dbo:Rocket . + ?uri dbo:launchSite res:Baikonur_Cosmodrome . +}",qald-5 +What does IYCM stand for?,"PREFIX dbo: +PREFIX res: +SELECT DISTINCT ?uri +WHERE { + ?uri dbo:abbreviation 'IYCM' . +}",qald-5 +Which companies have more than 1 million employees?,"PREFIX dbo: +PREFIX dbp: +PREFIX res: +PREFIX rdf: +SELECT DISTINCT ?uri +WHERE { + ?uri rdf:type dbo:Company . + { ?uri dbo:numberOfEmployees ?n . } + UNION + { ?uri dbp:numEmployees ?n . } + FILTER ( ?n > 1000000 ) }",qald-5 +Give all swimmers that were born in Moscow.,"PREFIX dbo: +PREFIX res: +PREFIX rdf: +SELECT DISTINCT ?uri +WHERE { + ?uri rdf:type dbo:Swimmer . + ?uri dbo:birthPlace res:Moscow . +}",qald-5 +Who was called Rodzilla?,"PREFIX dbp: +SELECT DISTINCT ?uri +WHERE { + ?uri dbp:nickname ""Rodzilla""@en . +}",qald-5 +Show me the book that Muhammad Ali wrote.,"PREFIX dbo: +PREFIX res: +PREFIX rdf: +SELECT DISTINCT ?uri +WHERE { + ?uri rdf:type dbo:Book . + ?uri dbo:author res:Muhammad_Ali . +}",qald-5 +How many museums does Paris have?,"PREFIX dbo: +PREFIX res: +PREFIX rdf: +SELECT DISTINCT ?uri +WHERE { + ?uri rdf:type dbo:Museum . + ?uri dbo:location res:Paris . +}",qald-5 +Which city has the most inhabitants?,"PREFIX dbo: +PREFIX res: +PREFIX rdf: +SELECT DISTINCT ?uri +WHERE { + ?uri rdf:type dbo:City . + ?uri dbo:populationTotal ?pop . +} +ORDER BY DESC(?pop) +OFFSET 0 LIMIT 1",qald-5 +Which city has the least inhabitants?,"PREFIX dbo: +PREFIX res: +PREFIX rdf: +SELECT DISTINCT ?uri +WHERE { + ?uri rdf:type dbo:City . + ?uri dbo:populationTotal ?pop . +} +ORDER BY ASC(?pop) +OFFSET 0 LIMIT 1",qald-5 +Give me all the TV shows with Neil Patrick Harris.,"PREFIX dbo: +PREFIX res: +PREFIX rdf: +SELECT DISTINCT ?uri +WHERE { + ?uri rdf:type dbo:TelevisionShow . + ?uri dbo:starring res:Neil_Patrick_Harris . +}",qald-5 +Who wrote The Hunger Games?,"PREFIX dbo: +PREFIX res: +SELECT DISTINCT ?uri +WHERE { + res:The_Hunger_Games dbo:author ?uri . +}",qald-5 +Show a list of soccer clubs that play in the Bundesliga.,"PREFIX dbo: +PREFIX res: +PREFIX rdf: +SELECT DISTINCT ?uri +WHERE { + ?uri rdf:type dbo:SoccerClub . + ?uri dbo:league res:Bundesliga . +}",qald-5 +What country is Mount Everest in?,"PREFIX dbo: +PREFIX res: +PREFIX rdf: +SELECT DISTINCT ?uri +WHERE { + res:Mount_Everest dbo:locatedInArea ?uri . + ?uri rdf:type dbo:Country . +}",qald-5 +Who is the founder of Penguin Books?,"PREFIX dbo: +PREFIX res: +PREFIX rdf: +SELECT DISTINCT ?uri +WHERE { + res:Penguin_Books dbo:founder ?uri . +}",qald-5 +Which programming languages influenced Javascript?,"PREFIX dbo: +PREFIX res: +PREFIX rdf: +SELECT DISTINCT ?uri +WHERE { + ?uri rdf:type dbo:ProgrammingLanguage . + ?uri dbo:influenced res:JavaScript . +}",qald-5 +Did Che Guevara have children?,"PREFIX dbo: +PREFIX res: +ASK +WHERE { + res:Che_Guevara dbo:child ?uri . +}",qald-5 +List all the musicals with music by Elton John.,"PREFIX dbo: +PREFIX res: +PREFIX rdf: +SELECT DISTINCT ?uri +WHERE { + ?uri rdf:type dbo:Musical . + ?uri dbo:musicBy res:Elton_John . +}",qald-5 +Show me all the breweries in Australia.,"PREFIX dbo: +PREFIX res: +PREFIX rdf: +SELECT DISTINCT ?uri ?x +WHERE { + ?uri rdf:type dbo:Brewery . + { ?uri dbo:location res:Australia . } + UNION + { ?uri dbo:location ?x . + ?x dbo:country res:Australia . } +}",qald-5 +When was the Titanic completed?,"PREFIX dbo: +PREFIX res: +SELECT DISTINCT ?date +WHERE { + res:RMS_Titanic dbo:completionDate ?date . +}",qald-5 +How much did Pulp Fiction cost?,"PREFIX dbo: +PREFIX res: +SELECT DISTINCT ?n +WHERE { + res:Pulp_Fiction dbo:budget ?n . +}",qald-5 +How many airlines are there?,"PREFIX dbo: +PREFIX rdf: +SELECT COUNT(DISTINCT ?uri) +WHERE { + ?uri rdf:type dbo:Airline . +}",qald-5 +Who played Agent Smith in Matrix?,"PREFIX dbp: +PREFIX res: +SELECT DISTINCT ?uri +WHERE { + res:Agent_Smith dbp:portrayer ?uri . +}",qald-5 +How much carbs does peanut butter have?,"PREFIX dbp: +PREFIX res: +SELECT DISTINCT ?carbs +WHERE { + res:Peanut_butter dbp:carbs ?carbs . +}",qald-5 +Which book has the most pages?,"PREFIX dbo: +PREFIX rdf: +SELECT DISTINCT ?uri +WHERE { + ?uri rdf:type dbo:Book . + ?uri dbo:numberOfPages ?n . +} +ORDER BY DESC(?n) +OFFSET 0 LIMIT 1",qald-5 +Which bridges cross the Seine?,"PREFIX dbo: +PREFIX res: +PREFIX rdf: +SELECT DISTINCT ?uri +WHERE { + ?uri rdf:type dbo:Bridge . + ?uri dbo:crosses res:Seine . +}",qald-5 +Who is the mayor of the capital of French Polynesia?,"PREFIX dbo: +PREFIX res: +SELECT DISTINCT ?uri +WHERE { + res:French_Polynesia dbo:capital ?x . + ?x dbo:mayor ?uri . +}",qald-5 +When did Dracula's creator die?,"PREFIX dbo: +PREFIX res: +SELECT DISTINCT ?date +WHERE { + res:Count_Dracula dbo:creator ?x . + ?x dbo:deathDate ?date . +}",qald-5 +What is the location of the Houses of Parliament?,"PREFIX dbo: +PREFIX res: +PREFIX rdf: +SELECT ?uri +WHERE { + res:Palace_of_Westminster dbo:location ?uri . +}",qald-5 +Show me all English Gothic buildings in Kent.,"PREFIX dbo: +PREFIX res: +PREFIX rdf: +SELECT ?uri +WHERE { + ?uri rdf:type dbo:Building . + ?uri dbo:architecturalStyle res:English_Gothic_architecture . + ?uri dbo:location res:Kent . +}",qald-5 +Who was the pope that founded the Vatican Television?,"PREFIX dbo: +PREFIX res: +PREFIX rdf: +SELECT ?uri +WHERE { + ?uri rdf:type dbo:Pope . + res:Vatican_Television_Center dbo:foundedBy ?uri . +}",qald-5 +What airlines are part of the SkyTeam alliance?,"PREFIX res: +PREFIX dbp: +PREFIX dbo: +PREFIX rdf: +SELECT DISTINCT ?uri +WHERE { + ?uri rdf:type dbo:Airline . + { ?uri dbp:alliance res:SkyTeam . } + UNION + { ?uri dbo:Alliance res:SkyTeam . } +}",qald-5 +"What is the total population of Melbourne, Florida?","PREFIX dbo: +SELECT ?uri +WHERE { + dbo:populationTotal ?uri . +}",qald-5 +Which airports does Air China serve?,"PREFIX res: +PREFIX dbo: +SELECT DISTINCT ?uri +WHERE { + res:Air_China dbo:targetAirport ?uri . +}",qald-5 +In which year was Rachel Stevens born?,"PREFIX res: +PREFIX dbo: +SELECT DISTINCT ?uri +WHERE { + res:Rachel_Stevens dbo:birthYear ?uri . +}",qald-5 +Where was JFK assassinated?,"PREFIX res: +PREFIX dbo: +SELECT DISTINCT ?uri +WHERE { + res:John_F._Kennedy dbo:deathPlace ?uri . +}",qald-5 +How many politicians graduated from Columbia University?,"PREFIX res: +PREFIX dbo: +SELECT DISTINCT COUNT(?uri) +WHERE { + ?uri dbo:profession res:Politician . + ?uri dbo:almaMater res:Columbia_University . +}",qald-5 +Which scientist is known for the Manhattan Project and the Nobel Peace Prize?,"PREFIX res: +PREFIX dbo: +PREFIX rdf: +SELECT DISTINCT ?uri +WHERE { + ?uri dbo:knownFor res:Manhattan_Project . + ?uri rdf:type dbo:Scientist . + ?uri dbo:knownFor res:Nobel_Peace_Prize . +}",qald-5 +What is the highest volcano in Africa?,"PREFIX dbo: +PREFIX res: +PREFIX rdf: +PREFIX yago: +SELECT DISTINCT ?uri +WHERE { + ?uri rdf:type dbo:Volcano . + ?uri dbo:locatedInArea ?area . + ?area rdf:type yago:AfricanCountries . + ?uri dbo:elevation ?elevation . +} +ORDER BY DESC(?elevation) +OFFSET 0 LIMIT 1",qald-5 +Which beer originated in Ireland?,"PREFIX res: +PREFIX dbp: +SELECT DISTINCT ?uri +WHERE { + ?uri dbp:type res:Beer . + ?uri dbp:origin ""Ireland""@en . +}",qald-5 +What are the specialities of the UNC Health Care?,"PREFIX dbo: +PREFIX res: +PREFIX dbp: +PREFIX rdf: +SELECT DISTINCT ?uri +WHERE { + res:UNC_Health_Care dbp:speciality ?uri . +}",qald-5 +Who is the owner of Facebook?,"PREFIX dbo: +PREFIX res: +SELECT DISTINCT ?uri +WHERE { + res:Facebook dbo:foundedBy ?uri . +}",qald-5 +From which region is the Melon de Bourgogne?,"PREFIX res: +PREFIX dbo: +SELECT DISTINCT ?uri +WHERE { + res:Melon_de_Bourgogne dbo:wineRegion ?uri . +}",qald-5 +Who was influenced by Socrates?,"PREFIX res: +PREFIX dbo: +SELECT DISTINCT ?uri +WHERE { + ?uri dbo:influencedBy res:Socrates . +}",qald-5 +Who was president of Pakistan in 1978?,"PREFIX res: +PREFIX dbp: +SELECT DISTINCT ?uri +WHERE { + ?uri dbp:title res:President_of_Pakistan . + ?uri dbp:years 1978 . +}",qald-5 +Give me English actors starring in Lovesick.,"PREFIX res: +PREFIX dbo: +PREFIX yago: +SELECT DISTINCT ?uri +WHERE { + res:Lovesick dbo:starring ?uri . + { ?uri dbo:birthPlace res:England . } + UNION + { ?uri rdf:type yago:EnglishFilmActors . } +}",qald-5 +Give me all types of eating disorders.,"PREFIX yago: +PREFIX rdf: +SELECT DISTINCT ?uri +WHERE { + ?uri rdf:type yago:EatingDisorders . +}",qald-5 +Who was married to president Chirac?,"PREFIX dbo: +PREFIX res: +SELECT DISTINCT ?uri +WHERE { + res:Jacques_Chirac dbo:spouse ?uri . +}",qald-5 +What is the largest metropolitan area in Washington state?,"PREFIX res: +PREFIX dbp: +SELECT DISTINCT ?uri +WHERE { + dbp:largestmetro ?uri . +}",qald-5 +Where in France is sparkling wine produced?,"PREFIX res: +PREFIX dbo: +SELECT DISTINCT ?uri +WHERE { + ?uri dbo:wineProduced res:Sparkling_wine . + ?uri dbo:location res:France . +}",qald-5 +Where did Hillel Slovak die?,"PREFIX res: +PREFIX dbo: +SELECT DISTINCT ?uri +WHERE { + res:Hillel_Slovak dbo:deathPlace ?uri . +}",qald-5 +What is the timezone in San Pedro de Atacama?,"PREFIX res: +PREFIX dbo: +SELECT DISTINCT ?uri +WHERE { + res:San_Pedro_de_Atacama dbo:timezone ?uri . +}",qald-5 +In which city does the Chile Route 68 end?,"PREFIX res: +PREFIX dbo: +SELECT DISTINCT ?uri +WHERE { + res:Chile_Route_68 dbo:routeEnd ?uri . +}",qald-5 +Who was vice president under the president who authorized atomic weapons against Japan during World War II?,"PREFIX dbo: +PREFIX rdf: +SELECT DISTINCT ?uri +WHERE { + ?x text:""authorized"" text:""atomic weapons against Japan"" . + ?x dbo:vicePresident ?uri . +}",qald-5 +In which town was the assassin of Martin Luther King born?,"PREFIX dbo: +PREFIX dbp: +PREFIX res: +SELECT DISTINCT ?uri +WHERE { + res:Martin_Luther_King,_Jr. text:""assassin"" ?x . + ?x dbo:birthPlace ?uri . + ?uri dbp:districtType ""Township""@en . +}",qald-5 +Which anti-apartheid activist was born in Mvezo?,"PREFIX dbo: +PREFIX res: +PREFIX rdf: +SELECT DISTINCT ?uri +WHERE { + ?uri rdf:type text:""anti-apartheid activist"" . + ?uri dbo:birthPlace res:Mvezo . +}",qald-5 +How many Golden Globe awards did the daughter of Henry Fonda win?,"PREFIX dbo: +PREFIX res: +SELECT ?n +WHERE { + ?uri dbo:parent res:Henry_Fonda . + ?uri text:""number of Golden Globe awards"" ?n . +}",qald-5 +How old was Steve Jobs' sister when she first met him?,"PREFIX dbo: +PREFIX res: +SELECT ?n +WHERE { + res:Steve_Jobs dbo:relative ?uri . + ?uri text:""first met him when she was"" ?n . +}",qald-5 +Which building owned by the Bank of America was featured in the TV series MegaStructures?,"PREFIX dbo: +PREFIX res: +PREFIX rdf: +SELECT ?uri +WHERE { + ?uri rdf:type dbo:Building. + ?uri dbo:owner res:Bank_of_America . + ?uri text:""featured in"" text:""MegaStructures"" . +}",qald-5 +List all the battles commanded by the lover of Cleopatra.,"PREFIX dbo: +PREFIX res: +SELECT DISTINCT ?uri +WHERE { + ?x text:""lover"" text:""Cleopatra"". + ?uri dbo:commander ?x . +}",qald-5 +Gaborone is the capital of which country member of the African Union?,"PREFIX dbo: +PREFIX res: +SELECT DISTINCT ?uri +WHERE { + ?uri text:""member of"" text:""African Union"" . + ?uri dbo:capital res:Gaborone . +}",qald-5 +When was the composer of the opera Madame Butterfly born?,"PREFIX dbo: +PREFIX res: +SELECT DISTINCT ?date +WHERE { + res:Madama_Butterfly text:""composer"" ?x . + ?x dbo:birthDate ?date . +}",qald-5 +How old is James Bond in the latest Bond book by William Boyd?,"PREFIX dbo: +PREFIX res: +SELECT DISTINCT ?uri +WHERE { + res:James_Bond dbo:lastAppearance ?x . + ?x dbo:author . + ?x text:""age of Bond"" ?n . +}",qald-5 +What eating disorder is characterized by an appetite for substances such as clay and sand?,"PREFIX rdf: +PREFIX yago: +SELECT ?uri WHERE +{ + ?uri rdf:type yago:EatingDisorders . + ?uri text:""characterized by"" ""appetite for clay and sand"" . +}",qald-5 +What is the native city of Hollywood's highest-paid actress?,"PREFIX dbo: +PREFIX res: +PREFIX rdf: +SELECT DISTINCT ?uri +WHERE { + ?x text:""is"" text:""Hollywood's highest-paid actress"" . + ?x dbo:birthPlace ?uri . + ?x rdf:type dbo:City . +}",qald-5 +In which city does the former main presenter of the Xposé girls live?,"PREFIX dbo: +PREFIX res: +SELECT DISTINCT ?uri +WHERE { + ?x text:""is"" text:""former presenter of the Xposé girls"" . + ?x dbo:residence ?uri .",qald-5 +Who is the front man of the band that wrote Coffee & TV?,"PREFIX dbo: +SELECT DISTINCT ?uri +WHERE { + dbo:musicalArtist ?x . + ?x dbo:bandMember ?uri . + ?uri text:""is"" text:""frontman"" . +}",qald-5 +Which Chinese-speaking country is a former Portguese colony?,"PREFIX dbo: +PREFIX res: +SELECT DISTINCT ?uri +WHERE { + res:Chinese_language dbo:spokenIn ?uri . + ?uri text:""is"" text:""former Portuguese colony"" . +}",qald-5 +What is the largest city in the county in which Faulkner spent most of his life?,"PREFIX dbo: +PREFIX res: +SELECT DISTINCT ?uri +WHERE { + res:William_Faulkner text:""spent most of his life in"" ?x . + ?x dbo:largestCity ?uri . +}",qald-5 +"In which year did the Hungarian-American actor called ""The King of Horror"" make his first film?","PREFIX dbo: +SELECT DISTINCT ?year +WHERE { + ?x rdf:type dbo:Actor . + ?x dbo:alias ""The King Of Horror"" . + ?x text:""made his first movie in"" ?year .",qald-5 +Under which pseudonym did Charles Dickens publish some of his books?,"PREFIX dbo: +PREFIX res: +SELECT DISTINCT ?s +WHERE { + ?x dbo:author res:Charles_Dickens . + ?x text:""published under pseudonyn"" ?s . +}",qald-5 +A landmark of which city is the home of the Mona Lisa?,"PREFIX dbo: +PREFIX res: +SELECT DISTINCT ?uri +WHERE { + res:Mona_Lisa dbo:museum ?x . + ?x text:""landmark in"" ?uri . +}",qald-5 +Give me all ESA astronauts.,"PREFIX rdf: +PREFIX dbo: +PREFIX res: +SELECT DISTINCT ?uri +WHERE { + ?uri rdf:type dbo:Astronaut . + ?uri dbo:type res:European_Space_Agency . +}",qald-5 +Give me all Swedish holidays.,"PREFIX rdf: +PREFIX dbo: +PREFIX res: +SELECT DISTINCT ?uri +WHERE { + ?uri rdf:type dbo:Holiday . + ?uri dbo:country res:Sweden . +}",qald-5 +Who is the youngest Pulitzer Prize winner?,"PREFIX rdf: +PREFIX dbo: +PREFIX res: +SELECT DISTINCT ?uri +WHERE { + ?uri dbo:award res:Pulitzer_Prize . + ?uri dbo:birthDate ?d . +} +ORDER BY DESC(?d) +OFFSET 0 LIMIT 1",qald-5 +Which animals are critically endangered?,"PREFIX dbo: +PREFIX rdf: +SELECT DISTINCT ?uri +WHERE { + ?uri rdf:type dbo:Animal . + ?uri dbo:conservationStatus 'CR' . +}",qald-5 +Which soccer players were born on Malta?,"PREFIX dbo: +PREFIX res: +PREFIX rdf: +SELECT DISTINCT ?uri +WHERE { + ?uri rdf:type dbo:SoccerPlayer . + ?uri dbo:birthPlace res:Malta . +}",qald-5 +Did Arnold Schwarzenegger attend a university?,"PREFIX dbo: +PREFIX res: +PREFIX rdf: +ASK +WHERE { + res:Arnold_Schwarzenegger dbo:almaMater ?x . + ?x rdf:type dbo:University . +}",qald-5 +Which programming languages were influenced by Perl?,"PREFIX dbo: +PREFIX res: +PREFIX rdf: +SELECT DISTINCT ?uri +WHERE { + ?uri rdf:type dbo:ProgrammingLanguage . + { ?uri dbo:influencedBy res:Perl . } + UNION + { res:Perl dbo:influenced ?uri . } +}",qald-5 +Is Barack Obama a democrat?,"PREFIX dbo: +PREFIX res: +ASK +WHERE { + res:Barack_Obama dbo:party . +}",qald-5 +How many children does Eddie Murphy have?,"PREFIX dbp: +PREFIX res: +SELECT DISTINCT ?n +WHERE { + res:Eddie_Murphy dbp:children ?n . +}",qald-5 +Who is the oldest child of Meryl Streep?,"PREFIX dbo: +PREFIX res: +SELECT DISTINCT ?uri +WHERE { + res:Meryl_Streep dbo:child ?uri . + ?uri dbo:birthDate ?d . +} +ORDER BY ASC(?d) +OFFSET 0 LIMIT 1",qald-5 +Who killed John Lennon?,"PREFIX rdf: +PREFIX dbo: +PREFIX res: +PREFIX dbp: +SELECT DISTINCT ?uri +WHERE { + ?uri rdf:type dbo:Person. + ?uri dbp:conviction res:Death_of_John_Lennon. +}",qald-5 +Which frequent flyer program has the most airlines?,"PREFIX dbo: +PREFIX dbp: +PREFIX rdf: +PREFIX yago: +SELECT ?uri +WHERE { + ?airline rdf:type dbo:Airline. + ?airline dbp:frequentFlyer ?uri. + ?uri rdf:type yago:FrequentFlyerPrograms. + +} +ORDER BY DESC(COUNT(DISTINCT ?airline)) +OFFSET 0 LIMIT 1",qald-5 +In which city is Air China headquartered?,"PREFIX res: +PREFIX yago: +PREFIX dbo: +SELECT DISTINCT ?uri +WHERE { + res:Air_China dbo:headquarter ?uri . + ?uri rdf:type yago:City108524735 . +}",qald-5 +Which artists were born on the same date as Rachel Stevens?,"PREFIX res: +PREFIX dbp: +PREFIX dbo: +SELECT DISTINCT ?uri +WHERE { + ?uri rdf:type dbo:Artist. + res:Rachel_Stevens dbp:dateOfBirth ?date . + ?uri dbp:dateOfBirth ?date . +}",qald-5 +How many scientists graduated from an Ivy League university?,"PREFIX res: +PREFIX dbo: +SELECT DISTINCT count (?uri) +WHERE { + ?uri rdf:type dbo:Scientist . + ?uri dbo:almaMater ?university . + ?university dbo:affiliation res:Ivy_League . +}",qald-5 +Which types of grapes grow in Oregon?,"PREFIX res: +PREFIX dbo: +SELECT DISTINCT ?uri +WHERE { + res:Oregon_wine dbo:growingGrape ?uri . +}",qald-5 +Who is starring in Spanish movies produced by Benicio del Toro?,"PREFIX res: +PREFIX dbo: +PREFIX rdf: +PREFIX dbp: +SELECT DISTINCT ?uri +WHERE { + ?film rdf:type dbo:Film . + ?film dbo:country res:Spain . + ?film dbo:producer res:Benicio_del_Toro . + ?film dbo:starring ?uri . + ?uri rdf:type dbo:Person . +}",qald-5 +Who is the manager of Real Madrid?,"PREFIX dbo: +SELECT DISTINCT ?uri +WHERE { + dbo:manager ?uri . +}",qald-5 +Give me the currency of China.,"PREFIX res: +PREFIX dbo: +SELECT DISTINCT ?uri +WHERE { + res:China dbo:currency ?uri . +}",qald-5 +Which movies starring Brad Pitt were directed by Guy Ritchie?,"PREFIX res: +PREFIX dbo: +PREFIX rdf: +SELECT DISTINCT ?uri +WHERE { + ?uri rdf:type dbo:Film . + ?uri dbo:starring res:Brad_Pitt . + ?uri dbo:director res:Guy_Ritchie . +}",qald-5 +How many companies were founded by the founder of Facebook?,"PREFIX dbo: +PREFIX res: +SELECT DISTINCT COUNT(?c) +WHERE { + res:Facebook dbo:foundedBy ?uri . + ?c dbo:foundedBy ?uri . +}",qald-5 +How many companies were founded in the same year as Google?,"PREFIX dbo: +PREFIX res: +SELECT COUNT(DISTINCT ?c) +WHERE { + ?c rdf:type dbo:Company . + ?c dbo:foundingYear ?year . + res:Google dbo:foundingYear ?year . +}",qald-5 +Which subsidiary of Lufthansa serves both Dortmund and Berlin Tegel?,"PREFIX res: +PREFIX dbo: +SELECT DISTINCT ?uri +WHERE { + res:Lufthansa dbo:subsidiary ?uri . + ?uri dbo:targetAirport res:Dortmund_Airport . + ?uri dbo:targetAirport res:Berlin_Tegel_Airport . +}",qald-5 +How many airlines are members of the Star Alliance?,"PREFIX dbo: +PREFIX dbp: +PREFIX res: +PREFIX rdf: +SELECT COUNT(DISTINCT ?uri) +WHERE { + ?uri rdf:type dbo:Airline . + ?uri dbp:alliance res:Star_Alliance . +}",qald-5 +Give me all spacecrafts that flew to Mars.,"PREFIX dbo: +PREFIX dbp: +PREFIX res: +SELECT DISTINCT ?uri +WHERE { + ?uri rdf:type dbo:Spacecraft . + ?uri dbp:planet res:Mars . +}",qald-5 +Which musician wrote the most books?,"PREFIX dbo: +PREFIX res: +PREFIX rdf: +SELECT DISTINCT ?uri +WHERE { + ?uri dbo:occupation res:Musician . + ?x dbo:author ?uri . + ?x rdf:type dbo:Book . +} +ORDER BY DESC(COUNT(?x)) +OFFSET 0 LIMIT 1",qald-5 +Show me everyone who was born on Halloween.,"PREFIX dbp: +PREFIX res: +PREFIX dbo: +PREFIX rdf: +SELECT DISTINCT ?uri +WHERE { + ?uri rdf:type dbo:Person . + { ?uri dbo:birthDate ?date . } + UNION + { ?uri dbp:birthDate ?date . } + res:Halloween dbp:date ?date . +}",qald-5 +Give me all Swiss non-profit organizations.,"PREFIX dbo: +PREFIX res: +SELECT DISTINCT ?uri +WHERE { + ?uri dbo:type res:Nonprofit_organization . + { ?uri dbo:locationCountry res:Switzerland . } + UNION + { ?uri dbo:location ?x . + ?x dbo:country res:Switzerland . } +}",qald-5 +In which country is Mecca located?,"PREFIX res: +PREFIX dbo: +SELECT DISTINCT ?uri +WHERE { + res:Mecca dbo:country ?uri . +}",qald-5 +What is the net income of Apple?,"PREFIX dbo: +SELECT DISTINCT ?ni +WHERE { + dbo:netIncome ?ni . +}",qald-5 +What does the abbreviation FIFA stand for?,"PREFIX res: +PREFIX dbp: +SELECT DISTINCT ?name +WHERE { + res:FIFA dbp:name ?name . +}",qald-5 +When did the Ming dynasty dissolve?,"PREFIX res: +PREFIX dbo: +SELECT DISTINCT ?date +WHERE { + res:Ming_dynasty dbo:dissolutionDate ?date . +}",qald-5 +Which museum in New York has the most visitors?,"PREFIX res: +PREFIX dbo: +PREFIX rdf: +SELECT DISTINCT ?uri +WHERE { + ?uri rdf:type dbo:Museum . + ?uri dbo:location res:New_York_City . + ?uri dbo:numberOfVisitors ?num . +} +ORDER BY DESC(?num) +OFFSET 0 LIMIT 1",qald-5 +Is Lake Baikal bigger than the Great Bear Lake?,"PREFIX res: +PREFIX dbo: +ASK +WHERE { + res:Lake_Baikal dbo:areaTotal ?a1 . + res:Great_Bear_Lake dbo:areaTotal ?a2 . + FILTER (?a1 > ?a2) +}",qald-5 +Desserts from which country contain fish?,"PREFIX dbo: +PREFIX res: +SELECT DISTINCT ?uri +WHERE { + ?x dbo:type res:Dessert . + ?x dbo:origin ?uri . + ?x dbo:ingredient res:Fish . +}",qald-5 +What is the highest mountain in Italy?,"PREFIX dbo: +PREFIX res: +PREFIX rdf: +SELECT DISTINCT ?uri +WHERE { + ?uri rdf:type dbo:Mountain . + ?uri dbo:locatedInArea res:Italy . + ?uri dbo:elevation ?num . +} +ORDER BY DESC(?num) +OFFSET 0 LIMIT 1",qald-5 +Where did the architect of the Eiffel Tower study?,"PREFIX dbp: +PREFIX dbo: +PREFIX res: +SELECT DISTINCT ?uri +WHERE { + res:Eiffel_Tower dbo:architect ?x . + ?x dbp:almaMater ?uri . +}",qald-5 +Which Greek parties are pro-European?,"PREFIX dbo: +PREFIX res: +PREFIX rdf: +SELECT DISTINCT ?uri +WHERE { + ?uri rdf:type dbo:PoliticalParty . + ?uri dbo:country res:Greece . + ?uri dbo:ideology res:Pro-Europeanism . +}",qald-5 +What is the height difference between Mount Everest and K2?,"PREFIX dbo: +PREFIX res: +SELECT DISTINCT (?h1-?h2) +WHERE { + res:Mount_Everest dbo:elevation ?h1 . + res:K2 dbo:elevation ?h2 . +}",qald-5 +Who is the mayor of Rotterdam?,"PREFIX dbo: +PREFIX res: +SELECT DISTINCT ?uri +WHERE { + res:Rotterdam dbo:leaderName ?uri . +}",qald-5 +How high is the Yokohama Marine Tower?,"PREFIX dbo: +PREFIX res: +SELECT DISTINCT ?num +WHERE { + res:Yokohama_Marine_Tower dbo:height ?num . +}",qald-5 +Are Taiko a kind of Japanese musical instruments?,"PREFIX yago: +PREFIX res: +ASK +WHERE { + res:Taiko rdf:type yago:JapaneseMusicalInstruments . +}",qald-5 +How many ethnic groups live in Slovenia?,"PREFIX dbo: +PREFIX res: +SELECT COUNT(DISTINCT ?uri) +WHERE { + res:Slovenia dbo:ethnicGroup ?uri . +}",qald-5 +List the seven kings of Rome.,"PREFIX res: +PREFIX dbp: +SELECT DISTINCT ?uri +WHERE { + ?uri dbp:title res:King_of_Rome . +}",qald-5 +Who were the parents of Queen Victoria?,"PREFIX dbo: +PREFIX res: +SELECT DISTINCT ?uri +WHERE { + res:Queen_Victoria dbo:parent ?uri . +}",qald-5 +Who is the heaviest player of the Chicago Bulls?,"PREFIX dbo: +PREFIX dbp: +PREFIX res: +PREFIX rdf: +SELECT DISTINCT ?uri +WHERE { + ?uri rdf:type dbo:Person . + ?uri dbo:weight ?num . + { ?uri dbp:team res:Chicago_Bulls . } + UNION + { ?uri dbp:draftTeam res:Chicago_Bulls . } + UNION + { ?uri dbo:draftTeam res:Chicago_Bulls . } +} +ORDER BY DESC(?num) +OFFSET 0 LIMIT 1",qald-5 +Which volcanos in Japan erupted since 2000?,"PREFIX dbo: +PREFIX res: +PREFIX rdf: +SELECT DISTINCT ?uri +WHERE { + ?uri rdf:type dbo:Volcano . + ?uri dbo:locatedInArea res:Japan . + ?uri dbo:eruptionYear ?date . + FILTER (year(?date) >= 2000) +}",qald-5 +Who is the tallest basketball player?,"PREFIX dbo: +PREFIX res: +PREFIX rdf: +SELECT DISTINCT ?uri +WHERE { + ?uri rdf:type dbo:BasketballPlayer . + ?uri dbo:height ?num . +} +ORDER BY DESC(?num) +OFFSET 0 LIMIT 1",qald-5 +"Where was the ""Father of Singapore"" born?","PREFIX dbo: +SELECT DISTINCT ?uri +WHERE { + text:""Father of Singapore"" dbo:birthPlace ?uri . +}",qald-5 +Which Secretary of State was significantly involved in the United States' dominance of the Caribbean?,"PREFIX dbo: +PREFIX res: +SELECT DISTINCT ?uri +WHERE { + ?uri dbo:office ""United States Secretary of State"" . + ?uri text:""significiantly involved in"" text:""United States' dominance of the Caribbean"" . +}",qald-5 +Who is the architect of the tallest building in Japan?,"PREFIX dbo: +PREFIX res: +SELECT DISTINCT ?name +WHERE { + text:""tallest building in Japan"" dbo:architect ?uri . +}",qald-5 +What is the name of the Viennese newspaper founded by the creator of the croissant?,"PREFIX dbo: +PREFIX res: +SELECT DISTINCT ?name +WHERE { + res:Croissant dbo:creator ?x . + ?x text:""founder of"" ?name . +}",qald-5 +In which city where Charlie Chaplin's half brothers born?,"PREFIX dbo: +PREFIX res: +ASK +WHERE { + res:Charlie_Chaplin dbo:relative ?x . + ?x text:""half brother of"" ?res:Charlie_Chaplin . + ?x dbo:birthPlace ?y . + ?y text:""is a"" text:""city"" . +}",qald-5 +Which German mathematicians were members of the von Braun rocket group?,"PREFIX dbo: +PREFIX res: +SELECT DISTINCT ?uri ?abstract +WHERE { + ?uri dbo:field res:Mathematics . + ?uri dbo:birthPlace res:Germany . + ?uri text:""member of"" text:""von Braun rocket group"" . +}",qald-5 +Which writers converted to Islam?,"PREFIX dbo: +PREFIX res: +SELECT DISTINCT ?uri +WHERE { + ?uri rdf:type dbo:Writer . + ?uri text:""converted to"" text:""Islam"" . +}",qald-5 +Are there man-made lakes in Australia that are deeper than 100 meters?,"PREFIX dbo: +PREFIX res: +ASK +WHERE { + ?uri rdf:type dbo:Lake . + ?uri dbo:country res:Australia . + ?uri text:""is"" text:""man-made"" . + ?uri dbo:depth ?num . + FILTER(?num > 100.0) +}",qald-5 +Which movie by the Coen brothers stars John Turturro in the role of a New York City playwright?,"PREFIX dbo: +PREFIX res: +SELECT DISTINCT ?uri +WHERE { + ?uri rdf:type dbo:Film . + ?uri dbo:director res:Coen_brothers . + ?uri dbo:starring res:John_Turturro . + res:John_Turturro text:""role"" text:""New York City playwright"" . +}",qald-5 +Which of the volcanoes that erupted in 1550 is still active?,"PREFIX dbo: +PREFIX res: +SELECT DISTINCT ?uri +WHERE { + ?uri rdf:type dbo:Volcano . + ?uri dbo:eruptionYear ?y . + FILTER (year(?y) = 1550) + ?uri text:""is"" text:""active"" . +}",qald-5 +How much was spent on public works and utilities by the Town of Cary in 2011?,select sum(xsd:decimal(?amount)) from { ?obs qb:dataSet ls:town_of_cary_expenditures. ?obs lso:town_of_cary_expenditures-amount ?amount. ?obs lso:town_of_cary_expenditures-Class . ?obs lso:refYear ?year. filter(year(?year)=2011). },qald-6 +Which programs were done under the class of public works and utilities in the expenditure of the Town of Cary?,select ?program from { ?obs qb:dataSet ls:town_of_cary_expenditures. ?obs lso:town_of_cary_expenditures-Program ?program. ?obs lso:town_of_cary_expenditures-Class . },qald-6 +How much did the Town of Cary earn in 2009?,select sum(xsd:decimal(?amount)) from { ?obs qb:dataSet ls:town_of_cary_revenues. ?obs lso:refYear ?year. filter(year(?year)=2009). ?obs lso:town_of_cary_revenues-amount ?amount. },qald-6 +Which program earned the most for the Town of Cary?,select ?program from { ?obs qb:dataSet ls:town_of_cary_revenues. ?obs lso:town_of_cary_revenues-Program ?program. ?obs lso:town_of_cary_revenues-amount ?amount. } order by desc(sum(xsd:decimal(?amount))) limit 1,qald-6 +Which department of whiteacre spent the most in 2010?,select ?dep from { ?obs qb:dataSet ls:city-of-whiteacre-spending. ?obs lso:city-of-whiteacre-spending-to ?dep. ?obs lso:city-of-whiteacre-spending-amount ?amount. ?obs lso:refYear ?year. filter (year(?year)=2010). } order by desc(sum(xsd:decimal(?amount))) limit 1,qald-6 +How much does the general district court of Whiteacre spend for court appointed attorney fees a year?,select ?year sum(xsd:decimal(?amount)) as ?result from { ?obs qb:dataSet ls:city-of-whiteacre-spending. ?obs lso:city-of-whiteacre-spending-object . ?obs lso:city-of-whiteacre-spending-to . ?obs lso:city-of-whiteacre-spending-amount ?amount. ?obs lso:refYear ?year. } group by ?year,qald-6 +Which agencies in the Maldives have proposed expenditure amounts of more than 1 billion Maldivian rufiyaa in 2015?,select ?agency from { ?obs qb:dataSet ls:maldives_proposed_expenditure_2015. ?obs lso:maldives_proposed_expenditure_2015-Agency ?agency. ?obs lso:maldives_proposed_expenditure_2015-amount ?amount. filter(xsd:decimal(?amount)>1000000000). },qald-6 +What is the total aid to the Anti Corruption Commission in the Maldives in 2015?,select sum(xsd:decimal(?amount)) from { ?obs qb:dataSet ls:maldives_proposed_expenditure_2015. ?obs lso:maldives_proposed_expenditure_2015-Agency . ?obs lso:maldives_proposed_expenditure_2015-amount ?amount. },qald-6 +Which Ugandan district had the highest budget in 2014?,select ?district from { ?obs qb:dataSet ls:ministry_of_health. ?obs lso:ministry_of_health-District ?district. ?obs lso:ministry_of_health-amount ?amount. ?obs lso:refYear ?year. filter(year(?year)=2014). } order by desc(sum(xsd:decimal(?amount))) limit 1,qald-6 +What was the average Uganda health budget over all districts in 2014?,select avg(?sum) as ?sum { select ?district sum(xsd:decimal(?amount)) as ?sum from { ?obs qb:dataSet ls:ministry_of_health. ?obs lso:ministry_of_health-District ?district. ?obs lso:ministry_of_health-amount ?amount. ?obs lso:refYear ?year. filter(year(?year)=2014). } },qald-6 +What is the highest Newcastle city council payment for supplies and services?,"select max(xsd:decimal(?amount)) as ?sum from { ?obs qb:dataSet ls:newcastle-city-council-payments-over-500. ?obs lso:newcastle-city-council-payments-over-500-expenditure-category ""Supplies & Services"". ?obs lso:newcastle-city-council-payments-over-500-amount ?amount. }",qald-6 +What's are the 10 highest payments of the Newcastle city council?,select xsd:decimal(?amount) as ?amount from { ?obs qb:dataSet ls:newcastle-city-council-payments-over-500. ?obs lso:newcastle-city-council-payments-over-500-amount ?amount. } order by desc(xsd:decimal(?amount)) limit 10,qald-6 +How much did the Waltham Forest Council spend on Environment and Regeneration?,select sum(xsd:decimal(?amount)) as ?amount from { ?obs qb:dataSet ls:uk-local-walthamforest. ?obs lso:uk-local-walthamforest-ExpenseArea . ?obs lso:uk-local-walthamforest-amount ?amount. },qald-6 +"On the Waltham Forest Council, how much money was given to Synarbor Global Solutions Ltd?",select sum(xsd:decimal(?amount)) as ?amount from { ?obs qb:dataSet ls:uk-local-walthamforest. ?obs lso:uk-local-walthamforest-to . ?obs lso:uk-local-walthamforest-amount ?amount. },qald-6 +How much money give Cheshire West and Chester on Adult Social Care and Health?,"select sum(xsd:decimal(?amount)) as ?amount from { ?obs qb:dataSet ls:cheshire_west_and_chester_april_2013. ?obs lso:cheshire_west_and_chester_april_2013-service-label ""Adult Social Care & Health"". ?obs lso:cheshire_west_and_chester_april_2013-amount ?amount. }",qald-6 +What are the top 5 narratives in Cheshire West and Chester?,select distinct(?narrative) from { ?obs qb:dataSet ls:cheshire_west_and_chester_april_2013. ?obs lso:cheshire_west_and_chester_april_2013-narrative ?narrative. ?obs lso:cheshire_west_and_chester_april_2013-amount ?amount. } order by desc(sum(xsd:decimal(?amount))) limit 5,qald-6 +How much did the City of Redacre expend from the insurance fund?,select sum(xsd:decimal(?amount)) as ?amount from { ?obs qb:dataSet ls:city-of-redacre-spending. ?obs lso:city-of-redacre-spending-from . ?obs lso:city-of-redacre-spending-amount ?amount. },qald-6 +How much receives each division in the City of Redacre?,select ?division sum(xsd:decimal(?amount)) as ?amount from { ?obs qb:dataSet ls:city-of-redacre-spending. ?obs lso:city-of-redacre-spending-to ?division. ?obs lso:city-of-redacre-spending-amount ?amount. },qald-6 +What is the total Wandsworth spending from all departments?,select sum(xsd:decimal(?amount)) as ?amount from { ?obs qb:dataSet ls:wandsworthspending_2013. ?obs lso:wandsworthspending_2013-amount ?amount. },qald-6 +How much money Wandsworth spends on the criminal records bureau?,"select sum(xsd:decimal(?amount)) as ?amount from { ?obs qb:dataSet ls:wandsworthspending_2013. ?obs lso:wandsworthspending_2013-DetailedExpenses ""CRIMINAL RECORDS BUREAU"". ?obs lso:wandsworthspending_2013-amount ?amount. }",qald-6 +Top 10 IW Council Spending expense types?,select ?et from { ?obs qb:dataSet ls:iw-council-spending-2012-13-test. ?obs lso:iw-council-spending-2012-13-test-expensestype ?et. ?obs lso:iw-council-spending-2012-13-test-amount ?amount. } order by desc(sum(xsd:decimal(?amount))) limit 10,qald-6 +Which IW Council service area has the highest spending?,select ?area from { ?obs qb:dataSet ls:iw-council-spending-2012-13-test. ?obs lso:iw-council-spending-2012-13-test-servicearea ?area. ?obs lso:iw-council-spending-2012-13-test-amount ?amount. } order by desc(sum(xsd:decimal(?amount))) limit 1,qald-6 +Which departments of the city of Springfield had a higher budget in 2005 then in 2006?,select ?dep { select ?dep sum(xsd:decimal(?amount5)) as ?sum5 sum(xsd:decimal(?amount6)) as ?sum6 from { ?obs qb:dataSet ls:city-of-springfield-budget. ?obs lso:city-of-springfield-budget-to ?dep. { ?obs lso:city-of-springfield-budget-amount ?amount5. ?obs lso:refYear ?year5. filter(year(?year5)=2005). } union { ?obs lso:city-of-springfield-budget-amount ?amount6. ?obs lso:refYear ?year6. filter(year(?year6)=2006). } } } group by ?dep having(?sum5>?sum6),qald-6 +What is the highest single budget amount in the city of Springfield for public works?,select max(xsd:decimal(?amount)) from { ?obs qb:dataSet ls:city-of-springfield-budget. ?obs lso:city-of-springfield-budget-deptgroup . ?obs lso:city-of-springfield-budget-amount ?amount. },qald-6 +Which proportion went to Fullerton of the amount spent on Californian cities in 2010?,"select ?sum_fullerton/?sum_all { select sum(xsd:decimal(?fullerton)) as ?sum_fullerton sum(xsd:decimal(?all)) as ?sum_all from { ?obs qb:dataSet ls:pscs_ca_cities. { ?obs lso:pscs_ca_cities-gov-full-name ""Fullerton"". ?obs lso:pscs_ca_cities-amount ?fullerton. } union { ?obs lso:pscs_ca_cities-amount ?all. } } }",qald-6 +How many categories are there for californian cities?,select count(distinct(?category)) from { ?obs qb:dataSet ls:pscs_ca_cities. ?obs lso:pscs_ca_cities-caption ?category. },qald-6 +What was the highest Washington DC employee salary in 2011?,select max(xsd:decimal(?amount)) from { ?obs qb:dataSet ls:dc-city-salaries. ?obs lso:dc-city-salaries-amount ?amount. ?obs lso:refYear ?year. filter(year(?year)=2011). } ,qald-6 +What is the average salary of an Engineering Technician in Washington DC?,"select avg(xsd:decimal(?amount)) from { ?obs qb:dataSet ls:dc-city-salaries. ?obs lso:dc-city-salaries-amount ?amount. ?obs lso:dc-city-salaries-position ""Engineering Technician"". }",qald-6 +What was the amount recieved by King George's Field from Big Lottery Fund grants?,select xsd:decimal(?amount) from { ?obs qb:dataSet ls:big-lottery-fund-grants. ?obs lso:big-lottery-fund-grants-amount ?amount. ?obs lso:big-lottery-fund-grants-to . } ,qald-6 +Over which programmes more than 1000000 pound but less than 10000000 pound in grants were given by the Big Lottery Fund?,select ?programme from { ?obs qb:dataSet ls:big-lottery-fund-grants. ?obs lso:big-lottery-fund-grants-programme-name ?programme. ?obs lso:big-lottery-fund-grants-amount ?amount. } group by ?programme having (sum(xsd:decimal(?amount))>1000000&&sum(xsd:decimal(?amount))<10000000),qald-6 +On which service areas of Gloucestershire was spent more than 1000000 pound in total?,select ?area from { ?obs qb:dataSet ls:uk-local-gloucestershirev1. ?obs lso:uk-local-gloucestershirev1-service-area ?area. ?obs lso:uk-local-gloucestershirev1-amount ?amount. } group by ?area having (sum(xsd:decimal(?amount))>1000000),qald-6 +How much money did the Gloucestershire Police Authority receive?,select sum(xsd:decimal(?amount)) from { ?obs qb:dataSet ls:uk-local-gloucestershirev1. ?obs lso:uk-local-gloucestershirev1-to . ?obs lso:uk-local-gloucestershirev1-amount ?amount. },qald-6 +How much did the department for education pay for extra education services in Scotland?,select sum(xsd:decimal(?amount)) from { ?obs qb:dataSet ls:ukgov-finances-cra. ?obs lso:ukgov-finances-cra-region . ?obs lso:ukgov-finances-cra-cofog2 . ?obs lso:ukgov-finances-cra-from . ?obs lso:ukgov-finances-cra-amount ?amount. },qald-6 +What HTM functions are paid from the department for education the UK?,select distinct(?function) from { ?obs qb:dataSet ls:ukgov-finances-cra. ?obs lso:ukgov-finances-cra-hmt1 ?function. ?obs lso:ukgov-finances-cra-from . },qald-6 +What are the activity statuses of basic health care in Urozgan?,select distinct(?status) from { ?obs qb:dataSet ls:iati_cordaid_af. ?obs lso:iati_cordaid_af-Unique . ?obs lso:iati_cordaid_af-Activity_Status ?status. },qald-6 +What is the total amount of basic nutrition aid by Cordaid in Afghanistan?,select sum(xsd:decimal(?amount)) from { ?obs qb:dataSet ls:iati_cordaid_af. ?obs lso:iati_cordaid_af-Sector . ?obs lso:iati_cordaid_af-amount ?amount. },qald-6 +What was the total budget on Technical Services in City of Toronto in 2009?,"select sum(xsd:decimal(?amount)) from { ?obs qb:dataSet ls:ca-local-toronto. ?obs lso:ca-local-toronto-division ""Technical Services"". ?obs lso:ca-local-toronto-amount ?amount. ?obs lso:refYear ?year. filter(year(?year)=2009). }",qald-6 +"Which divisions of the City of Toronto received more than 10000000 canadian dollar in 2010? +",select ?division from { ?obs qb:dataSet ls:ca-local-toronto. ?obs lso:ca-local-toronto-division ?division. ?obs lso:ca-local-toronto-amount ?amount. ?obs lso:refYear ?year. filter(year(?year)=2010). } group by ?division having (sum(xsd:decimal(?amount)) > 10000000),qald-6 +How much did the Sightsavers charity in Ireland pay in total?,select sum(xsd:decimal(?amount)) as ?sum from { ?obs qb:dataSet ls:ie_charity_exp. ?obs lso:ie_charity_exp-Charity . ?obs lso:ie_charity_exp-amount ?amount. },qald-6 +How much money does the Special Olympics Ireland charity spend on generating funds?,select sum(xsd:decimal(?amount)) as ?sum from { ?obs qb:dataSet ls:ie_charity_exp. ?obs lso:ie_charity_exp-Charity . ?obs lso:ie_charity_exp-Level3 . ?obs lso:ie_charity_exp-amount ?amount. },qald-6 +What is the frontex budget for administrative expenditure?,select sum(xsd:decimal(?amount)) as ?sum from { ?obs qb:dataSet ls:frontex. ?obs lso:frontex-Heading . ?obs lso:frontex-amount ?amount. },qald-6 +What is the average frontex budget chapter budget?,select avg(?sum) { select ?chapter sum(xsd:decimal(?amount)) as ?sum from { ?obs qb:dataSet ls:frontex. ?obs lso:frontex-Chapter ?chapter. ?obs lso:frontex-amount ?amount. } },qald-6 +What was the largest amount spent on housing and building in the Dublin City Council Expenditure Budget of 2013?,select max(xsd:decimal(?amount)) as ?sum from { ?obs qb:dataSet ls:dcc_exp_budget2013. ?obs lso:dcc_exp_budget2013-Division . ?obs lso:dcc_exp_budget2013-amount ?amount. },qald-6 +How much was the budget amount of the Dublin City Council in 2013?,select sum(xsd:decimal(?amount)) as ?sum from { ?obs qb:dataSet ls:dcc_exp_budget2013. ?obs lso:dcc_exp_budget2013-amount ?amount. },qald-6 +"How much financial crisis aid did Austria receive in Guaranetees? +","select sum(xsd:decimal(?amount)) as ?sum from { ?obs qb:dataSet ls:financial_aid. ?obs lso:financial_aid-amount ?amount. ?obs lso:financial_aid-aid ""Guarantees (1)"". ?obs lso:financial_aid-country . }",qald-6 +How much financial crisis aid did Belgium receive in the year of 2011?,select sum(xsd:decimal(?amount)) as ?sum from { ?obs qb:dataSet ls:financial_aid. ?obs lso:financial_aid-amount ?amount. ?obs lso:financial_aid-country . ?obs lso:refYear ?year. filter(year(?year)=2011). },qald-6 +How much was charity spending was expended for charitable activities in Bangladesh?,select sum(xsd:decimal(?amount)) as ?sum from { ?obs qb:dataSet ls:concern2012. ?obs lso:concern2012-Level1 . ?obs lso:concern2012-Level3 . ?obs lso:concern2012-Level4 . ?obs lso:concern2012-amount ?amount. },qald-6 +What is the total cost of generating funds for public appeals events?,select sum(xsd:decimal(?amount)) as ?sum from { ?obs qb:dataSet ls:concern2012. ?obs lso:concern2012-Level3 . ?obs lso:concern2012-Level4 . ?obs lso:concern2012-amount ?amount. },qald-6 +What is the amount given by the Department of Health to VWR International LLC?,select sum(xsd:decimal(?amount)) as ?sum from { ?obs qb:dataSet ls:dc-vendors-contractors. ?obs lso:dc-vendors-contractors-from . ?obs lso:dc-vendors-contractors-to . ?obs lso:dc-vendors-contractors-amount ?amount. },qald-6 +How much was given in total to the Riverside Publishing vendor for educational purposes.,select sum(xsd:decimal(?amount)) as ?sum from { ?obs qb:dataSet ls:dc-vendors-contractors. ?obs lso:dc-vendors-contractors-objecttitle . ?obs lso:dc-vendors-contractors-to . ?obs lso:dc-vendors-contractors-amount ?amount. },qald-6 +What was the highest amount for materials and supplies used in Cameroon in 2008?,select max(xsd:decimal(?amount)) as ?sum from { ?obs qb:dataSet ls:cameroon_visualisation. ?obs lso:cameroon_visualisation-head_account . ?obs lso:cameroon_visualisation-amount ?amount. ?obs lso:refYear ?year. filter(year(?year)=2008). },qald-6 +How much is the total expenditure of the Tigerne Council in Cameroon?,"select sum(xsd:decimal(?amount)) as ?sum from { ?obs qb:dataSet ls:cameroon_visualisation. ?obs lso:cameroon_visualisation-revenue_expenditure ""EXPENDITURE"". ?obs lso:cameroon_visualisation-council_name . ?obs lso:cameroon_visualisation-amount ?amount. }",qald-6 +When did London get Nominet Trust funding?,select distinct(?date) from { ?obs qb:dataSet ls:nominettrust_funding. ?obs lso:nominettrust_funding-region . ?obs lso:refDate ?date. },qald-6 +When did the Web in Society programme get Nominet Trust funding?,select distinct(?date) from { ?obs qb:dataSet ls:nominettrust_funding. ?obs lso:nominettrust_funding-programme . ?obs lso:refDate ?date. },qald-6 +How much did Armenia spent in 2009 on general public services?,select sum(xsd:decimal(?amount)) as ?sum from { ?obs qb:dataSet ls:618ac3ec98384f44a9ef142356ce476d. ?obs lso:618ac3ec98384f44a9ef142356ce476d-cofog1 . ?obs lso:618ac3ec98384f44a9ef142356ce476d-amount ?amount. ?obs lso:refYear ?year. filter(year(?year)=2009). },qald-6 +What are the budgetary classifications of running expenses in Armenia?,"select distinct(?type) from { ?obs qb:dataSet ls:618ac3ec98384f44a9ef142356ce476d. ?obs lso:618ac3ec98384f44a9ef142356ce476d-type ?type. ?obs lso:618ac3ec98384f44a9ef142356ce476d-economiclevel1 ""Running expenses"". }",qald-6 +"In Nigerias proposed budget of 2013, how much is assigned to total overhead costs?",select sum(xsd:decimal(?amount)) as ?sum from { ?obs qb:dataSet ls:propbudg13. ?obs lso:propbudg13-to . ?obs lso:propbudg13-amount ?amount. },qald-6 +How much did Nigernian Ministry of Petroleum Resources receive from ministries and department agencies?,select sum(xsd:decimal(?amount)) as ?sum from { ?obs qb:dataSet ls:propbudg13. ?obs lso:propbudg13-from . ?obs lso:propbudg13-recipient . ?obs lso:propbudg13-amount ?amount. },qald-6 +How much did the New York City Council Members give to the Gun Hill Basketball Association?,select sum(xsd:decimal(?amount)) as ?sum from { ?obs qb:dataSet ls:nyc-council-member-items. ?obs lso:nyc-council-member-items-to . ?obs lso:nyc-council-member-items-amount ?amount. },qald-6 +"In how many years did Dickens give money to American Performing Arts Collaborative, Inc.?",select count(distinct(year(?year))) as ?years from { ?obs qb:dataSet ls:nyc-council-member-items. ?obs lso:nyc-council-member-items-from . ?obs lso:nyc-council-member-items-to . ?obs lso:refYear ?year. },qald-6 +How high were the service support costs of the Fingal County Council Expenditure Budget of 2011?,"select sum(xsd:decimal(?amount)) as ?sum from { ?obs qb:dataSet ls:fingal_exp_budget. ?obs lso:fingal_exp_budget-ref2-desc ""Service Support Costs"". ?obs lso:fingal_exp_budget-amount ?amount. ?obs lso:refYear ?year. filter(year(?year)=2011). }",qald-6 +"What was the lowest amount for the veterinary service in the Fingal County Council expenditure budget? +",select min(xsd:decimal(?amount)) as ?sum from { ?obs qb:dataSet ls:fingal_exp_budget. ?obs lso:fingal_exp_budget-Service . ?obs lso:fingal_exp_budget-amount ?amount. },qald-6 +"What is the total investment budget for basic education in Mezam, Cameroon?",select sum(xsd:decimal(?amount)) as ?sum from { ?obs qb:dataSet ls:cm-nwr-investments. ?obs lso:cm-nwr-investments-area . ?obs lso:cm-nwr-investments-chapter . ?obs lso:cm-nwr-investments-amount ?amount. },qald-6 +Which areas in Cameroon had an investment budget of more than 5 billion CFA in 2010?,select ?area from { ?obs qb:dataSet ls:cm-nwr-investments. ?obs lso:cm-nwr-investments-area ?area. ?obs lso:cm-nwr-investments-amount ?amount. } group by ?area having (sum(xsd:decimal(?amount))>5000000000),qald-6 +"How much money was given to works and transport in the Ugandan budget? +",select sum(xsd:decimal(?amount)) as ?sum from { ?obs qb:dataSet ls:ug_budget_subcategories. ?obs lso:ug_budget_subcategories-to . ?obs lso:ug_budget_subcategories-amount ?amount. },qald-6 +In which years did the Uganda budget contain money for Education?,select distinct(year(?year)) as ?year from { ?obs qb:dataSet ls:ug_budget_subcategories. ?obs lso:ug_budget_subcategories-to . ?obs lso:ug_budget_subcategories-amount ?amount. ?obs lso:refYear ?year. },qald-6 +How many donor entities provided foreign aid for Typhoon Yolanda?,select count(distinct(?entity)) from { ?obs qb:dataSet ls:faith. ?obs lso:faith-target . ?obs lso:faith-from ?entity. },qald-6 +How much foreign aid went over the Red Cross from China?,select sum(xsd:decimal(?amount)) as ?sum from { ?obs qb:dataSet ls:faith. ?obs lso:faith-conduit . ?obs lso:faith-from . ?obs lso:faith-amount ?amount. },qald-6 +Which type of sector is receiving the most Finland foreign aid in India?,select ?result { ?obs lso:finland-aid-recipient-country . ?obs lso:finland-aid-amount ?amount. ?obs lso:finland-aid-sector ?result. } order by desc(sum(xsd:decimal(?amount))) limit 1,qald-6 +What types of foreign aid from Finland did Belarus receive in 2011?,select distinct(?result) { ?obs lso:finland-aid-recipient-country . ?obs lso:finland-aid-type-of-aid ?result. ?obs lso:refYear ?year. filter(year(?year)=2011). },qald-6 +What was the proposed City of Providence budget amount for City Courts by the Muncipal Court?,"select sum(xsd:decimal(?amount)) as ?sum from { ?obs qb:dataSet ls:pvd2014proposed. ?obs lso:pvd2014proposed-acct-dept ""101-106: Muncipal Court"". ?obs lso:pvd2014proposed-acct-div ""City Courts"". ?obs lso:pvd2014proposed-amount ?amount. }",qald-6 +How much was the City of Providence budget for educational materials?,"select sum(xsd:decimal(?amount)) as ?sum from { ?obs qb:dataSet ls:pvd2014proposed. ?obs lso:pvd2014proposed-gl-account ""54625: EDUCATIONAL MATERIALS"". ?obs lso:pvd2014proposed-amount ?amount. }",qald-6 +When was upgrading and greening in ward 49 paid?,select distinct(?date) from { ?obs qb:dataSet ls:pbw-ct. ?obs lso:pbw-ct-Category . ?obs lso:refDate ?date. },qald-6 +What are the funding sources for Cape Town Electricity?,select distinct(?source) from { ?obs qb:dataSet ls:pbw-ct. ?obs lso:pbw-ct-Department . ?obs lso:pbw-ct-FundingSource ?source. },qald-6 +Which investor type using CKAN technology received the most funding?,"select ?type from { ?obs qb:dataSet ls:trends_in_civi_tech_open_gov. ?obs lso:trends_in_civi_tech_open_gov-tech ""CKAN"". ?obs lso:trends_in_civi_tech_open_gov-amount ?amount. ?obs lso:trends_in_civi_tech_open_gov-investor_type ?type. } order by desc(sum(xsd:decimal(?amount))) limit 1",qald-6 +When did Pew Charitable Trust invest?,select ?date from { ?obs qb:dataSet ls:trends_in_civi_tech_open_gov. ?obs lso:trends_in_civi_tech_open_gov-from . ?obs lso:refDate ?date. },qald-6 +How much did Armenia spend in 2006 for buildings and edifices?,"select sum(xsd:decimal(?amount)) as ?sum from { ?obs qb:dataSet ls:e27f4ef7601446798cfa733a06cea8d9. ?obs lso:e27f4ef7601446798cfa733a06cea8d9-economiclevel3 ""Buildings and edifices"". ?obs lso:e27f4ef7601446798cfa733a06cea8d9-amount ?amount. }",qald-6 +Which were the admins for personal and catering materials in Armenia in 2006?,select distinct(?admin) from { ?obs qb:dataSet ls:e27f4ef7601446798cfa733a06cea8d9. ?obs lso:e27f4ef7601446798cfa733a06cea8d9-economic . ?obs lso:e27f4ef7601446798cfa733a06cea8d9-from ?admin. },qald-6 +How much was spent on public utilities in Armenia in 2007?,select sum(xsd:decimal(?amount)) as ?sum from { ?obs qb:dataSet ls:f0bd947d9854445987d6ece304840a3c. ?obs lso:f0bd947d9854445987d6ece304840a3c-economic . ?obs lso:f0bd947d9854445987d6ece304840a3c-amount ?amount. },qald-6 +What was the total cost of running expenses for Armenia in 2007?,"select sum(xsd:decimal(?amount)) as ?sum from { ?obs qb:dataSet ls:f0bd947d9854445987d6ece304840a3c. ?obs lso:f0bd947d9854445987d6ece304840a3c-economiclevel1 ""Running expenses"". ?obs lso:f0bd947d9854445987d6ece304840a3c-amount ?amount. }",qald-6 +What was the total Scottish Government expenditure of 2013-01-09?,"select sum(xsd:decimal(?amount)) as ?sum from { ?obs qb:dataSet ls:scottish-spending-jan13. ?obs lso:scottish-spending-jan13-amount ?amount. ?obs lso:refDate ?date. filter(strstarts(str(?date), ""2013-01-09"")). }",qald-6 +What was the smallest amount expended for Environment and Forestry by the Scottish Government in January of 2013?,"select min(xsd:decimal(?amount)) as ?sum from { ?obs qb:dataSet ls:scottish-spending-jan13. ?obs lso:scottish-spending-jan13-amount ?amount. ?obs lso:scottish-spending-jan13-directorate ""Environment and Forestry"". }",qald-6 +In which year did the City of Oakland have the highest total expenditure budget?,select year(?year) from { ?obs qb:dataSet ls:oakland-adopted-budget-fy-2011-13-expenditures. ?obs lso:oakland-adopted-budget-fy-2011-13-expenditures-amount ?amount. ?obs lso:refYear ?year. } order by desc(sum(xsd:decimal(?amount))) limit 1,qald-6 +What was the total City of Oakland budget for the Administrative Unit in 2012?,"select sum(xsd:decimal(?amount)) as ?sum from { ?obs qb:dataSet ls:oakland-adopted-budget-fy-2011-13-expenditures. ?obs lso:oakland-adopted-budget-fy-2011-13-expenditures-unit ""Administrative Unit"". ?obs lso:oakland-adopted-budget-fy-2011-13-expenditures-amount ?amount. ?obs lso:refYear ?year. filter(year(?year)=2012) }",qald-6 +How high was the recurrent expenditure for the Sierra Leona Government budget in 2013?,"select sum(xsd:decimal(?amount)) as ?sum from { ?obs qb:dataSet ls:allexp13budg. ?obs lso:allexp13budg-level0 ""RECURRENT EXPENDITURE"". ?obs lso:allexp13budg-amount ?amount. }",qald-6 +How much was budgeted for general services for the Office of the President of Sierra Leona in 2013?,"select sum(xsd:decimal(?amount)) as ?sum from { ?obs qb:dataSet ls:allexp13budg. ?obs lso:allexp13budg-level1 ""GENERAL SERVICES"". ?obs lso:allexp13budg-level2 ""Office of the President"". ?obs lso:allexp13budg-amount ?amount. }",qald-6 +Which clients received lobbying contributions of more than 50000000 $?,select ?client sum(xsd:decimal(?amount)) as ?sum from { ?obs qb:dataSet ls:lobbying_dataset_qy. ?obs lso:lobbying_dataset_qy-client ?client. ?obs lso:lobbying_dataset_qy-amount ?amount. } group by ?client having sum(xsd:decimal(?amount))>50000000,qald-6 +Which industry received the most lobbying contributions?,select ?industry from { ?obs qb:dataSet ls:lobbying_dataset_qy. ?obs lso:lobbying_dataset_qy-industry ?industry. ?obs lso:lobbying_dataset_qy-amount ?amount. } order by desc(sum(xsd:decimal(?amount))) limit 1,qald-6 +How much did the Manchester City Council give for Learning Disabilities to SLC Paragon?,"select sum(xsd:decimal(?amount)) as ?sum from { ?obs qb:dataSet ls:mcc_spend. ?obs lso:mcc_spend-amount ?amount. ?obs lso:mcc_spend-supplier-name ""SLC Paragon"". }",qald-6 +Which service areas do the Manchester City Council spendings contain?,select distinct(?area) from { ?obs qb:dataSet ls:mcc_spend. ?obs lso:mcc_spend-service-area ?area. },qald-6 +How much was Albanias 2013 budget for education?,select sum(xsd:decimal(?amount)) as ?sum from { ?obs qb:dataSet ls:alb_planned_budget_2013. ?obs lso:alb_planned_budget_2013-cofog1 . ?obs lso:alb_planned_budget_2013-amount ?amount. },qald-6 +What are the identification numbers of housing and community amenities in Albanias 2013 budget?,select distinct(?id) from { ?obs qb:dataSet ls:alb_planned_budget_2013. ?obs lso:alb_planned_budget_2013-cofog1 . ?obs lso:alb_planned_budget_2013-UniqueID ?id. },qald-6 +What was the total Kenya County Expenditure in Kiambu by the Thika administration?,select sum(xsd:decimal(?amount)) as ?sum from { ?obs qb:dataSet ls:ke-county-exp. ?obs lso:ke-county-exp-administration . ?obs lso:ke-county-exp-county . ?obs lso:ke-county-exp-amount ?amount. },qald-6 +Which Kenya country administration had the highest expenditure budget?,select ?admin from { ?obs qb:dataSet ls:ke-county-exp. ?obs lso:ke-county-exp-administration ?admin. ?obs lso:ke-county-exp-amount ?amount. } order by desc(sum(xsd:decimal(?amount))) limit 1 ,qald-6 +What was the Albania budget for public order and safety in 2007?,select sum(xsd:decimal(?amount)) as ?sum from { ?obs qb:dataSet ls:al_planned_budget_2007to2013. ?obs lso:al_planned_budget_2007to2013-cofog1 . ?obs lso:refYear ?year. filter(year(?year)=2007). ?obs lso:al_planned_budget_2007to2013-amount ?amount. } ,qald-6 +What was the combined Albania budget for health from 2007 to 2010?,select sum(xsd:decimal(?amount)) as ?sum from { ?obs qb:dataSet ls:al_planned_budget_2007to2013. ?obs lso:al_planned_budget_2007to2013-cofog1 . ?obs lso:al_planned_budget_2007to2013-amount ?amount. ?obs lso:refYear ?year. filter((year(?year)>=2007)&&year(?year)<=2010) } ,qald-6 +What is the external debt amount of Kwara?,select sum(xsd:decimal(?amount)) as ?sum from { ?obs qb:dataSet ls:external-debts. ?obs lso:external-debts-to . ?obs lso:external-debts-amount ?amount. } ,qald-6 +How much external debt did rivers have in 2010?,select sum(xsd:decimal(?amount)) as ?sum from { ?obs qb:dataSet ls:external-debts. ?obs lso:external-debts-to . ?obs lso:external-debts-amount ?amount. ?obs lso:refYear ?year. filter(year(?year)=2010) } ,qald-6 +How many admins were responsible for mandatory payments in the Armenian approved budget of 2010?,select count(distinct(?admin)) from { ?obs qb:dataSet ls:ddc94682cc95482a8deefc60596686fc. ?obs lso:ddc94682cc95482a8deefc60596686fc-economic . ?obs lso:ddc94682cc95482a8deefc60596686fc-from ?admin. } ,qald-6 +How much total running expenses under budgetary classification did the Armenian approved budget of 2010 have for personnel?,"select sum(xsd:decimal(?amount)) as ?sum from { ?obs qb:dataSet ls:ddc94682cc95482a8deefc60596686fc. ?obs lso:ddc94682cc95482a8deefc60596686fc-economiclevel1 ""Running expenses"". ?obs lso:ddc94682cc95482a8deefc60596686fc-type ""personnel"". ?obs lso:ddc94682cc95482a8deefc60596686fc-amount ?amount. }",qald-6 +Butch Otter is the governor of which U.S. state?,SELECT DISTINCT ?uri WHERE { ?uri . ?uri . },qald-6 +How tall is Amazon Eve?,SELECT DISTINCT ?height WHERE { ?height . } ,qald-6 +Which weapons did Heckler & Koch develop?,SELECT DISTINCT ?uri WHERE { ?uri . ?uri . },qald-6 +Where is Fort Knox located?,SELECT DISTINCT ?uri WHERE { ?uri . },qald-6 +Who created Batman?,SELECT DISTINCT ?uri WHERE { ?uri . } ,qald-6 +Which politicians were married to a German?,SELECT DISTINCT ?uri WHERE { ?uri . ?uri ?spouse . { ?spouse . } UNION { ?spouse ?p . ?p . } } ,qald-6 +When was Jack Wolfskin founded?,SELECT DISTINCT ?year WHERE { ?year . } ,qald-6 +How deep is Lake Chiemsee?,SELECT DISTINCT ?n WHERE { ?n . } ,qald-6 +Give me the grandchildren of Elvis Presley.,SELECT DISTINCT ?uri WHERE { ?child . ?child ?uri . },qald-6 +What does ICRO stand for?,SELECT DISTINCT ?uri WHERE { ?uri 'ICRO'^^ . } ,qald-6 +When was Olof Palme shot?,SELECT DISTINCT ?date WHERE { ?date . } ,qald-6 +List all the musicals with music by Leonard Bernstein.,SELECT DISTINCT ?uri WHERE { ?uri . ?uri . } ,qald-6 +Which airports does Yeti Airlines serve?,SELECT DISTINCT ?uri WHERE { ?uri . },qald-6 +Which movies starring Mickey Rourke were directed by Guy Ritchie?,SELECT DISTINCT ?uri WHERE { ?uri . ?uri . ?uri . } ,qald-6 +Is Darth Vader Luke’s father?,"ASK WHERE { ""Luke Skywalker""@en . }",qald-6 +Which subsidiary of TUI Travel serves both Glasgow and Dublin?,SELECT DISTINCT ?uri WHERE { ?uri . ?uri . ?uri . } ,qald-6 +How high is the lighthouse in Colombo?,SELECT DISTINCT ?num WHERE { ?num . } ,qald-6 +How much was spent on public safety by the Town of Cary in 2010?, select sum(xsd:decimal(?amount)) as ?result from { ?obs qb:dataSet ls:town_of_cary_expenditures. ?obs lso:town_of_cary_expenditures-amount ?amount. ?obs lso:town_of_cary_expenditures-Class . ?obs lso:refYear ?year. filter(year(?year)=2010). },qald-6 +How many programs were done under the class of General Government in the expenditure of the Town of Cary?, select count(distinct(?program)) as ?result from { ?obs qb:dataSet ls:town_of_cary_expenditures. ?obs lso:town_of_cary_expenditures-Program ?program. ?obs lso:town_of_cary_expenditures-Class . },qald-6 +How much did the Town of Cary earn in 2010?, select sum(xsd:decimal(?amount)) as ?result from { ?obs qb:dataSet ls:town_of_cary_revenues. ?obs lso:refYear ?year. filter(year(?year)=2010). ?obs lso:town_of_cary_revenues-amount ?amount. },qald-6 +Which class achieved the highest revenue for the Town of Cary?, select ?result from { ?obs qb:dataSet ls:town_of_cary_revenues. ?obs lso:town_of_cary_revenues-Class ?result. ?obs lso:town_of_cary_revenues-amount ?amount. } order by desc(sum(xsd:decimal(?amount))) limit 1,qald-6 +For which account type of whiteacre was spent the most?, select ?result from { ?obs qb:dataSet ls:city-of-whiteacre-spending. ?obs lso:city-of-whiteacre-spending-accounttype ?result. ?obs lso:city-of-whiteacre-spending-amount ?amount. } order by desc(sum(xsd:decimal(?amount))) limit 1,qald-6 +How much interest did the debt service of the city of Whiteacre spend?, select sum(xsd:decimal(?amount)) as ?result from { ?obs qb:dataSet ls:city-of-whiteacre-spending. ?obs lso:city-of-whiteacre-spending-object . ?obs lso:city-of-whiteacre-spending-to . ?obs lso:city-of-whiteacre-spending-amount ?amount. } ,qald-6 +"Which expenses had the highest total amount of proposed expenditures for the Maldives? +", select ?result from { ?obs qb:dataSet ls:maldives_proposed_expenditure_2015. ?obs lso:maldives_proposed_expenditure_2015-Expenses ?result. ?obs lso:maldives_proposed_expenditure_2015-amount ?amount. } order by desc(sum(xsd:decimal(?amount))) limit 1,qald-6 +What was the highest single expenditure amount proposed by the Maldives Broadcasting Corporation?, select max(xsd:decimal(?amount)) as ?result from { ?obs qb:dataSet ls:maldives_proposed_expenditure_2015. ?obs lso:maldives_proposed_expenditure_2015-Agency . ?obs lso:maldives_proposed_expenditure_2015-amount ?amount. },qald-6 +Which Ugandan output had the highest budget in 2014?, select ?result from { ?obs qb:dataSet ls:ministry_of_health. ?obs lso:ministry_of_health-output ?result. ?obs lso:ministry_of_health-amount ?amount. ?obs lso:refYear ?year. filter(year(?year)=2014). } order by desc(sum(xsd:decimal(?amount))) limit 1,qald-6 +What was the average Uganda health budget amount in Namutumba District?, select avg(xsd:decimal(?amount)) as ?result from { ?obs qb:dataSet ls:ministry_of_health. ?obs lso:ministry_of_health-to . ?obs lso:ministry_of_health-amount ?amount. },qald-6 +How many suppliers did the Newcastle city council use for education?," select count(distinct(?supplier)) as ?result from { ?obs qb:dataSet ls:newcastle-city-council-payments-over-500. ?obs lso:newcastle-city-council-payments-over-500-service-area ""EDUCATION"". ?obs lso:newcastle-city-council-payments-over-500-to ?supplier. }",qald-6 +How many directorates does the Newcastle city council have?, select count(distinct(?directorate)) as ?result from { ?obs qb:dataSet ls:newcastle-city-council-payments-over-500. ?obs lso:newcastle-city-council-payments-over-500-from ?directorate. },qald-6 +Which suppliers did the Waltham Forest Council utilize for recycling?," select distinct(?supplier) as ?result from { ?obs qb:dataSet ls:uk-local-walthamforest. ?obs lso:uk-local-walthamforest-ExpenseType ""RECYCLING"". ?obs lso:uk-local-walthamforest-to ?supplier. }",qald-6 +"On the Waltham Forest Council, how much money was given to the Forest Recycling Project?", select sum(xsd:decimal(?amount)) as ?result from { ?obs qb:dataSet ls:uk-local-walthamforest. ?obs lso:uk-local-walthamforest-to . ?obs lso:uk-local-walthamforest-amount ?amount. },qald-6 +How many narratives are there for Cheshire West and Chester council spending in the category of Marketing?," select count(distinct(?narrative)) as ?result from { ?obs qb:dataSet ls:cheshire_west_and_chester_april_2013. ?obs lso:cheshire_west_and_chester_april_2013-narrative ?narrative. ?obs lso:cheshire_west_and_chester_april_2013-expenditure-category ""Marketing"". }",qald-6 +What are the top 3 expenditure categories in Cheshire West and Chester council spending?, select distinct(?result) from { ?obs qb:dataSet ls:cheshire_west_and_chester_april_2013. ?obs lso:cheshire_west_and_chester_april_2013-expenditure-category ?result. ?obs lso:cheshire_west_and_chester_april_2013-amount ?amount. } order by desc(sum(xsd:decimal(?amount))) limit 3,qald-6 +Which priorities does the insurance fund have for the City of Redacre?, select distinct(?priority) from { ?obs qb:dataSet ls:city-of-redacre-spending. ?obs lso:city-of-redacre-spending-from . ?obs lso:city-of-redacre-spending-priority ?priority. },qald-6 +How many divisions have safety priority in the City of Redacre spending?, select count(distinct(?division)) from { ?obs qb:dataSet ls:city-of-redacre-spending. ?obs lso:city-of-redacre-spending-to ?division. ?obs lso:city-of-redacre-spending-priority . },qald-6 +What was the total Wandsworth spending in 2013 from the housing department?," select sum(xsd:decimal(?amount)) as ?result from { ?obs qb:dataSet ls:wandsworthspending_2013. ?obs lso:wandsworthspending_2013-Department ""HOUSING"". ?obs lso:wandsworthspending_2013-amount ?amount. }",qald-6 +How much money does Wandsworth spendt on general internal repairs?," select sum(xsd:decimal(?amount)) as ?result from { ?obs qb:dataSet ls:wandsworthspending_2013. ?obs lso:wandsworthspending_2013-DetailedExpenses ""GENERAL INTERNAL REPAIRS"". ?obs lso:wandsworthspending_2013-amount ?amount. }",qald-6 +Top 3 IW Council Spending service areas?, select ?result from { ?obs qb:dataSet ls:iw-council-spending-2012-13-test. ?obs lso:iw-council-spending-2012-13-test-servicearea ?result. ?obs lso:iw-council-spending-2012-13-test-amount ?amount. } order by desc(sum(xsd:decimal(?amount))) limit 3,qald-6 +Under which directorate does the IW Council service area have the highest revenue?, select ?result from { ?obs qb:dataSet ls:iw-council-spending-2012-13-test. ?obs lso:iw-council-spending-2012-13-test-capitalorrevenue . ?obs lso:iw-council-spending-2012-13-test-amount ?amount. ?obs lso:iw-council-spending-2012-13-test-directorate ?result. } order by desc(sum(xsd:decimal(?amount))) limit 1,qald-6 +Which departments of the city of Springfield had a higher budget in 2004 then in 2005?, select ?dep { select ?dep sum(xsd:decimal(?amount4)) as ?sum4 sum(xsd:decimal(?amount5)) as ?sum5 from { ?obs qb:dataSet ls:city-of-springfield-budget. ?obs lso:city-of-springfield-budget-to ?dep. { ?obs lso:city-of-springfield-budget-amount ?amount4. ?obs lso:refYear ?year4. filter(year(?year4)=2004). } union { ?obs lso:city-of-springfield-budget-amount ?amount5. ?obs lso:refYear ?year5. filter(year(?year5)=2005). } } } group by ?dep having(?sum4>?sum5),qald-6 +What is the highest single budget amount in the city of Springfield for public safety?, select max(xsd:decimal(?amount)) from { ?obs qb:dataSet ls:city-of-springfield-budget. ?obs lso:city-of-springfield-budget-deptgroup . ?obs lso:city-of-springfield-budget-amount ?amount. },qald-6 +Which of the Californian cities received the highest amount of money?, select ?result from { ?obs qb:dataSet ls:pscs_ca_cities. ?obs lso:pscs_ca_cities-gov-full-name ?result. ?obs lso:pscs_ca_cities-amount ?amount. } order by desc(xsd:decimal(?amount)) limit 1,qald-6 +Under which caption did Livermore receive the highest amount of money in 2011?," select ?result from { ?obs qb:dataSet ls:pscs_ca_cities. ?obs lso:pscs_ca_cities-gov-full-name ""Livermore"". ?obs lso:pscs_ca_cities-caption ?result. ?obs lso:pscs_ca_cities-amount ?amount. ?obs lso:refYear ?year. filter (year(?year)=2011). } order by desc(xsd:decimal(?amount)) limit 1",qald-6 +What is the average Washington DC teacher salary?," select avg(xsd:decimal(?amount)) as ?result from { ?obs qb:dataSet ls:dc-city-salaries. ?obs lso:dc-city-salaries-amount ?amount. ?obs lso:dc-city-salaries-position ""Teacher"". }",qald-6 +Which position has the highest average salary in Washington DC?, select ?result from { ?obs qb:dataSet ls:dc-city-salaries. ?obs lso:dc-city-salaries-amount ?amount. ?obs lso:dc-city-salaries-position ?result. } order by desc(avg(xsd:decimal(?amount))) limit 1,qald-6 +How many big lottery found grants were given in the South West in 2012?," select count(distinct(?obs)) as ?result from { ?obs lso:refYear ?year. filter(year(?year)=2012). ?obs qb:dataSet ls:big-lottery-fund-grants. ?obs lso:big-lottery-fund-grants-region ""South West"". } ",qald-6 +"Has there been a big lottery fund grant to Stanbury Court Social Club? + +", ask from { ?obs qb:dataSet ls:big-lottery-fund-grants. ?obs lso:big-lottery-fund-grants-to . },qald-6 +On which expenses in Gloucestershire was spent more than 10000000 pound in total?, select ?result from { ?obs qb:dataSet ls:uk-local-gloucestershirev1. ?obs lso:uk-local-gloucestershirev1-expense ?result. ?obs lso:uk-local-gloucestershirev1-amount ?amount. } group by ?result having (sum(xsd:decimal(?amount))>10000000),qald-6 +How much money did Cheltenham Borough Homes receive?, select sum(xsd:decimal(?amount)) as ?result from { ?obs qb:dataSet ls:uk-local-gloucestershirev1. ?obs lso:uk-local-gloucestershirev1-to . ?obs lso:uk-local-gloucestershirev1-amount ?amount. },qald-6 +How much did the department for work and pensions pay for Research into Infrastructure?, select sum(xsd:decimal(?amount)) as ?result from { ?obs qb:dataSet ls:ukgov-finances-cra. ?obs lso:ukgov-finances-cra-cofog2 . ?obs lso:ukgov-finances-cra-from . ?obs lso:ukgov-finances-cra-amount ?amount. },qald-6 +What are the geographic regions in the UK Country Regional Analysis from the scottish executive and its departments for forests?, select distinct(?result) from { ?obs qb:dataSet ls:ukgov-finances-cra. ?obs lso:ukgov-finances-cra-cofog3 . ?obs lso:ukgov-finances-cra-from . ?obs lso:ukgov-finances-cra-region ?result. },qald-6 +How much cost the implementation of Midwifery Education in Nangarhar?," select sum(xsd:decimal(?amount)) as ?result from { ?obs qb:dataSet ls:iati_cordaid_af. ?obs lso:iati_cordaid_af-Unique . ?obs lso:iati_cordaid_af-Activity_Status ""Implementation"". ?obs lso:iati_cordaid_af-amount ?amount. }",qald-6 +How much was spent on food security by Cordaid in Afghanistan?," select sum(xsd:decimal(?amount)) as ?result from { ?obs qb:dataSet ls:iati_cordaid_af. ?obs lso:iati_cordaid_af-Area ""Food Security"". ?obs lso:iati_cordaid_af-amount ?amount. }",qald-6 +What was the total expenditure on Materials and Supplies of the City of Toronto in 2010?," select sum(xsd:decimal(?amount)) as ?result from { ?obs qb:dataSet ls:ca-local-toronto. ?obs lso:ca-local-toronto-type ""Materials and Supplies"". ?obs lso:ca-local-toronto-amount ?amount. ?obs lso:refYear ?year. filter(year(?year)=2010). }",qald-6 +How much did Ireland charities pay in total governance costs?, select sum(xsd:decimal(?amount)) as ?result from { ?obs qb:dataSet ls:ie_charity_exp. ?obs lso:ie_charity_exp-Level3 . ?obs lso:ie_charity_exp-amount ?amount. },qald-6 +What was the frontex staff budget in 2005?, select sum(xsd:decimal(?amount)) as ?result from { ?obs lso:refYear ?year. filter(year(?year)=2005). ?obs qb:dataSet ls:frontex. ?obs lso:frontex-Heading . ?obs lso:frontex-amount ?amount. },qald-6 +What was the smallest amount for industrial and commercial facilities in the Dublin City Council Expenditure Budget of 2013?, select min(xsd:decimal(?amount)) as ?sum from { ?obs qb:dataSet ls:dcc_exp_budget2013. ?obs lso:dcc_exp_budget2013-Service . ?obs lso:dcc_exp_budget2013-amount ?amount. },qald-6 +"Which country received the highest financial crisis aid? +", select ?country from { ?obs qb:dataSet ls:financial_aid. ?obs lso:financial_aid-amount ?amount. ?obs lso:financial_aid-country ?country. } order by desc(sum(xsd:decimal(?amount))) limit 1,qald-6 +How much was charity spending was expended for charitable activities in Haiti?, select sum(xsd:decimal(?amount)) as ?sum from { ?obs qb:dataSet ls:concern2012. ?obs lso:concern2012-Level1 . ?obs lso:concern2012-Level3 . ?obs lso:concern2012-Level4 . ?obs lso:concern2012-amount ?amount. },qald-6 +What is the amount given by the Metropolitan Police Department to Cybernational?, select sum(xsd:decimal(?amount)) as ?sum from { ?obs qb:dataSet ls:dc-vendors-contractors. ?obs lso:dc-vendors-contractors-from . ?obs lso:dc-vendors-contractors-to . ?obs lso:dc-vendors-contractors-amount ?amount. },qald-6 +What was the highest amount under the sub-account for layout and construction of buildingsin Cameroon in 2009?, select max(xsd:decimal(?amount)) as ?sum from { ?obs qb:dataSet ls:cameroon_visualisation. ?obs lso:cameroon_visualisation-sub_account . ?obs lso:cameroon_visualisation-amount ?amount. ?obs lso:refYear ?year. filter(year(?year)=2009). },qald-6 +When did Canada get Nominet Trust funding for the last time?, select max(distinct(?date)) from { ?obs qb:dataSet ls:nominettrust_funding. ?obs lso:nominettrust_funding-region . ?obs lso:refDate ?date. },qald-6 +Which admin was reponsible for the most total running expenses in Armenia in 2009?," select ?result from { ?obs qb:dataSet ls:618ac3ec98384f44a9ef142356ce476d. ?obs lso:618ac3ec98384f44a9ef142356ce476d-economiclevel1 ""Running expenses"". ?obs lso:618ac3ec98384f44a9ef142356ce476d-from ?result. ?obs lso:618ac3ec98384f44a9ef142356ce476d-amount ?amount. ?obs lso:refYear ?year. filter(year(?year)=2009). } order by desc(sum(xsd:decimal(?amount))) limit 1",qald-6 +How much is the total amount of statuatory transfers in Nigerias proposed budget of 2013?, select sum(xsd:decimal(?amount)) as ?sum from { ?obs qb:dataSet ls:propbudg13. ?obs lso:propbudg13-from . ?obs lso:propbudg13-amount ?amount. },qald-6 +How much did the New York City Council Members give in 2015 for the Manhattan youth?, select sum(xsd:decimal(?amount)) as ?sum from { ?obs qb:dataSet ls:nyc-council-member-items. ?obs lso:nyc-council-member-items-category . ?obs lso:nyc-council-member-items-borough . ?obs lso:nyc-council-member-items-amount ?amount. },qald-6 +"What was the amount of the smallest community grant in the Fingal County Council expenditure budget? +"," select min(xsd:decimal(?amount)) as ?sum from { ?obs qb:dataSet ls:fingal_exp_budget. ?obs lso:fingal_exp_budget-ref2-desc ""Community Grants"". ?obs lso:fingal_exp_budget-amount ?amount. }",qald-6 +When was the upgrade of the Parks-Baba Park paid?, select distinct(?date) from { ?obs qb:dataSet ls:pbw-ct. ?obs lso:pbw-ct-Description . ?obs lso:refDate ?date. },qald-6 +Who was the doctoral supervisor of Albert Einstein?,SELECT DISTINCT ?uri WHERE { ?uri . },qald-6 +Did Kaurismäki ever win the Grand Prix at Cannes?,ASK WHERE { . },qald-6 +Who wrote the song Hotel California?,SELECT DISTINCT ?uri WHERE { ?uri . },qald-6 +Who was on the Apollo 11 mission?,SELECT DISTINCT ?uri WHERE { ?uri . },qald-6 +Which electronics companies were founded in Beijing?,SELECT DISTINCT ?uri WHERE { ?uri a . ?uri . ?uri . },qald-6 +What is in a chocolate chip cookie?,SELECT DISTINCT ?uri WHERE { ?uri . },qald-6 +What is the atmosphere of the Moon composed of?,SELECT DISTINCT ?uri WHERE { ?uri . },qald-6 +How many movies did Park Chan-wook direct?,SELECT COUNT(DISTINCT ?uri) WHERE { ?uri . },qald-6 +Who are the developers of DBpedia?,SELECT DISTINCT ?uri WHERE { ?uri . },qald-6 +Which Indian company has the most employees?,SELECT DISTINCT ?uri WHERE { ?uri a . ?uri . ?uri ?n . } ORDER BY DESC(?n) OFFSET 0 LIMIT 1,qald-6 +What is the name of the school where Obama's wife studied?,SELECT DISTINCT ?s WHERE { ?x . ?x ?s . } ,qald-6 +Where does Piccadilly start?,SELECT DISTINCT ?uri WHERE { ?uri . } ,qald-6 +What is the capital of Cameroon?,SELECT DISTINCT ?uri WHERE { ?uri. } ,qald-6 +When did the Boston Tea Party take place?,SELECT DISTINCT ?d WHERE { ?d . } ,qald-6 +Who played Gus Fring in Breaking Bad?,SELECT DISTINCT ?uri WHERE { ?uri . },qald-6 +Who wrote Harry Potter?,SELECT DISTINCT ?uri WHERE { ?uri . } ,qald-6 +Which actors play in Big Bang Theory?,SELECT DISTINCT ?uri WHERE { ?uri . } ,qald-6 +What is the largest country in the world?,SELECT DISTINCT ?uri WHERE { ?uri a . ?uri ?n . } ORDER BY DESC(?n) OFFSET 0 LIMIT 1,qald-6 +Who is the president of Eritrea?,SELECT DISTINCT ?uri WHERE { ?uri . 'President'@en . } ,qald-6 +Which computer scientist won an oscar?,"SELECT DISTINCT ?uri WHERE { { ?uri . } UNION { ?uri ?s . FILTER regex(?s,'computer scientist','i') } ?uri . } ",qald-6 +Who created Family Guy?,SELECT DISTINCT ?uri WHERE { ?uri . } ,qald-6 +How many people live in Poland?,SELECT DISTINCT ?uri WHERE { ?uri . } ,qald-6 +To which party does the mayor of Paris belong?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },qald-6 +Who does the voice of Bart Simpson?,SELECT DISTINCT ?uri WHERE { ?uri . },qald-6 +Who composed the soundtrack for Cameron's Titanic?,SELECT DISTINCT ?uri WHERE { ?uri . } ,qald-6 +When did Boris Becker end his active career?,SELECT DISTINCT ?d WHERE { ?d . } ,qald-6 +Show me all basketball players that are higher than 2 meters.,SELECT DISTINCT ?uri WHERE { ?uri a . ?uri ?n . FILTER (?n > 2.0) },qald-6 +What country is Sitecore from?,SELECT DISTINCT ?uri WHERE { ?uri . },qald-6 +Which country was Bill Gates born in?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },qald-6 +Who developed Slack?,SELECT DISTINCT ?uri WHERE { ?uri . },qald-6 +In which city did Nikos Kazantzakis die?,SELECT DISTINCT ?uri WHERE { ?uri . ?uri a . },qald-6 +How many grand-children did Jacques Cousteau have?,SELECT COUNT(DISTINCT ?y) WHERE { ?x . ?x ?y . },qald-6 +Which films did Stanley Kubrick direct?,SELECT DISTINCT ?uri WHERE { ?uri . },qald-6 +Does Neymar play for Real Madrid?,ASK WHERE { . },qald-6 +How many seats does the home stadium of FC Porto have?,SELECT DISTINCT ?n WHERE { ?x . ?x ?n . } ,qald-6 +Show me all books in Asimov's Foundation series.,SELECT DISTINCT ?uri WHERE { ?uri . } ,qald-6 +Which movies star both Liz Taylor and Richard Burton?,SELECT DISTINCT ?uri WHERE { ?uri . ?uri . } ,qald-6 +In which city are the headquarters of the United Nations?,SELECT DISTINCT ?uri WHERE { ?uri . ?uri a . } ,qald-6 +In which city was the president of Montenegro born?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?uri a . } ,qald-6 +Which writers studied in Istanbul?,SELECT DISTINCT ?uri WHERE { ?uri a . { ?uri ?x . } UNION { ?uri ?x . } { ?x . } UNION { ?x . } } ,qald-6 +Who is the mayor of Paris?,SELECT DISTINCT ?uri WHERE { ?uri . },qald-6 +What is the full name of Prince Charles?,"SELECT DISTINCT ?s WHERE { ?s . } ",qald-6 +What is the longest river in China?,SELECT DISTINCT ?uri WHERE { ?uri a . ?uri . ?uri ?l . } ORDER BY DESC(?l) OFFSET 0 LIMIT 1,qald-6 +Who discovered Ceres?,SELECT DISTINCT ?uri WHERE { ?uri . },qald-6 +When did princess Diana die?,"SELECT DISTINCT ?d WHERE { ?d . }",qald-6 +Who is the host of the BBC Wildlife Specials?,SELECT DISTINCT ?uri WHERE { ?uri . },qald-6 +How many moons does Mars have?,SELECT DISTINCT ?n WHERE { ?n . } ,qald-6 +What was the first Queen album?,SELECT DISTINCT ?uri WHERE { ?uri a . ?uri . ?uri ?d . } ORDER BY ASC(?d) OFFSET 0 LIMIT 1,qald-6 +Did Elvis Presley have children?,ASK WHERE { ?uri . } ,qald-6 +Give me a list of all Canadians that reside in the U.S.,SELECT DISTINCT ?uri WHERE { ?uri . ?uri . } ,qald-6 +Where is Syngman Rhee buried?,SELECT DISTINCT ?uri WHERE { ?uri . } ,qald-6 +In which countries do people speak Japanese?,SELECT DISTINCT ?uri WHERE { ?uri a . ?uri . } ,qald-6 +Who is the king of the Netherlands?,SELECT DISTINCT ?uri WHERE { ?uri . ?uri a . } ,qald-6 +When did the Dodo become extinct?,SELECT DISTINCT ?s WHERE { ?s . } ,qald-6 +Show me all Czech movies.,SELECT DISTINCT ?uri WHERE { ?uri a . ?uri . } ,qald-6 +Which rivers flow into the North Sea?,SELECT DISTINCT ?uri WHERE { ?uri a . ?uri . } ,qald-6 +When did Operation Overlord commence?,SELECT DISTINCT ?d WHERE { ?d . } ,qald-6 +Where do the Red Sox play?,SELECT DISTINCT ?uri WHERE { ?uri . } ,qald-6 +In which time zone is Rome?,SELECT DISTINCT ?uri WHERE { ?uri . } ,qald-6 +Give me a list of all critically endangered birds.,SELECT DISTINCT ?uri ?p WHERE { ?uri a . { ?uri 'CR'^^ . } UNION { ?uri . } },qald-6 +How much did the Lego Movie cost?,SELECT DISTINCT ?n WHERE { ?n . } ,qald-6 +What was the original occupation of the inventor of Lego?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . } ,qald-6 +Which countries have more than ten volcanoes?,SELECT DISTINCT ?uri WHERE { ?x a . ?x ?uri . ?uri a . } GROUP BY ?uri HAVING (COUNT(?x) > 10) ,qald-6 +Show me all U.S. states.,SELECT DISTINCT ?uri WHERE { ?uri a . } ,qald-6 +Who wrote the Game of Thrones theme?,SELECT DISTINCT ?uri WHERE { ?uri. },qald-6 +How many calories does a baguette have?,SELECT DISTINCT ?n WHERE { ?n. },qald-6 +Which companies produce hovercrafts?,SELECT DISTINCT ?uri WHERE { ?uri a . ?uri . },qald-6 +How many emperors did China have?,SELECT COUNT(DISTINCT ?uri) WHERE { ?uri . },qald-6 +Show me hiking trails in the Grand Canyon where there's no danger of flash floods.,SELECT DISTINCT ?uri WHERE { ?uri . FILTER NOT EXISTS { ?uri . } },qald-6 +In which ancient empire could you pay with cocoa beans?,SELECT DISTINCT ?uri WHERE { ?uri . },qald-6 +How did Michael Jackson die?,SELECT DISTINCT ?s WHERE { ?s . },qald-6 +Which space probes were sent into orbit around the sun?,SELECT DISTINCT ?uri WHERE { ?uri . },qald-6 +When was Coca Cola invented?,SELECT DISTINCT ?n WHERE { ?n . } ,qald-6 +What is the biggest stadium in Spain?,SELECT DISTINCT ?uri WHERE { ?uri a . ?uri . ?uri ?n . } ORDER BY DESC(?n) OFFSET 0 LIMIT 1,qald-6 +On which day is Columbus Day?,SELECT DISTINCT ?d WHERE { ?d . } ,qald-6 +How short is the shortest active NBA player?,SELECT DISTINCT ?n WHERE { ?x a . ?x . ?x ?n . FILTER NOT EXISTS { ?x ?d . } } ORDER BY ASC(?n) OFFSET 0 LIMIT 1,qald-6 +Whom did Lance Bass marry?,SELECT DISTINCT ?uri WHERE { ?uri . } ,qald-6 +What form of government does Russia have?,SELECT DISTINCT ?uri WHERE { ?uri . } ,qald-6 +What movies does Jesse Eisenberg play in?,SELECT DISTINCT ?uri WHERE { ?uri a . ?uri . },qald-6 +What color expresses loyalty?,SELECT DISTINCT ?uri WHERE { ?uri . },qald-6 +Show me all museums in London.,SELECT DISTINCT ?uri WHERE { ?uri a . ?uri . },qald-6 +Give me all South American countries.,SELECT DISTINCT ?uri WHERE { ?uri a . },qald-6 +Who is the coach of Ankara's ice hockey team?,SELECT DISTINCT ?uri WHERE { ?x . ?x . ?x ?uri . },qald-6 +Who is the son of Sonny and Cher?,SELECT DISTINCT ?uri WHERE { ?uri . ?uri . },qald-6 +What are the five boroughs of New York?,SELECT DISTINCT ?uri WHERE { ?uri . },qald-6 +Show me Hemingway's autobiography.,SELECT DISTINCT ?uri WHERE { ?uri . ?uri . },qald-6 +What kind of music did Lou Reed play?,SELECT DISTINCT ?uri WHERE { ?uri . },qald-6 +In which city does Sylvester Stallone live?,SELECT DISTINCT ?uri WHERE { ?uri a . ?uri . },qald-6 +Who was Vincent van Gogh inspired by?,SELECT DISTINCT ?uri WHERE { ?uri . },qald-6 +What are the names of the Teenage Mutant Ninja Turtles?,SELECT DISTINCT ?s WHERE { ?x . ?x ?s . },qald-6 +What are the zodiac signs?,SELECT DISTINCT ?uri WHERE { ?uri . },qald-6 +What languages do they speak in Pakistan?,SELECT DISTINCT ?uri WHERE { ?uri . },qald-6 +Who became president after JFK died?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . },qald-6 +In what city is the Heineken brewery?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },qald-6 +What is Elon Musk famous for?,SELECT DISTINCT ?uri WHERE { ?uri . },qald-6 +What is Batman's real name?,SELECT DISTINCT ?s WHERE { ?s . },qald-6 +Are there other solar systems?,"ask where { ?proj text:""other"" . ?proj text:""solar systems"" . }",qald-7 +Did George Washington want to be a teacher?,"PREFIX res: ask where { res:George_Washington text:""want"" . res:George_Washington text:""be"" . res:George_Washington text:""teacher"" . }",qald-7 +Does Johns Hopkins Bayview Medical Center have a burn victim unit?,"PREFIX res: ask where { res:Johns_Hopkins_Bayview_Medical_Center text:""burn victim unit"" . }",qald-7 +Give me all greek gods.,"PREFIX rdf: PREFIX owl: SELECT DISTINCT ?uri WHERE { ?uri rdf:type owl:Thing . ?uri text:""greek god"" . }",qald-7 +Give me the names of all of the people who signed the American Declaration of Independence.,"PREFIX rdf: PREFIX dbo: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:person . ?uri text:""signed"" . { ?uri text:""American Declaration of Independence"" . } UNION { ?uri text:""Declaration of Independence"" . } } ",qald-7 +The name of which ocean refers to Atlas of Greek mythology?,"PREFIX rdf: PREFIX owl: PREFIX dct: PREFIX dbc: SELECT DISTINCT ?uri WHERE { ?uri rdf:type owl:Thing . ?uri dct:subject dbc:Oceans . ?uri text:""refers"" . ?uri text:""Atlas"" . ?uri text:""Greek mythology"" . }",qald-7 +Which star is about 4.24 light-years from the Sun.,"PREFIX rdf: PREFIX dbo: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Star . ?uri text:""star"" . ?uri text:""4.24 light-years"" . ?uri text:""Sun"" . }",qald-7 +Which transmission does the German car with a top speed of 407 km/h have?,"PREFIX rdf: PREFIX dbo: SELECT DISTINCT ?trans WHERE { ?uri rdf:type dbo:Automobile . ?uri dbo:transmission ?trans . ?uri text:""German"" . ?uri text:""top speed"" . ?uri text:""407 km/h"" . }",qald-7 +Which star's diameter is about 109 times that of Earth?,"SELECT DISTINCT ?uri WHERE { ?uri text:""star"" . ?uri text:""diameter"" . ?uri text:""109 times"" . ?uri text:""Earth"" . }",qald-7 +Which writer was involved in two successive plane crashes?,"PREFIX rdf: PREFIX dbo: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Writer . ?uri text:""two successive plane crashes"" . }",qald-7 +"How many children did the person have that began their concerts with 'Hello, I'm Johnny Cash'?","PREFIX rdf: PREFIX dbo: SELECT DISTINCT (COUNT(?child) AS ?count) WHERE { ?uri rdf:type dbo:Person . ?uri dbo:child ?child . ?uri text:""began"" . ?uri text:""concerts"" . ?uri text:""Hello"" . ?uri text:""I'm Johnny Cash"" . }",qald-7 +What is the team size of the sport that is practiced by 250 million players in over 200 nations?,"PREFIX rdf: PREFIX dbo: select distinct ?size where { ?uri rdf:type dbo:Sport . ?uri dbo:teamSize ?size .?uri text:""250 million"" . ?uri text:""players, "" . ?uri text:""200"" . ?uri text:""nations"" . }",qald-7 +Were there more than 1000 different species of non-avian dinosaurs?,"ask where { ?proj text:""more"" . ?proj text:""1000 different species"" . ?proj text:""non-avian"" . ?proj text:""dinosaur"" . }",qald-7 +Which indigenous language includes a large proportion of non-indigenous people?,"PREFIX rdf: PREFIX dbo: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Language . ?uri text:""includes a large proportion of non-indigenous people"" . }",qald-7 +Which animal is primarily responsible for the extinction of 33 species of birds?,"PREFIX rdf: PREFIX dbo: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Animal . ?uri text:""responsible"" . ?uri text:""extinction"" . ?uri text:""33 species"" . ?uri text:""birds"" . }",qald-7 +Was the Earth formed about 4.54 billion years ago?,"PREFIX res: ask where { res:Earth text:""formed"" . res:Earth text:""4.54 billion"" . res:Earth text:""years"" . }",qald-7 +Which television series is about the survivors of a passenger jet crash on a tropical island?,"PREFIX rdf: PREFIX dbo: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:TelevisionShow . ?uri text:""survivors"" . ?uri text:""passenger jet"" . ?uri text:""crash"" . ?uri text:""tropical island"" . }",qald-7 +In what present-day country did the Protestant Reformation begin?,"PREFIX rdf: PREFIX dbo: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Country . ?uri text:""Protestant Reformation"" . ?uri text:""begin"" . }",qald-7 +Is Michael Jordan the MVP of all time?,"ask where { ?proj text:""Michael Jordan"" . ?proj text:""MVP of all time"" . }",qald-7 +Which company is a portmanteau of the words microcomputer and software?,"PREFIX rdf: PREFIX dbo: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Company . ?uri text:""portmanteau"" . ?uri text:""words"" . ?uri text:""microcomputer"" . ?uri text:""software"" . }",qald-7 +What causes earthquakes?,"SELECT DISTINCT ?uri WHERE { ?uri text:""causes earthquakes"" . }",qald-7 +Who was the first European to reach India by sea?,"SELECT DISTINCT ?uri WHERE { ?uri text:""first European"" . ?uri text:""reach India"" . ?uri text:""by sea"" . }",qald-7 +For which video game was an Apple II version planned but never released.,"PREFIX rdf: PREFIX dbo: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:VideoGame . ?uri text:""Apple II version"" . ?uri text:""planned"" . ?uri text:""never released"" . }",qald-7 +Is an eggshell made of Calcium carbonate?,"PREFIX res: ask where { { res:Eggshell text:""made of"" . } UNION { res:Eggshell text:""contain"" . } res:Eggshell text:""Calcium carbonate"" . }",qald-7 +What is California's state bird?,"PREFIX rdf: PREFIX dbo: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Bird . ?uri text:""California"" . ?uri text:""state bird"" . }",qald-7 +What is the worldwide best-selling album of all time?,"PREFIX rdf: PREFIX dbo: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Album . ?uri text:""best-selling album of all time"" . ?uri text:""worldwide"" . }",qald-7 +What is the alias of the band which member was ranked the 17th greatest guitarist of all time by a Guitar World magazine reader's poll in 2012?,"PREFIX rdf: PREFIX dbo: SELECT DISTINCT ?alias WHERE { ?uri rdf:type dbo:Band . ?uri dbo:alias ?alias . ?uri dbo:bandMember ?member . ?member text:""17th greatest guitarist of all time"" . ?member text:""Guitar World magazine"" . ?member text:""reader's poll"" . ?member text:""2012"" . }",qald-7 +What is the best-selling book of all time?,"SELECT DISTINCT ?uri WHERE { ?uri text:""best-selling book of all time"" . }",qald-7 +What is the maximum depth of the lake with the alleged sighted monster Nessie?,"PREFIX rdf: PREFIX dbo: SELECT DISTINCT ?depth WHERE { ?uri rdf:type dbo:Lake . ?uri dbo:maximumDepth ?depth . ?uri text:""allege"" . ?uri text:""sight"" . ?uri text:""monster"" . ?uri text:""Nessie"" . }",qald-7 +How many bits does the CPU of the device have that IGN named the 9th greatest video game console of all time?,"PREFIX rdf: PREFIX dbo: PREFIX dbp: SELECT DISTINCT ?bits WHERE { ?uri rdf:type dbo:Device . ?uri dbp:cpu ?bits . ?uri text:""IGN"" . ?uri text:""name"" . ?uri text:""9th greatest video game console of all time"" . }",qald-7 +What is created by tanning animal rawhide?,"PREFIX rdf: PREFIX owl: SELECT DISTINCT ?uri WHERE { ?uri rdf:type owl:Thing . ?uri text:""tanning"" . ?uri text:""animal"" . ?uri text:""rawhide"" . }",qald-7 +What is the capital of the state whose flag reflects Hispanic and Native American influences?,"PREFIX rdf: PREFIX dbo: SELECT DISTINCT ?capital WHERE { ?uri rdf:type dbo:Place . ?uri dbo:capital ?capital . ?uri text:""flag"" . ?uri text:""Hispanic"" . ?uri text:""Native American"" . ?uri text:""influence"" . }",qald-7 +What causes the sound of thunder?,"SELECT DISTINCT ?uri WHERE { ?uri text:""causes"" . ?uri text:""sound"" . ?uri text:""thunder"" . }",qald-7 +Which animal is the largest flying land bird in the western hemisphere?,"PREFIX rdf: PREFIX dbo: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Animal . ?uri text:""largest"" . ?uri text:""flying"" . ?uri text:""land bird"" . ?uri text:""Western Hemisphere"" . }",qald-7 +What is the total population of the town that port wine is named after?,"PREFIX rdf: PREFIX dbo: SELECT DISTINCT ?proj WHERE { ?uri rdf:type dbo:Location. ?uri dbo:populationTotal ?proj . ?uri text:""port wine"" . ?uri text:""named"" . }",qald-7 +Give me the completion date of the ship sunken in the North Atlantic Ocean in 1912 and rediscovered in 1985.,"PREFIX rdf: PREFIX dbo: SELECT DISTINCT ?date WHERE { ?uri rdf:type dbo:Ship. ?uri dbo:completionDate ?date . ?uri text:""sunken"" . ?uri text:""North Atlantic Ocean"" . ?uri text:""1912"" . ?uri text:""rediscovered"" . ?uri text:""1985"" . }",qald-7 +When did the person who worked on short satirical poems together with Goethe die?,"PREFIX rdf: PREFIX dbo: SELECT DISTINCT ?date WHERE { ?uri rdf:type dbo:Person . ?uri dbo:deathDate ?date . ?uri text:""work"" . ?uri text:""short satirical poem"" . ?uri text:""Goethe"" . }",qald-7 +Which food's name derived from the verb 'empanar'?,"PREFIX rdf: PREFIX dbo: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Food . ?uri text:""name"" . ?uri text:""derived"" . ?uri text:""verb"" . ?uri text:""empanar"" . }",qald-7 +When was the leader of the first Antarctic expedition to reach the South Pole born?,"PREFIX rdf: PREFIX dbo: SELECT DISTINCT ?date WHERE { ?uri rdf:type dbo:Person . ?uri dbo:birthDate ?date . ?uri text:""leader"" . ?uri text:""first"" . ?uri text:""Antarctic expedition"" . ?uri text:""reach"" . ?uri text:""South Pole"" . }",qald-7 +"Which urban fire in the United States burned from October 8 to October 10, 1871?","PREFIX dct: PREFIX dbc: SELECT DISTINCT ?uri WHERE { ?uri dct:subject dbc:Urban_fires_in_the_United_States . ?uri text:""Sunday"" . ?uri text:""October 8"" . ?uri text:""Tuesday"" . ?uri text:""October 10"" . ?uri text:""1871"" . }",qald-7 +What is the official name of the host city of the Summer Olympic Games in 1932 and 1984?,"PREFIX rdf: PREFIX dbo: PREFIX dbp: SELECT DISTINCT ?name WHERE { ?uri rdf:type dbo:City . ?uri dbp:officialName ?name . ?uri text:""host"" . ?uri text:""Summer Olympic Games"" . ?uri text:""1932"" . ?uri text:""1984"" . }",qald-7 +When was the band found whose performance in 1998 was documented by Wim Wenders?,"PREFIX rdf: PREFIX dbo: SELECT DISTINCT ?date WHERE { ?uri rdf:type dbo:Band . ?uri dbo:activeYearsStartYear ?date . ?uri text:""performance"" . ?uri text:""1998"" . ?uri text:""document"" . ?uri text:""Wim Wenders"" . }",qald-7 +Which battle in 1757 marked the beginning of the expansion of the British Empire in Asia?,"PREFIX dbo: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri dbo:date ?date . ?uri rdf:type dbo:MilitaryConflict . FILTER(year(?date)=1757) ?uri text:""begin"" . ?uri text:""expand"" . ?uri text:""British Empire"" . ?uri text:""Asia"" . }",qald-7 +Which Hindu deity is also known as 'Vinayaka'?,"SELECT DISTINCT ?uri WHERE { ?uri text:""Hindu deity"" . ?uri text:""known as"" . ?uri text:""Vinayaka"" . }",qald-7 +Which newspaper had an average daily circulation of 189000 copies in August 2013?,"PREFIX rdf: PREFIX dbo: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Newspaper . ?uri text:""average daily circulation"" . ?uri text:""189000 copies"" . ?uri text:""August 2013"" . }",qald-7 +Which tiger reserve in India shares the north-eastern boundary with Nepal?,"PREFIX dct: PREFIX dbc: SELECT DISTINCT ?uri WHERE { ?uri dct:subject dbc:Tiger_reserves_of_India . ?uri text:""shares"" . ?uri text:""north-eastern boundary"" . ?uri text:""Nepal"" . }",qald-7 +Who was the first deaf-blind person to receive a bachelor of arts degree?,"PREFIX rdf: PREFIX dbo: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Person . ?uri text:""first deaf-blind"" . ?uri text:""receive"" . ?uri text:""bachelor of arts degree"" . }",qald-7 +Who was the first man to walk on the moon?,"PREFIX rdf: PREFIX dbo: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Person . ?uri text:""first man"" . ?uri text:""walk"" . ?uri text:""moon"" . }",qald-7 +How many floors does the tower on the Champ de Mars in Paris have?,"PREFIX rdf: PREFIX dbo: SELECT DISTINCT ?proj WHERE { ?uri rdf:type dbo:Building . ?uri dbo:floorCount ?proj . ?uri text:""tower"" . ?uri text:""Champ de Mars"" . ?uri text:""Paris"" .}",qald-7 +The net worth of which actor is estimated by Forbes magazine to be $350 million?,"PREFIX rdf: PREFIX dbo: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Actor . ?uri text:""net worth"" . ?uri text:""estimated"" . ?uri text:""$350 million"" . ?uri text:""Forbes magazine"" . }",qald-7 +Are there any castles in the United States?,PREFIX dct: PREFIX dbc: ask where {?uri dct:subject dbc:Castles_in_the_United_States},qald-7 +Can you find frescoes in Crete?,PREFIX dct: PREFIX dbc: PREFIX dbp: PREFIX dbo: PREFIX dbr: ask where { ?uri dct:subject dbc:Minoan_frescos . ?uri dbp:museum ?museum . ?museum dbo:location dbr:Crete . },qald-7 +Do Urdu and Persian have a common root?,PREFIX dbo: PREFIX dbr: ask where { dbr:Urdu dbo:languageFamily ?uri . dbr:Persian_language dbo:languageFamily ?uri . },qald-7 +Does the Ford Motor Company have a manufacturing plant in Malaysia?,PREFIX dbo: PREFIX dbr: ask where { ?uri dbo:assembly dbr:Malaysia . ?uri dbo:manufacturer dbr:Ford_Motor_Company . },qald-7 +How many years was the Ford Model T manufactured?,PREFIX xsd: PREFIX res: PREFIX dbo: SELECT (year(xsd:date(?end))-year(xsd:date(?start)) AS ?years) WHERE { res:Ford_Model_T dbo:productionEndYear ?end. res:Ford_Model_T dbo:productionStartYear ?start. },qald-7 +Give me all American presidents in the last 20 years.,PREFIX rdf: PREFIX dbo: PREFIX dct: PREFIX dbc: PREFIX dbp: select distinct ?uri where { ?uri rdf:type dbo:Person . ?uri dct:subject dbc:Presidents_of_the_United_States . ?uri dbp:termEnd ?termEnd . FILTER(year(NOW()) - year(?termEnd) <= 20) },qald-7 +Give me all gangsters from the prohibition era.,PREFIX dbo: PREFIX dbr: PREFIX dct: PREFIX dbc: select distinct ?uri where { ?uri dbo:occupation dbr:Gangster . ?uri dct:subject dbc:Prohibition-era_gangsters . },qald-7 +Give me all Seven Wonders of the Ancient World.,PREFIX dct: PREFIX dbc: select ?uri where { ?uri dct:subject dbc:Seven_Wonders_of_the_Ancient_World },qald-7 +Give me all chemical elements.,PREFIX rdf: PREFIX owl: PREFIX dct: PREFIX dbc: select distinct ?uri where { ?uri rdf:type owl:Thing . ?uri dct:subject dbc:Chemical_elements . },qald-7 +How many rivers and lakes are in South Carolina?,PREFIX dbo: PREFIX dbr: PREFIX rdf: PREFIX dct: PREFIX dbc: select (COUNT(distinct ?uri) as ?count) where { { ?uri dbo:location dbr:South_Carolina . ?uri rdf:type dbo:Lake . } UNION { ?uri dct:subject dbc:Rivers_and_streams_of_South_Carolina . } },qald-7 +How many states are in Mexico?,PREFIX dbo: PREFIX dbr: select (count(?uri) as ?count) where { ?uri dbo:type dbr:States_of_Mexico },qald-7 +How many theories did Albert Einstein come up with?,PREFIX dbr: PREFIX dbo: select (count(?uri) as ?count) where { dbr:Albert_Einstein dbo:knownFor ?uri},qald-7 +Is horse racing a sport?,PREFIX dbr: PREFIX dbo: ask where { dbr:Horse_racing a dbo:Sport },qald-7 +Is Pluto really a planet?,PREFIX dbr: PREFIX dbo: ask where { dbr:Pluto a dbo:Planet },qald-7 +Was Sigmund Freud married?,PREFIX dbr: PREFIX dbo: ask where { dbr:Sigmund_Freud dbo:spouse ?uri },qald-7 +What form of government is found in South Africa?,PREFIX dbr: PREFIX dbo: select ?uri where { dbr:South_Africa dbo:governmentType ?uri },qald-7 +What is the largest state in the United States?,PREFIX dct: PREFIX dbc: PREFIX rdf: PREFIX dbo: select ?uri where { ?uri dct:subject dbc:States_of_the_United_States. ?uri rdf:type dbo:AdministrativeRegion. ?uri dbo:areaTotal ?area } ORDER BY DESC(?area) OFFSET 0 LIMIT 1,qald-7 +What is the longest river in the world?,PREFIX rdf: PREFIX dbo: select ?uri where { ?uri rdf:type dbo:BodyOfWater . ?uri dbo:length ?length } ORDER BY DESC(?length) LIMIT 1,qald-7 +Which building after the Burj Khalifa has the most floors?,PREFIX res: PREFIX rdf: PREFIX dbo: SELECT DISTINCT ?uri WHERE { res:Burj_Khalifa dbo:floorCount ?burj . ?uri rdf:type dbo:Building . ?uri dbo:floorCount ?proj . FILTER(?proj < ?burj) } ORDER BY DESC(?proj) LIMIT 1,qald-7 +What is the wavelength of indigo?,PREFIX dbr: PREFIX dbo: select ?n where { dbr:Indigo dbo:wavelength ?n },qald-7 +What was the name of the famous battle in 1836 in San Antonio?,PREFIX xsd: PREFIX rdf: PREFIX dbo: PREFIX dbr: select ?uri where { ?uri rdf:type dbo:MilitaryConflict. ?uri dbo:place dbr:San_Antonio. ?uri dbo:date ?date. FILTER ( ?date > '1835-12-31T00:00:00Z'^^xsd:dateTime). FILTER ( ?date <= '1836-12-31T00:00:00Z'^^xsd:dateTime) },qald-7 +What were the names of the three ships used by Columbus?,PREFIX rdf: PREFIX dbo: PREFIX dct: PREFIX dbc: select ?uri where { ?uri rdf:type dbo:Ship. ?uri dct:subject dbc:Christopher_Columbus. ?uri dct:subject dbc:Exploration_ships. },qald-7 +What were the original 13 British colonies?,PREFIX dct: PREFIX dbc: select distinct ?uri where { ?uri dct:subject dbc:Former_British_colonies. ?uri dct:subject dbc:Thirteen_Colonies. },qald-7 +When did Muhammad die?,PREFIX res: PREFIX dbo: select distinct ?date where { res:Muhammad dbo:deathDate ?date. },qald-7 +When was the De Beers company founded?,PREFIX res: PREFIX dbo: select distinct ?date where { res:De_Beers dbo:foundingYear ?date. },qald-7 +When was John Adams born?,PREFIX res: PREFIX dbo: select distinct ?date where { res:John_Adams dbo:birthDate ?date. },qald-7 +Which American presidents were in office during the Vietnam War?,PREFIX res: PREFIX dbo: PREFIX dct: PREFIX dbc: select distinct ?uri where { res:Vietnam_War dbo:commander ?uri . ?uri dct:subject dbc:Presidents_of_the_United_States . },qald-7 +Which city has the oldest running metro?,PREFIX dbo: PREFIX dbr: PREFIX rdf: select ?loc where { ?uri dbo:type dbr:Rapid_transit . ?uri dbo:openingYear ?date . ?uri dbo:location ?loc . ?loc rdf:type dbo:City . } ORDER BY ASC(?date) LIMIT 1,qald-7 +Which holidays are celebrated around the world?,PREFIX rdf: PREFIX dbo: select distinct ?uri where { ?uri rdf:type dbo:Holiday. },qald-7 +Who assassinated President McKinley?,PREFIX rdf: PREFIX dbo: PREFIX dct: PREFIX dbc: select distinct ?uri where { ?uri rdf:type dbo:Person . ?uri dct:subject dbc:American_assassins . ?uri dct:subject dbc:Assassination_of_William_McKinley . },qald-7 +Who discovered Pluto?,PREFIX dbr: PREFIX dbo: select ?uri where { dbr:Pluto dbo:discoverer ?uri },qald-7 +Who killed Caesar?,PREFIX dct: PREFIX dbc: select distinct ?uri where { ?uri dct:subject dbc:Assassins_of_Julius_Caesar. },qald-7 +Who was buried in the Great Pyramid of Giza?,PREFIX dbo: PREFIX dbr: select ?uri where { ?uri dbo:restingPlace dbr:Great_Pyramid_of_Giza . } ,qald-7 +Who was the first King of England?,PREFIX rdf: PREFIX dbo: PREFIX yago: select distinct ?uri where { ?uri rdf:type dbo:Royalty. ?uri rdf:type yago:WikicatEnglishMonarchs . ?uri dbo:activeYearsStartYear ?date . } ORDER BY ASC(?date) OFFSET 0 LIMIT 1,qald-7 +What was the final result of the War of the Roses?,PREFIX dbo: PREFIX dbr: select distinct ?result where { ?uri dbo:isPartOfMilitaryConflict dbr:Wars_of_the_Roses. ?uri dbo:result ?result . ?uri dbo:date ?date } ORDER BY DESC(?date) OFFSET 0 LIMIT 1,qald-7 +Who writes the Farmers' Almanac?,PREFIX dbp: select ?uri where { dbp:editor ?uri. },qald-7 +How big is the earth's diameter?,PREFIX xsd: PREFIX res: PREFIX dbo: select distinct (xsd:double(?radius)*2 AS ?diameter) where { res:Earth dbo:meanRadius ?radius . },qald-7 +When did Paraguay proclaim its independence?,PREFIX res: PREFIX dbp: select distinct ?date where { res:Paraguay dbp:establishedDate ?date . },qald-7 +How many people live in Eurasia?,PREFIX res: PREFIX dbo: select distinct ?population where { res:Eurasia dbo:populationTotal ?population . },qald-7 +Give me the runtime of Toy Story.,PREFIX res: PREFIX dbo: select distinct ?runtime where { res:Toy_Story dbo:runtime ?runtime . },qald-7 +What was the first name of the band Queens of the Stone Age?,PREFIX res: PREFIX dbo: select distinct ?name where { res:Queens_of_the_Stone_Age dbo:alias ?name . },qald-7 +Give me the birth place of Frank Sinatra.,PREFIX res: PREFIX dbo: select distinct ?place where { res:Frank_Sinatra dbo:birthPlace ?place . },qald-7 +Which university did Angela Merkel attend?,PREFIX res: PREFIX dbo: select distinct ?university where { res:Angela_Merkel dbo:almaMater ?university . },qald-7 +What is the alma mater of the chancellor of Germany Angela Merkel?,PREFIX dbo: PREFIX dbr: SELECT ?Almamater WHERE { dbr:Angela_Merkel dbo:almaMater ?Almamater },qald-8 +How large is the area of UK?,PREFIX dbo: PREFIX dbr: SELECT ?area WHERE { dbr:United_Kingdom dbo:areaTotal ?area },qald-8 +Who is the author of the interpretation of dreams?,PREFIX dbo: PREFIX dbr: SELECT ?Author WHERE { dbr:The_Interpretation_of_Dreams dbo:author ?Author },qald-8 +What is the birth name of Adele?,PREFIX dbo: PREFIX dbr: SELECT ?bn WHERE { dbr:Adele dbo:birthName ?bn },qald-8 +What are the top selling luxury vehicle brands in Germany?,PREFIX dbo: PREFIX dct: PREFIX dbc: SELECT ?company WHERE { ?company dct:subject dbc:Car_manufacturers_of_Germany ; dbo:equity ?equity ; dbo:netIncome ?netIncome ; dbo:production ?production ; dbo:revenue ?revenue } ORDER BY DESC(?equity),qald-8 +How many awards has Bertrand Russell?,PREFIX dbr: PREFIX dbp: SELECT (COUNT(?Awards) AS ?Counter) WHERE { dbr:Bertrand_Russell dbp:awards ?Awards },qald-8 +Who is Dan Jurafsky?,PREFIX dbo: PREFIX dbr: SELECT ?Dan WHERE { VALUES ?Dan {dbr:Daniel_Jurafsky } },qald-8 +When will start the final match of the football world cup 2018?,PREFIX dbr: PREFIX dbp: SELECT ?Date WHERE { dbr:2018_FIFA_World_Cup dbp:date ?Date } OFFSET 24 LIMIT 1,qald-8 +how much is the elevation of Düsseldorf Airport ?,PREFIX dbo: PREFIX dbr: SELECT ?ele WHERE { dbr:Düsseldorf_Airport dbo:elevation ?ele } LIMIT 1,qald-8 +how much is the total population of european union?,PREFIX dbo: PREFIX dbr: SELECT ?europop WHERE { dbr:European_Union dbo:populationTotal ?europop },qald-8 +when was the founding date of french fifth republic?,PREFIX dbo: PREFIX dbr: SELECT ?ff WHERE { dbr:French_Fifth_Republic dbo:foundingDate ?ff },qald-8 +Who are the founders of BlaBlaCar?,PREFIX dbr: PREFIX dbp: SELECT ?founder WHERE { dbr:BlaBlaCar dbp:founders ?founder },qald-8 +how many foreigners speak German?,PREFIX dbr: PREFIX dbp: SELECT ?Ger_lang WHERE { dbr:German_language dbp:speakers ?Ger_lang } OFFSET 1 LIMIT 1,qald-8 +Where is the birthplace of Goethe?,PREFIX dbo: PREFIX dbr: SELECT ?Goethe WHERE { dbr:Johann_Wolfgang_von_Goethe dbo:birthPlace ?Goethe },qald-8 +Where is the origin of Carolina reaper?,PREFIX dbo: PREFIX dbr: SELECT ?uri WHERE { dbr:Carolina_Reaper dbo:origin ?uri },qald-8 +How much is the population of Mexico City ?,PREFIX dbo: PREFIX dbr: SELECT ?Mexico_City WHERE { dbr:Mexico_City dbo:populationTotal ?Mexico_City },qald-8 +What is the nick name of Baghdad?,PREFIX dbr: PREFIX foaf: SELECT ?nm WHERE { dbr:Baghdad foaf:nick ?nm },qald-8 +Who is the novelist of the work a song of ice and fire?,PREFIX dbr: PREFIX dbp: SELECT ?Novelist WHERE { dbr:A_Song_of_Ice_and_Fire dbp:author ?Novelist },qald-8 +What is the percentage of area water in Brazil?,PREFIX dbo: PREFIX dbr: SELECT ?percentage WHERE { dbr:Brazil dbo:percentageOfAreaWater ?percentage },qald-8 +How much is the population of Iraq?,PREFIX dbo: PREFIX dbr: SELECT ?pIraq WHERE { dbr:Iraq dbo:populationTotal ?pIraq },qald-8 +What is the population of Cairo?,PREFIX dbo: PREFIX dbr: SELECT ?pop WHERE { dbr:Cairo dbo:populationTotal ?pop },qald-8 +How much is the population density rank of Germany?,PREFIX dbr: PREFIX dbp: SELECT ?rank WHERE { dbr:Germany dbp:populationDensityRank ?rank },qald-8 +What is the relation between Resource Description Framework and Web Ontology Language?,PREFIX dbo: PREFIX dbr: SELECT ?rdf_owl WHERE { dbr:Web_Ontology_Language dbo:abstract ?rdf_owl } LIMIT 1,qald-8 +How large is the total area of North Rhine-Westphalia?,PREFIX dbo: PREFIX dbr: SELECT ?tarea WHERE { dbr:North_Rhine-Westphalia dbo:areaTotal ?tarea },qald-8 +What is the original title of the interpretation of dreams?,PREFIX dbr: PREFIX foaf: SELECT ?title WHERE { dbr:The_Interpretation_of_Dreams foaf:name ?title },qald-8 +Who are the writers of the Wall album of Pink Floyd?,PREFIX dbr: PREFIX dbp: SELECT ?writers WHERE { dbr:The_Wall dbp:writer ?writers },qald-8 +When was the death of Shakespeare?,PREFIX dbo: PREFIX dbr: SELECT ?x WHERE { dbr:William_Shakespeare dbo:deathDate ?x } LIMIT 1,qald-8 +With how many countries Iran has borders?,PREFIX dbr: PREFIX dbp: SELECT ?border WHERE { dbr:Geography_of_Iran dbp:borders ?border } LIMIT 8,qald-8 +What is the smallest city by area in Germany?,PREFIX dbo: PREFIX skos: PREFIX dbc: PREFIX dct: SELECT ?city WHERE { ?m skos:broader dbc:Cities_in_Germany . ?city dct:subject ?m ; dbo:areaTotal ?area } ORDER BY ?area LIMIT 1,qald-8 +Which beer brewing comapnies are located in North-Rhine Westphalia?,PREFIX dbo: PREFIX dct: PREFIX dbc: PREFIX rdf: SELECT ?company WHERE { ?company dct:subject dbc:Companies_based_in_North_Rhine-Westphalia ; rdf:type dbo:Brewery },qald-8 +What is the largest city in america?,PREFIX dbo: PREFIX dbr: SELECT ?lcity WHERE { dbr:United_States dbo:largestCity ?lcity },qald-8 +Who is the current federal minister of finance in Germany?,PREFIX dbo: SELECT ?leader WHERE { dbo:leader ?leader },qald-8 +What is the highest mountain in the Bavarian Alps?,PREFIX dbo: PREFIX dbr: SELECT ?m WHERE { dbr:Bavarian_Alps dbp:highest ?m} ,qald-8 +Who is 8th president of US?,PREFIX dbo: PREFIX dbp: PREFIX dbr: SELECT ?name WHERE { dbr:8th_President_of_the_United_States dbo:wikiPageRedirects ?link . ?link dbp:name ?name },qald-8 +Where is the most deep point in the ocean?,"PREFIX rdfs: PREFIX dct: PREFIX dbr: SELECT ?point WHERE { dbr:Extreme_points_of_Earth dct:subject ?x . ?point dct:subject ?x ; rdfs:comment ?comment FILTER ( lang(?comment) = ""en"" ) } OFFSET 13 LIMIT 1",qald-8 +In which state Penn State University is located?,PREFIX dbo: PREFIX dbr: SELECT ?s WHERE { dbr:Pennsylvania_State_University dbo:state ?s },qald-8 +Which species does an elephant belong?,PREFIX dbr: PREFIX dbp: SELECT ?species WHERE { dbr:Elephant dbp:species ?species },qald-8 +What is Donald Trump's main business?,PREFIX dbo: PREFIX dbr: SELECT ?owner WHERE { ?owner dbo:owner dbr:Donald_Trump },qald-8 +What is the last work of Dan Brown?,PREFIX dbo: PREFIX dbp: PREFIX dbr: SELECT ?book ?date WHERE { ?book dbo:author dbr:Dan_Brown . ?book dbp:releaseDate|dbo:publicationDate ?date } ORDER BY DESC(?date),qald-8 +What other books have been written by the author of The Fault in Our Stars?,PREFIX dbo: SELECT ?books WHERE { ?books dbo:author },qald-8 +When was the last episode of the TV series Friends aired?,PREFIX dbo: PREFIX dbr: SELECT ?date WHERE { dbr:Friends dbo:completionDate ?date },qald-8 +What is the highest mountain in Saxony Germany?,PREFIX dbo: PREFIX dbr: SELECT ?m WHERE { ?m dbo:mountainRange dbr:Ore_Mountains ; dbo:elevation ?height } ORDER BY DESC(?height) LIMIT 1,qald-9 +How much is the population of mexico city ?,PREFIX dbo: PREFIX dbr: SELECT ?Mexico_City WHERE { dbr:Mexico_City dbo:populationTotal ?Mexico_City },qald-9 +how much is the total population of european union?,PREFIX dbo: PREFIX dbr: SELECT ?europop WHERE { dbr:European_Union dbo:populationTotal ?europop },qald-9 +Where is Sungkyunkwan University?,PREFIX dbo: PREFIX dbr: SELECT DISTINCT ?country WHERE { dbr:Sungkyunkwan_University dbo:city ?city ; dbo:country ?country },qald-9 +When was the death of Shakespeare?,PREFIX dbo: PREFIX dbr: SELECT ?x WHERE { dbr:William_Shakespeare dbo:deathDate ?x } LIMIT 1,qald-9 +how big is the total area of North Rhine- Westphalia?,PREFIX dbo: PREFIX dbr: SELECT ?tarea WHERE { dbr:North_Rhine-Westphalia dbo:areaTotal ?tarea },qald-9 +how much is the population Iraq?,PREFIX dbo: PREFIX dbr: SELECT ?pIraq WHERE { dbr:Iraq dbo:populationTotal ?pIraq },qald-9 +how much is the population densty rank of germany?,PREFIX dbr: PREFIX dbp: SELECT ?rank WHERE { dbr:Germany dbp:populationDensityRank ?rank },qald-9 +How many gold medals did Michael Phelps win at the 2008 Olympics?,"PREFIX dbo: PREFIX dbr: PREFIX rdf: PREFIX rdfs: SELECT Count(?sub) as ?c WHERE { ?sub dbo:goldMedalist dbr:Michael_Phelps . filter (contains (str(?sub), ""2008"") && contains (str(?sub), ""Olympics"")) }",qald-9 +Are Taiko some kind of Japanese musical instrument?,ASK WHERE { a },qald-9 +What is Angela Merkel’s birth name?,PREFIX res: PREFIX dbp: SELECT DISTINCT ?string WHERE { res:Angela_Merkel dbp:birthName ?string },qald-9 +Which classes does the Millepede belong to?,PREFIX res: PREFIX dbp: SELECT DISTINCT ?String WHERE { res:Millipede dbp:taxon ?String },qald-9 +Sean Parnell was the governor of which U.S. state?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Sean_Parnell dbo:region ?uri },qald-9 +Is Pamela Anderson a vegan?,PREFIX dbr: ASK WHERE { dbr:Pamela_Anderson a },qald-9 +How many students does the Free University of Amsterdam have?,SELECT DISTINCT ?num WHERE { dbr:Vrije_Universiteit_Amsterdam ?num },qald-9 +How many James Bond movies do exist?,SELECT (COUNT(DISTINCT ?uri) AS ?c) WHERE { ?uri dct:subject },qald-9 +Give me all American presidents of the last 20 years.,PREFIX dbo: PREFIX dbp: PREFIX dct: PREFIX dbc: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Person ; dct:subject dbc:Presidents_of_the_United_States ; dbo:activeYearsEndDate ?termEnd FILTER ( ( year(now()) - year(?termEnd) ) <= 20 ) },qald-9 +When is the movie Worst Case Scenario going to be in cinemas in the Netherlands?,"PREFIX dbo: PREFIX rdfs: PREFIX dbr: PREFIX rdf: PREFIX foaf: SELECT DISTINCT ?rel WHERE { ?p ?o ; dbo:releaseDate ?rel FILTER contains(lcase(str(?o)), ""netherlands"") }",qald-9 +What languages are spoken in Pakistan?,SELECT DISTINCT ?uri WHERE { ?uri },qald-9 +What is the wavelength of Indigo?,PREFIX dbo: PREFIX dbr: SELECT ?n WHERE { dbr:Indigo dbo:wavelength ?n },qald-9 +Which daughters of British earls died at the same place they were born at?,PREFIX dbo: PREFIX yago: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type yago:WikicatDaughtersOfBritishEarls ; dbo:birthPlace ?x ; dbo:deathPlace ?y FILTER ( ?x = ?y ) },qald-9 +What is the name of the university where Obama's wife studied?,SELECT DISTINCT ?s WHERE { ?x . ?x ?s },qald-9 +In which city is the headquarter of Air China?,SELECT DISTINCT ?uri WHERE { ?uri . ?uri a },qald-9 +Give me all libraries established before 1400.,SELECT DISTINCT ?uri WHERE { ?uri a ; ?year FILTER ( ?year < 1400 ) },qald-9 +In which studio did the Beatles record their first album?,PREFIX dbo: PREFIX dbp: PREFIX dbr: PREFIX rdf: PREFIX rdfs: PREFIX db: SELECT ?studio WHERE { ?album dbo:artist dbr:The_Beatles ; rdf:type dbo:Album ; dbo:releaseDate ?date ; dbp:studio ?studio } ORDER BY ASC(?date) LIMIT 1,qald-9 +Which beer brewing companies are located in North-Rhine Westphalia?,PREFIX dbo: PREFIX dct: PREFIX dbc: PREFIX rdf: SELECT ?company WHERE { ?company dct:subject dbc:Companies_based_in_North_Rhine-Westphalia ; rdf:type dbo:Brewery },qald-9 +What were the names of the three ships by Columbus?,PREFIX dbo: PREFIX dct: PREFIX dbc: PREFIX rdf: SELECT ?uri WHERE { ?uri rdf:type dbo:Ship ; dct:subject dbc:Christopher_Columbus ; dct:subject dbc:Exploration_ships },qald-9 +How many movies did Stanley Kubrick direct?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . },lcquad +Which city's foundeer is John Forbes?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +What is the river whose mouth is in deadsea?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +What is the allegiance of John Kotelawala ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +How many races have the horses bred by Jacques Van't Hart participated in?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },lcquad +"What is the incumbent of the Al Gore presidential campaign, 2000 and also the president of the Ann Lewis ?"," SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ",lcquad +What is the region of Tom Perriello ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +What layout can be found in cars similar to the Subaru Outback?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Starwood operates in which places?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Name the mascot of Austin College ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +What was the university of the rugby player who coached the Stanford rugby teams during 1906-1917?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +"How many people live in Wilton, Connecticut?","SELECT DISTINCT COUNT(?uri) WHERE {?uri . }",lcquad +What awards did the film director of The Haunted House win ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Name the origin of Henry Cluney ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +List the things for which people of New Orleans are famous for?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +What sports are played in schools in the capital region?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +"What company brought Riddim Ribbon to the market, and developed the batch monitor?", SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +In which part of the world can i find Xynisteri and Mavro?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +which awards have been given to people who fought in the Battle of France?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Name the resting place of Charles Edward Magoon ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Who built the stadium which was rented for the 2013 Copa Centroamericana ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Who was the silver medalist of Gymnastics at the 2008 Summer Olympics Women's artistic individual all-around ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +what are some common surnames of female people?, SELECT DISTINCT ?uri WHERE {?uri } ,lcquad +Which company owns the manufacturer of the Edsel Ranger?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +List the total number of board members who share board with Creative commons ?, SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri },lcquad +"Who is the leader of United States House of Representatives elections, 1788 and 1789 ?"," SELECT DISTINCT ?uri WHERE { ?uri } ",lcquad +The fugitive Kind and the Notebook of Trigorin is written by what author?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +Name the mountain whose range is Sierra Nevada (U.S.) and parent mountain peak is Nevado de Toluca?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +Where did the designer of Monument to Salavat Yulaev die?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +How many mammals are in the Chordate phylum?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . ?uri },lcquad +List the battles fought by Roh Tae-woo ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Which genre of books are published by Random House?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +"Which famous political figure appointed william cushing, and also founded Pittsburgh>", SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Which newspapers are owned by companies which are under Rolv Erik Ryssdal?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },lcquad +Which series has an episode called The lost special and also a character named Sherlock Holmes ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +What are some Louisiana based models known for?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +List the common official language of the ladonia and Empire of Atlantium ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +What are the prizes won by the animator of The Skeleton Dance ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Which office holder's constituency is Haight-Ashbury and has military unit as USS Kittiwake ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +What is the region of the ethnic group which speaks the language of Arkansas?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +What is the religion of the member of parliament who is a relative of Sarathchandra Rajakaruna?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +What organisation regulates and controls the New Sanno Hotel?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Who is the common manager of Aston Villa 2000-02 season and aldo the manager of Middlesbrough F.C. season 2009-10, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Was Ganymede discovered by Galileo Galilei?,ASK WHERE { },lcquad +Name the F1 racer with relative as Ralf Schumacher and has child named Mick Schumacher?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +Does the Toyota Verossa have the front engine design platform?,ASK WHERE { . },lcquad +What are some other products of the banks which makes Postbanken?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +What is the occupation of the Irving Chernev and Karen Grigorian?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +Who produces the trains operated by the MTR?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Name the TV show with distributor as Broadcast syndication and has theme music composed by Primus ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +In which countries can i find some feminist writers?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +"In which teams did anyone who played as a defencemen, play previously?",SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +What are the other band member of the Bands whose current members is Hynief?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Which line of the Vadodara Junction railway station is the route end of Mumbai Vadodara Expressway ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Who authored the works published in the Jump Square Magazine?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +How many things are aired on BBC HD?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . },lcquad +Which work of Craig van Tilbury is close to the area of The Chess Monthyl ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Where does the successor of Thongsuk Samdaengpan reside?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +What is the location city of the Denver Broncos which is also place of birth of the William C. Cramer ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Was Mark Twain a character of Mark Twain Tonight?,ASK WHERE { },lcquad +List bacteria whose order (taxonomy) is Bacillales and domain is Bacteria?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +What is the place of the Geography Club (play) which is also the official residence of the Scott Berkun?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +What are some characters of series produced by Ricky Grevais?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . },lcquad +"Is the song Killing is Out, School is in belong in the The Next Step?","ASK WHERE { }",lcquad +Which band's former member are Kevin Jonas and Joe Jonas?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +Count all those whose youth club was managed by Luis Enrique.,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?uri ?x . },lcquad +Is camel of the chordate phylum?,ASK WHERE { },lcquad +What is the purpose of the Maharashtra Chess Association which is genere of PyChess?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Whose former teams are Indianapolis Colts and Carolina Panthers?,SELECT DISTINCT ?uri WHERE { ?uri . ?uri . },lcquad +In which language is All I need is Your Sweet lovin written ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Which colonel consort is Dolley Madison?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . },lcquad +Which title of Zaman Shah Durrani is also the nationality of Salahuddin ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Does the merlin express have a hub at the cibano international airport?,ASK WHERE { },lcquad +Was Duanne Allman known to play the Les Paul?,ASK WHERE { },lcquad +List the judges of Rising Star which is also the artist of Brad Paisley discography ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Who are some people whose relation is hqed in Gold Base?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . },lcquad +Which party does Iqbal Singh and B Shiva Rao currently belong to?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +In which state is the alma mater of Ben Ysursa located ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +"What sport amongst the one Lagos Preparatory School practices, did Willian Garne play for?", SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +What are the beverages whose origin is England?, SELECT DISTINCT ?uri WHERE {?uri } ,lcquad +Which current member of Insect vs Robots is also the music composer of Kenny Dies ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +What are the television shows whose distributer is HBO?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +What is the distributing label of StandBy Records ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Who is the film star of On Air with Ryan Seacrest ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +"Who have children named James Roosevelt and Franklin Delano Roosevelt, Jr.?","SELECT DISTINCT ?uri WHERE { ?uri . ?uri . }",lcquad +In how many different places does Canal and River Trust own its assets?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },lcquad +Count the total number of launch site of the rockets which have been launched form Cape Canaveral Air Force Station ?, SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri },lcquad +List some leaders of regions in the Indian Standard Time Zone?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Name some comic characters created by Bruce Timm?,SELECT DISTINCT ?uri WHERE {?uri . },lcquad +Which university attended by Franklin W. Olin was also the alma mater of Patty Lin ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Whihc associate of THomas Bryan Martin is also the founder of Pittsburgh ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Who gives the license of WXXV-DT2 ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Count the number of sports played by schools which play hockey ?, SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri },lcquad +List the tomb of the royalties whose burial place is Little Easton ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +What are some relatives of the people who fought in Operation Barbarossa?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +How many awards have been given to screenwriters?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },lcquad +Who is the builder of Estadio Nacional de Costa Rica (2011) ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +How many software run on operating system is Microsoft Windows?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . ?uri },lcquad +What is the awards given to the horse whose grandson is the famous Counterpoint?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Where is the swedish covenant hospital?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Who won a Norbert Wiener Award for Social and Professional Responsibility?,SELECT DISTINCT ?uri WHERE {?uri . },lcquad +What awards have been given to Screenwriters?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Which office's people have died on the US Route 165?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +In which races have Tillingdale's horses participated?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +List the show related to the which was followed by Doctor Who Extra?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },lcquad +What is the predecessor of the automobile which is the related of Cadillac Fleetwood?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Which country's largest city is Lima?, SELECT DISTINCT ?uri WHERE {?uri } ,lcquad +Whose opponents are Ike Clanton and Billy Clanton?,SELECT DISTINCT ?uri WHERE { ?uri . ?uri . },lcquad +List the institute of Robert hall ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +To which religion does the commander of South Thailand insurgency belong?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Who was the writer of the novel Maniac Magee?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +Where is Emmett Hughes from?,SELECT DISTINCT ?uri WHERE { ?uri . },lcquad +What are the movies whose music is given by Laurie Johnson?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +What appliance Sony made after the success of PlayStation 2?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . },lcquad +What are some cars similar to luxury cars?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +"What television show is magistrated by Harry Connick, Jr.?","SELECT DISTINCT ?uri WHERE {?uri . ?uri }",lcquad +Did Paul Weatherwax an editor of Behave Yourself?,ASK WHERE { },lcquad +does the journal of cancer have the creative commons license?,ASK WHERE { },lcquad +What genre of games are made by Blizzard Entertainment studios?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Name the series of Doctor Who: Evacuation Earth ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +List the awards won by the writer of Face to Face ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +What is the common party of Chandra Shekhar and Govinda ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +What awards were given to the screenplayer of The Motorcycle Diaries?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Was Jack Ryan a nominee of US Senate?,ASK WHERE { },lcquad +What are some music artists whose bands have signed up with Entertainment One Music?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +What team did Dan Daoust and Don Ashby play for?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +Name the broadcast area of Radio Philippines Network ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Which district of Fort Heath radar station is also the state of Joesph Story ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Which river's mouth is located in Gulf of Mexico and has source location as Itasca State Park ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +Is my truly truly fair the band of mitch miller?,"ASK WHERE { }",lcquad +Which religion is prevalent in the schools of the Ashanti region?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Which politician was succeeded by someone who graduated from the Instituts d'tudes politiques?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },lcquad +How many different mascots are there of the NCAA teams?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },lcquad +"Which of the continents that Digitalb worked in, was christine rolfes born in?", SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Which nation hosts the WTA Tour Championships?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Name the television show whose theme music is composed by Julian Gingell and broadcasted on FOX ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +What is the prize received by the one who wrote the screen play of The Postman ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +What are the awrds won by Laemmle Theatres ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Is nintendo in the video games industry?,ASK WHERE { },lcquad +"Name the office holder whose predecessor is Henry E. Catto, Jr. and won Screen Actors Guild Life Achievement Award?","SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri }",lcquad +Which notable commanders of the Army Group Oberrhein (Germany) is the leader of the Kriminalpolizei?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Which maintainer of Cheasty Boulevard South is also the city of Soccer Bowl' 76 ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Which colonel has allegiance to Colony of Virginia ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +Which driver came first in the 1993 European Grand Prix ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +What is the layout of the cars similar to that of the Subaru Outback?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Name the university which has Lieutenaunt general as superintendent and mascot as Gyrfalcon ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +How many other ingredient are there in the foods whihh have one of the ingredient as Potato ?, SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri },lcquad +In which country is the Duong river?,SELECT DISTINCT ?uri WHERE { ?uri . },lcquad +How many companies have launched their rockets from the Vandenerg Air base?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?uri },lcquad +List the destinations to which the airlines headquartered at the Gatwick Airport fly to?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +What are some given names for males?, SELECT DISTINCT ?uri WHERE {?uri } ,lcquad +The official residence of Sukhumbhand paribatra ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +What are the television shows whose company's predecessor is Desilu Productions?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },lcquad +What is operated by FedExField ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Which battle did both Steven Palazao and tony hogg fight in?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +"Which company which assembles its cars in Broadmeadows, Victoria?","SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x }",lcquad +List the people casted in Betsy's Wedding and 16 candles?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . ?uri },lcquad +Foxconn makes how many things?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . },lcquad +Do the polet airlines fly to moscow?,ASK WHERE { },lcquad +In how many nations can I find dishes made of Shallot?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?uri },lcquad +What is the mascot of the military unit of David Prowse?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Does Cohoes a junction on the NY State Route 470?,"ASK WHERE { }",lcquad +How many other important things have been written by the creator of Stuart Alan Jones?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },lcquad +What is the genre of the Band whose home town is County Westmeath?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Which sports are played at institues in Taguig?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +"Whose album is Haiti, I am sorry?", SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Is Microsoft office written in C++,ASK WHERE { },lcquad +Whose band members are known to play a PRS guitar?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . },lcquad +Which river's source place is Gloucestershire and mouth in North Sea?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +Name the commanders of military conflicts where Roundhead was one of the commander ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +What are some short story kind of Books?, SELECT DISTINCT ?uri WHERE {?uri } ,lcquad +What are the nicknames of the schools whose color is royal blue?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +"To what political party do the politicians graduated from Somerville college, Oxford belong to?","SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x }",lcquad +What awards did Jos Rivera (playwright) win?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Which political figures were awarded Screen Actors Guild Life Achievement Award?,SELECT DISTINCT ?uri WHERE {?uri . },lcquad +What are the things whose director of photography died in United States?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . },lcquad +What is the Home Stadium of the Kenya national under-20 football team where Matin Suji was also born ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Name a company with key person as Dennis Muilenburg and Raymond Conner ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +Which branch of american military have both George Siebels jr and Leroy Collins served?,"SELECT DISTINCT ?uri WHERE { ?uri. ?uri . ?uri }",lcquad +What are some scientists who have stateless citizenship?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +Name the regions served by Toll Global Express ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +What is the protected area whose nearest city is Kenya?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +Count the nearest city to the historic palce whose one of the nearest city is Wisconsin ?, SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri },lcquad +Give me the total number of commander of the military conflicts whose commander is Roundhead (Wyandot)., SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri },lcquad +How many places were ruled by Elizabeth II?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . ?uri },lcquad +List the interest of the scientists whose one of the field is Chinese poetry ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Who was the narrator of the show who's music is composed by John Douglas?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +"Which parent comapny of hypnotize Minds is the label of the Producers , a 2005 film ?", SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Which college of Luke List (golfer) is the alma mater of K. Terry Dornbush, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Who is the fictional character who portrayed in Terminator 2: Judgment Day?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +Which team of Dan Shamash is also the debutant team of John Estes ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Where do employees of Deroit Red Wings live?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +What are some countries where companies headquartered in the Klang Valley operate?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Did Chant Mas originate in West Africa?,ASK WHERE { },lcquad +"Name the river whose mouth country is Mozambique and source region is North-Western Province, Zambia?","SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri }",lcquad +Give me a count of bacterias which belongs to Bacilli class?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . ?uri },lcquad +How many producers have worked for FremantleMedia productions?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },lcquad +Who is on the board of Kate Spade and company?,SELECT DISTINCT ?uri WHERE {?uri . },lcquad +Which animator of Tommy Ticker's Tooth is also the director of The Haunted house ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Name the university whose athletic department is called National Collegiate Athletic Association and has a chancellor named Nicholas S. Zeppos?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +Name the common managing club of the Ivan Toplak and Bret Simon?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +How many shows are made by Larry David?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . ?uri },lcquad +Martin AN/GSG-5 is a part of the building in which city?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +How many architects are there who have made something used by Oakland athletics?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },lcquad +In which company's boards does the founder of Bomis sit?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +"What genre isPyChess from, which employes Craig Van Tilbury?", SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Where is Ethiopian Parliament Building located ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +"Which are the cities on the river which also flows in Tukwila, Washington ?","SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x }",lcquad +Which award is presented by Downtown Athletic Club?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +Who appointed Joseph Clay and William Cushing to their office?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +Who are the biological parents of Dannielynn Birkhead?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +List the awards won by the spouse of Harriet Andersson?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Who was engaged in wars of Fort Gadsden and Fort Barrancas?,SELECT DISTINCT ?uri WHERE { ?uri . ?uri . },lcquad +Where are Solidus and Aureus used?,SELECT DISTINCT ?uri WHERE { ?uri . ?uri . },lcquad +Which company owns the airlines whose hub is in Dubai?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Which appointer of William Clark is the successor of Levi Lincoln Sr ?," SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ",lcquad +Which company's division is Audi India? Correct Question, SELECT DISTINCT ?uri WHERE {?uri } ,lcquad +"What was the book that lead to Sagan's Cosmos, about?",SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +What is the nationality of the chancellor who was served by Michael Mayr?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +What is the official residence of the Helen Getachew which is also the palce of death of the Haile Selassie Gugsa ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Who built the Ford Y-block engine ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Does Gibby Haynes play the saxophone?,ASK WHERE { },lcquad +Is The Orator in the National Archaeological Museum of Florence?,ASK WHERE { },lcquad +What is the region of Lumberjack ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +"Where did the president study, who's the president of Besiktas JK?",SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Elizabeth Alexander and Jared Bernstein served under which Vice President?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +How many awards have royal designers for industry awardwinners got?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?uri },lcquad +Where is the team of Abdel Boucker located ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +For which other teams do members of tanzanian national football team play?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +What is the governing body of Burro Flats Painted Cave ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Did Hank Williams Jr. make Early in the Morning and Late at Night?,ASK WHERE { },lcquad +What are some cartoons distributed by a subsidiary of Time Warner?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },lcquad +Whose famous works have been illustrated by E W Kemble?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . },lcquad +Who was once married to both Kelly Brook and Rosie Huntington-Whiteley?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +Which Fox show is presented by Ryan Seacrest?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +Where did george f hoar and willian langer spend the most important time of their political career?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +How many TV show has distributor located in Burbank California ?,"SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?uri ?x . ?uri }",lcquad +List the ceremonial county of East Tilbury ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Which television show's theme music composer is Gary Portnoy and subsequent work is Frasier?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +List the common sports between Fr. Agnel Multipurpose School and Jamiatu Muslim Mindanao, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +"Which award that has been given to James F Obrien, had used Laemmle Theatres for some service?", SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +What is the drafted team of the people expected to join toronto marlies?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Which office holder's predecessor is Lucius Cornelius and his associate is Marcus Calpurnius Bibulus?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +How many people have parterned with the person choroegraphed by Catarina Lindgren in the past?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?uri },lcquad +List everything governed by the Democratic Party of US?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . },lcquad +Name the current club of Abdelhameed Amarri ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +The pope whose shrine is in St Peter's Basilica was venerated in which sects?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Who is the father of Barbara Ann Crancer?,SELECT DISTINCT ?uri WHERE {?uri . },lcquad +Which home stadium of 2011-12 FC Spartak Moscow season is also the location of birth of the Svetlana Gounkina ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Which famous commander led the Siege of forn meigs and was involved in the battle of fort stephenson?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +Which games publishers are located in California?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . },lcquad +Where is the stadium of Philadelphia Rage ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Who produced the Pixar Image Computer?,SELECT DISTINCT ?uri WHERE {?uri . },lcquad +Was Marie Curie a doctoral student of Henri Becquerel?,ASK WHERE { },lcquad +What are the baseball teams who belongs to Guggenheim Partners?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +Count all the things licensed as Software as a service.,SELECT DISTINCT COUNT(?uri) WHERE {?uri . },lcquad +Who is the headcoach of 2014-15 Virginia Tech Hokies men's basketball team ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +What is the resting place of the politician who succeeded Samuel Hayes?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +What country had the title of 2001 Speedway Ekstraliga ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +How many broadcast area of the television stations exists whose broadcast area is Rodrigues ?, SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri },lcquad +What is the common governing body of the Naval Air Facility Adak and Oahu Railway and Land Company?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +Count the drinks originated in England.,SELECT DISTINCT COUNT(?uri) WHERE {?uri . ?uri },lcquad +What is the total number of other non-fiction subject of the books whose one of the subject is Racism?, SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri },lcquad +Name all the junctions of U.S. Route 59?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +What are some other services of the company whose service is Onedrive?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Give me some softwares which run on mac os,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +What is the city of the television station whose affiliations is LATV?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +"What is the state of the administrative region where Oscoda, Michigan is located?","SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x }",lcquad +Was Duanne Allman famous for playing the Gibson SG?,ASK WHERE { },lcquad +Who were all the people in office when bob hawke was the PM?, SELECT DISTINCT ?uri WHERE {?uri } ,lcquad +What is Bob Adams (American football) known for?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Is Guatemala a unitary state?,ASK WHERE { },lcquad +Who owns Chelsea F.C.?,SELECT DISTINCT ?uri WHERE {?uri . },lcquad +What is the common affiliation of the Monroe Carell Jr. Children's Hospital at Vanderbilt and alma mater of the Duncan U. Fletcher?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Among the scientist known for Manhattan Project who had a doctoral student named Charles Ellis ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +UEM group have made bridges crossing over what?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +How many relatives are there of the people who died in Germany?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },lcquad +Where do bachelor of arts live?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Was Castillo discovered by Galileo?,ASK WHERE { },lcquad +Does A foreign policy of freedom belong to the genre Politics?,ASK WHERE { },lcquad +How many mountain are there in Sierra Nevada range?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . ?uri },lcquad +What is the total number of other characters of the plays whose characters is Robin (comics)?, SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri },lcquad +What are the awards won by the spouse of Liv Ullmann ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +What is the Recorded of the Kaptaan is also the headquarters of the Orient News ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +What is the total number of other nearest countries to the lakes whose nearest countries is Uganda?, SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri },lcquad +How many companies have developed cross platformed softwares?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },lcquad +List the shows whose network is run by BBC.,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },lcquad +How many titles were given to people who engaged in the Operation Dragoon?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },lcquad +Which place founded by Penobscot Island Air is also the location fo Ellei Johndro ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Name the TV show whose opening theme is Gary Portnoy and the subsequent work is Frasier?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +List the pole drivers in the grand prixes where Williams Grand Prix Engineering was a first team?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Which appointer of the Joseph Clay (Georgia) is also the President of the William Carmichael (diplomat) ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Who is the employer of Michael M. Sears ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +List things developed by Autoconf ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +List all the artist of the TV shows which has McClain as one of the artist ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Who is the person whose child performed with Tony Bennett?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . },lcquad +Does the north carolina highway 280 end in Arden?,"ASK WHERE { }",lcquad +Is Angola Avante the anthem of Angola?,ASK WHERE { },lcquad +Name the river with mouth as Thames Estuary and passes through Reading Berkshire ?,"SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri }",lcquad +Who all play for the Ivory Coast football team?, SELECT DISTINCT ?uri WHERE {?uri } ,lcquad +List all the layouts of the automobile whose one of the layout is four-wheel-drive layout ?,"SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x }",lcquad +"To how many places does the airlines fly, whose head office is located at the Gatwick Airport?",SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?uri },lcquad +What are the television shows whose distributor is a division of Warner Bros. International TV?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },lcquad +Where is the arena of WPC Dynamo Moscow situated?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Which relative of George Madison is the appointer of John Drayton ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +"Does the mississippi orignate in the clearwater county, minnesota?","ASK WHERE { }",lcquad + How many scientist have won an award by the society led by Venkatraman Ramakrishnan?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?uri ?x . ?uri },lcquad +Who all did their high school in Denbigh high School?," SELECT DISTINCT ?uri WHERE {?uri } ",lcquad +Name the company founded in US and provides OneDrive as service ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +Which manufacturer of the Boeing B-17 Flying fortress is the manager of burro Flats Painted Caves ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Which owner of Drop.io made Sean Parker famous?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +What is the information appliance whose successor is PlayStation 4 and maker is Foxconn?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +What country provides a citizenship too Newin Chidchob and Seni Pramoj?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Which person has opponent Ike Clanton?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +Who is the builder of Atamurat-Kerkichi Bridge ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +name the mountain range of Le Gibloux ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Count me all the video game distributor whose parent company is Warner Bros ?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?uri ?x . ?uri },lcquad +Who all were involved in the wars fought by the commander Blue Jacket?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Is Judy Garland a character of End of the Rainbow?,ASK WHERE { },lcquad +Who is the associate of Thomas Bryan Martin ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +In what wars was Steve Buyer involved?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +What is the profession of the children of Herbert Pell ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Does Silver Airways have a hub at the Washington Dulles International Airport?,ASK WHERE { },lcquad +Whose labels are Victor Entertainment and Celluloid Records?,SELECT DISTINCT ?uri WHERE { ?uri . ?uri . },lcquad +Which astronauts went on the Gemini 8 mission?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad + Erik Jendresen is the writer of which television show?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +Where is the station whose sister channel is the Channel 3 in Thailand?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +How many people have written stuff broadcasted on the Tokyo Broadcasting System?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?uri },lcquad +What is the mascot of the military unit whose commander is Herbert Bautista ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Which city is the resting place of the Martin Ragaway and Chuck Connors ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . ?uri },lcquad +Which new Mexico based company produces Surface ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +Who is the person who are on the board of Freedom of the City?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +What cities are around the sea which flows into Marmara?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Companies headquartered in Geneva own which TV Shows?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . },lcquad +Who died due to Morphine ?,SELECT DISTINCT ?uri WHERE {?uri . },lcquad +Does Walt Disney Studio have a subsidiary called PixarCascadia_,ASK WHERE { },lcquad +Which purpose of the Maharashtra Chess Association is Abhijit kunte is also know for ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +What does the famous relative of Levon Ashotovich Grigorian do for a living?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Where is the debut team of Shaquil Barrett located?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Who owns Ivanpah Solar Power Facility?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +What artist of Charing Cross Bridge influenced Dorothea Sharp in her career?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +What is the game whose genre is Mind sport?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +List the awards given to the race horses bred by Willis Sharpe Kilmer.,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Which country's engineered have studied at Aero Klub in Wroclaw?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +"What is the common place where USS Camp DE-251 was built, and is one of the destinations of Emerald Air?", SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +List the religions of the commanders of Royal Thai Army.,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +What is the official name of Arkansas wine ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Which country is the birth place of Marcus Samuelsson and Samuel of Waldebba ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Name the battle fought by the military persons who also fought in Algeria ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Where is the head quarters of the parent company of Mall of America located?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Bridge that starts at Seberang Perai crosses over what?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Is Julia Gillard the prime minister of Kate Lundy?,ASK WHERE { },lcquad +"Comcast SportsNet is broadcasted in what area, which also has the Michigan Renaissance Festival?",SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +what cities are located on the sides of mediterranean sea?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +What is the purpose of some Maharashtran organizations?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +In how many territories were the wars fought where Fusil Gras Mile 1874 were used?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?x },lcquad +Mota Engil built bridges over which rivers?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +How many other field are there of the scientists whose one of the field is Mathematics ?, SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri },lcquad +"Twin cities 400 is operated by what city, which is the birthplace of Leona Baumgarter?", SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +How many people currently play for the NYC FC?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . },lcquad +"In how many other states do people live, whose languages are spoken in Nebraska?",SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },lcquad +Name the alma mater of Michael hahn ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +What is the mascot of the unit whose garrison is Canberra ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +List the governers of Jimmie Lou Fisher?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +How many people have played for a club whose coach is Fred Hoiberg?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?uri ?x . },lcquad +Who discovered Callisto ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +which politician is currently ruling over Rishkiesh?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Where is Carmel Winery?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Does the little colorado river flow in the Grand Canyon?,ASK WHERE { },lcquad +Name the architect of Marine Corps Air Station Kaneohe Bay ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +How many different organizations own the railway lines which are a part of Norfolk Southern Railway?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?uri },lcquad +Name the parts of the settlements which has New Braunfels as one of the parts ?,"SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x }",lcquad +Which shows had their painters born in England?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },lcquad +Which mountain is located in inyo National Forest and has a parent peak named Nevado de Toluca ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +Which awards have been given to both Ingmar Bergman and Charles LeMaire?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +Which office holder's resting place is William Henry Harrison Tomb State Memorial and has governor named Charles Willing Byrd?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +Where was the movie after Khiladi 786 recorded?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Who are the politicians whose death place is Ontario?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +Which statesman is married to Dolley Madison?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +How many theme musics have been composed by Julian Gingell?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . },lcquad +Name the monarch of L Buwei ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Name the musician who was given label by Celluloid Records and has been associated with Africa'70 ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +What is the stylistic origin of Wizard rock ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +List the fields of the scientists with Sanskrit as one of the interest ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +"Of all the teams that Andrew Economos played for, which one did Jerrel Jackson play his first game for?", SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +What are the movies whose director's daughter is Luke Scott?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },lcquad +Is Mona Lisa in the Louvre museum?,ASK WHERE { },lcquad +Was A foreign policy on freedom covered by John Trumbull?,ASK WHERE { },lcquad +List the other members of the band of which Juelz Santana is a part?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Give me a count of everything made by the company which offers electronical manufacturing too.,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?uri ?x . },lcquad +How many games have been composed by Hirokazu Tanaka?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . ?uri },lcquad +Who are the tenants of the stadium where the UFC 140 is located?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Which kmascot od seneca Academy is also the species of The Fox and the Cat ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +"Name the university whose affiliations's foundation place is Washington, D.C.?","SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri }",lcquad +What awards did the cast members of Gods of Egypt win?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Where can I find people whose hometown is Ann Arbour in Michigan?,"SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x }",lcquad +What is the former team of the Athens borned basketball players ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +In which city is the hub airport of Club One Air?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Where did the relatives of Gustavo Rojas Pinilla study?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +For how many things are americans famous for?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },lcquad +Who is the successor of McDonnell Douglas ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +What is the publisher of Lucifer's Hammer ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +List the origin of the weapons which were used in the American Revolutionary War.,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Purnima Banerjee and Rishang Keishing are politicians of what party ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Which show's theme music composer's label is MapleMusic Recordings?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },lcquad +Was Apollo 11 a mission of Niel Armstrong?,ASK WHERE { },lcquad +List the former team of the american football players born in Pennsylvania ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Is the charat district a district in peru?,ASK WHERE { },lcquad +Which company founded by Fusajiro Yamauchi gives service as Nintendo Network?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +Richard Gant did a guest appearance on which series?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +How many things belong to a division of plant kingdom?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?uri ?x . },lcquad +What is that show whose theme was composed by Joel Goodman?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Is the College Sainte Marie in Mauritius?,ASK WHERE { },lcquad +What is the field of the Jon Speelman and occupation of the Karen Grigorian?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +What are the countries for which History of Trier principal to?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +List the uni. having affiliation with Graham Holding Company and have a campus in Iowa ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +Where was Antonio Giannini born?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +What movies have been produced by the production house owned by Larry J. Franco?, SELECT DISTINCT ?uri WHERE {?uri } ,lcquad +Give me all tv shows which are based in boston and massachusetts?,SELECT DISTINCT ?uri WHERE { ?uri . ?uri . ?uri },lcquad +What is the death location of the scientist who is the known authority of Hallopus ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +CN Atletic-Barceloneta has a stadium in Barcelona?,ASK WHERE { },lcquad +What are some non fiction subjects dealt with in fantasy novels?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Which companies have launched a rocket from Cape Canaveral Air Force station?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Is the Frank R Lillie House has the Chicago architecture?,ASK WHERE { },lcquad +Name everyone working for a company owned by Roman Abramovich.,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . },lcquad + Who astronaut from NASA was on the mission of Apollo 11?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +Name the profession of Oamr D Conger for which Jack Ryan was also nominated ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Where were Micheal Santos and Wendy Jaquet born?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Name the show formed by J. Michael Stroczynski and had network as TNT ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +Which office holder's resting place is Alta Mesa Memorial park and has adrian A. Basora as successor ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +Name the movie written by Monty Python and has music composer as Geoffrey Burgon ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +Which politicians died in cities built by the Roman emperor Charles 5?,"SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri }",lcquad +In how many different places can I find companies which were founded in toronto?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?uri },lcquad +What are some relatives of the spouse of Uncle henry from Oz?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . },lcquad +List the outflows of the lake which has Benu river as one of it ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +List the people who were the first one to climb a mountain in California?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Ford Air Transport Service and Falcon cobra are both owned by which company?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +Name the sitcom with theme music composer as Julian Gingell and channel as Fox Broadcasting Company?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +Give a list of all the labels that have jazz fusion artists signed up with them?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Which college has been attended by both Mr. Hubert Wiggs and Mr. Alvin Bell?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +What is the mascot of Blytheville High School ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Which composer of Girl from the North Country is the subsequent work of the Moondog Matinee?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +What is the subject of the book which preceded Sagan's Cosmos?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +In which television shows has Eliza Schneider given her voice?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +Who wrote Catch My soul ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +What are some islands in the bahamas?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +In which state does the ambassador who is in related with J Bennett Johnston live?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +"Where were the sportsmen born, who started their careers with Homestead Grays?",SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Which hometown of pavel Moroz is also the palace of birthplace of Helena of Moscow ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Who are the cast members of The Simpsons Ride?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Name the organization which developed iPhone OS and the XNU?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +How many awards have the french people received?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },lcquad +How many bacterias have taxonomy as Bacillales and domain as Bacteria? , SELECT DISTINCT COUNT(?uri) WHERE {?uri . ?uri } ,lcquad +Which state's largest city is Omaha?,"SELECT DISTINCT ?uri WHERE {?uri . ?uri }",lcquad +Where is the constituency of John Smith Griffin ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Is Wahoo! the previous work of Honeybuns?,ASK WHERE { },lcquad +Who is the animator of Tommy Tucker's Tooth ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Who is the film director of Alice's Wonderland ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +List few authors whose education took place in Saint Petersburg ? ,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +Who are the people who influenced the writers of Evenor ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Which cities of the American Mediterranean Sea has Nickname Entronque de Herradura?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +On how many subjects has Random house publishers published books?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },lcquad +List the associated musical artist of the current members of Al Bano and Romina Power?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Which settlement's neighboring municipalities are Cologny and Pregny-Chambsy?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +Who is the writer of The Sandman (Vertigo) ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +"Who has a child named Lori Black and is resting place as Palo Alto, California?","SELECT DISTINCT ?uri WHERE {?uri . ?uri . }",lcquad +Which military unit's garrison is Pentagon and command structure is United States Department of Defense?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +List the primary subjects of A Christian Turn'd Turk?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +What awards have been given to the writers of Wallace and Gromit?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Is Labor relations the main interest of Karl Marx?,ASK WHERE { },lcquad +"Over which rivers, does a cable stayed bridge exists?",SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Name some Texas based companies ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +Name the president served by a lieutenant who succeeded Bob C Riley.,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },lcquad +Who were some governmental heads in Nazi Germany?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Name the tiemzone of Banlung ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Name all the doctoral student of the scientist who also supervised Mary Ainsworth ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +"Where did the wrestler die who was billed in Norman, Oklahoma?","SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x }",lcquad +Which football teams is Shahid Khan proprietor to?, SELECT DISTINCT ?uri WHERE {?uri } ,lcquad +What sports are there at the universities affiliated to the National Capital Region Athletic Association?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Who all have rented the stadium whose architect is Populous?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Which US city can be said to be a part of american mediterranean sea and the biscayne bay?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +Did Dean Wurzberger manage a club at the santa clara university?,ASK WHERE { },lcquad +How many dishes are made with an ingredient belonging to the flowering plant species?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?uri ?x . ?uri },lcquad +Who are the managers of clubs participating in the 2014-2015 Football League Championship?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . },lcquad +Bridges over which rivers are made of Wrought Iron?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +What is the allegiance of Albert Kwesi Ocran ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +How many people have headed organizations headquartered at Niederkirchnerstrae?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },lcquad +What are some seas inside europe ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +What are the notable works of the person who produced Queer as Folk?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Who was the bronze medalist of Swimming at the 2008 Summer Olympics Men's 400 metre individual medley ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Did stan lee narrate the incredible hulk tv show?,ASK WHERE { },lcquad +What academic discipline of the Journal of Cerebral Blood Flow & Metabolism is also the record label of the Double Diamond (album)?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +How many states does the Pioneer corporation operate in?,SELECT DISTINCT COUNT(?uri) WHERE { ?uri . },lcquad +Name the debut team of Butch Metzger ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Whose doctoral student is etienne bieler\xc9tienne_Bi\xe9ler, SELECT DISTINCT ?uri WHERE {?uri } ,lcquad +What countries used Solidus as currency?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +Which parent company of Edsel was the first team of the 1967 Mexican Grand Prix ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Who was in conflicts of Fort Barrancas and Gadsden?,SELECT DISTINCT ?uri WHERE { ?uri . ?uri . },lcquad +Name some cars similar to the ones which are assembled at the Jefferson North Assembly?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Which licensee of the WRVU is also the alma mater of the Todd J. Campbell ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +What team did Joe Porter and Eddie Anderson play for?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +Which borough of the Corringham railway station is also the local authority of Buckhurst Hill County High School ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +"Which band had the members of The Conglomerate, and has made 'Before I let you go'?", SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Name the fictional character whose species is American Pekin duck and has relatives named Ludwig Von Drake?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +Who is the governor of Carl McCall ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Where can I find things run by the maritime museum of San Diego?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Which engine's successor's predecessor is BMW M10?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },lcquad +List the movies directed by Stanley Kubrick?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +"What team were the people drafted to, which are in the National Hockey League?",SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Which key person of maryland jockey club is the appointer of Joseph Clay ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Who developed the software for the operating system of Macintosh Quadra 660AV ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +From what american football teams did Carlos Emmons play?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Who are the employer of Don R. Berlin?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Is Peter Crouch currently in the Stoke City FC?,ASK WHERE { },lcquad +Whose provides the service of Outlook and also products such as Visual Studio?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . },lcquad +Which source of broad creek is the Audenried tunnel located ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Is the Mount St Peter Church made in the international architectural style?,ASK WHERE { },lcquad +What woman acted in the mating habits of earthbound humans and is often associated with Mams taylor?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +How many other Guests are there of the television episodes whose Guests is Brian d'Arcy James ?, SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri },lcquad +Who is the writer of He's a Pirate ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Which movies have their music composed by someone that signed up with RCA Records?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },lcquad +Was the cover of The adventures of Tom Sawyer designed by Mark Twain?,ASK WHERE { },lcquad +What games are played at institutions affiliated with the international association of universities?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +What is the ideology of Palang Dharma Party ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Who is known for are War of 1812 and Battle of the Thames?,SELECT DISTINCT ?uri WHERE { ?uri . ?uri . },lcquad +Which philosophy journal has compiler as Stephen Law ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +Which military conflict took place in Israel and had commander as Jaber Al-Ahmad Al-Sabah?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +Who served a vice president buried in United First Parish Church?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . },lcquad +"Where is the fictional character from, whose last appearance was in the Avengers, 1998?",SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Which idelogy of the Palang Dharma Party is also the faith of Miao people ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +List the movies produced by Michael Deeley ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +Where does Dennis DeConcini and Scott Berkun both live?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +Where did Louis chevrolet die ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Is Bacillus belong to the domain Bacteria?,ASK WHERE { },lcquad +What is the affiliation of Lumbini Bauddha University ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +What is the name of the characters created by Frank Miller?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Count the total number of software whose programming language is C++ and operating system is Microsoft Windows?, SELECT DISTINCT COUNT(?uri) WHERE {?uri . ?uri } ,lcquad +What is the total number of politicians whose predecessor's deputy is Jenny Macklin?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?uri ?x . ?uri },lcquad +How many managers have managed Middlesbrough FC?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . },lcquad +Among which basket ball team having arena as The Palace of Auburn hills has president as Stan Van Gundy ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +Give me a count of bridges located in California ?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . ?uri },lcquad +What are the sports played by the universities who also plays taekwondo ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Who all are buried in Arlington national cementary?, SELECT DISTINCT ?uri WHERE {?uri } ,lcquad +Name the office holder whose spouse is Dolley Madison and belongs to Militia branch ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +To which country do the players of Waitakere United belong?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +How many different genres led to other genres where drums are important?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?uri },lcquad +Is Trevor Peacock the narrator of Fred Claus?,ASK WHERE { },lcquad +Which river's mouth location is Laptev Sea and also Arctic Ocean?,SELECT DISTINCT ?uri WHERE { ?uri . ?uri . },lcquad +List all the bands which have members of the band Guy in them?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +List the opponents of the relatives of Thomas Helwys?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Gamini Seneviratne and Katyayana are two followers of which religion?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +Who are the predecessors of John Randolph of Roanoke?,SELECT DISTINCT ?uri WHERE {?uri . },lcquad +Was A Jitney Elopement edited by Charlie Chaplin?,ASK WHERE { },lcquad +What team did J P Paris was former team of Bert McCaffrey play for?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +What is the river that falls into North Sea and Thames Estuary?,SELECT DISTINCT ?uri WHERE { ?uri . ?uri . ?uri },lcquad +How many companies were founded in Dallas?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . ?uri },lcquad +Name the ones who debuted in the San Francisco 49ers.,SELECT DISTINCT ?uri WHERE {?uri . },lcquad +"Which county seat of the King County, Washington and PLACE OF DEATH of the Phil Lumpkin ?"," SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ",lcquad +Who all have appointed governess born in Magnolia Plantation gardens?,"SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . }",lcquad +Humes High School is alma mater to which person?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +Which range of mountains are there in canton of Fribourg?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Which species' members are there in the animal kingdom?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Was Henry Knox a major general?,ASK WHERE { },lcquad +What company made the front row and distributed big top ballet?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . ?uri },lcquad +What is the nation of the Major All Stars Season 1 and Pioneer Corporation ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +Which HBO's television series was produced by Erik Bork?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +List all the record label distributed by the distributor of Zune ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +What made Jon Speelman and Eric Schiller famous?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Which stadium is owned by the team whose manager is Dimitris Terezopoulos?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Name the television show which was developed by Brian Graden and distributed by Comedy Central?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +From how many countries did the aeroplanes designed by Alexander Lippisch originate?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?uri },lcquad +"Fairfield, Connecticut is hometown to which persons?","SELECT DISTINCT ?uri WHERE {?uri . ?uri }",lcquad +Do the White Plains Road lie in the Bronx county?,ASK WHERE { },lcquad +Which fictional character portrayed by Roger barton has Padm Amidala as family ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +Name presidents of the schools which have queen noor of Jordan as one of them ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +How many bands are signed up with Kobalt Label Services?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . ?uri },lcquad +Was 12th Field Artillery Regiment garrisoned at colorado?,ASK WHERE { },lcquad +Name the office holder who has a child named Lori Black and resting place is Alta Mesa Memorial Park?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +What is the area of Tar Heel Sports Network ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Which office holder's military branch is Continental Army and vice president is John Adams?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +What are the television shows which are in NTSC and 5.1 surround sound?,SELECT DISTINCT ?uri WHERE { ?uri . ?uri . ?uri },lcquad +What nation is the motherland of Ricardo Alfonso Cerna where Apostolic Vicariate of El Petn is located?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +What are some games availible on nintendo's virtual console?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +Name the television program voiced by Isaac Hayes and aired on Comedy Central?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +Chestnut colored horses have won which races?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Where did the film director of Kala Pani die?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +What show had NTSC format and theme music composed by Ron Grainer?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +Who has fought in the conflicts around the Mississippi river?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Which leader of united states house representatives election was married to Dolley Madison ?," SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ",lcquad +To which county of New York city does the Tremount Avenue street belong?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +What are the death place of the models whose hair color was Red?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +To which region does the Miluk language belong?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +What is the Ceremonial County of Port of Tilbury ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +What is the war in which both K Fordice and P Fitzwallace fight?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +Name the part of Liverpool city region >, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +What is the television show whose sculptor is C. E. Webber and composed by Murray Gold?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +Who created the world series of Poker?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +"What are the source of the streams whose one of the source is Calera, Oklahoma?","SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x }",lcquad +What is the game platform of Google Cloud Connect ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Which fictional character's relatives were made by Ted Osborne?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },lcquad +Who are the stars of the movies which are distributed by Artisan Entertainment ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Count the different religions followed by Second Lieutenants in military.,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },lcquad +List softwares written in C++ and runs on Mac OS ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +Name the river mouth of Moordener Kill ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Which partner of the Tim Mathieson is also the primeminister of the Mike Kelly (Australian politician) ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +List the producer of the TV shows whose company is HBO.,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +What is the television show whose company is Playtone and written by Erik Jendresen?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +Which ancient country had capital as Nicomedia and History of Trier?,SELECT DISTINCT ?uri WHERE { ?uri . ?uri . ?uri },lcquad +In which races did the horses of Mon Capitaine take part?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Which TV show's writer is Erik Jendresen and distributor is HBO?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +What railway lines go through the stations maintained by Western Australian Public Transport Authority?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +How many publisher have been founded by american citizens?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?uri ?x . ?uri },lcquad +How many other region served are there of the companies which serves Pacific Ocean ?, SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri },lcquad +Name the sitcoms whose network's owning company is Chris-Craft Industries?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },lcquad +How many countries surround the sea into which the Upper Neratva flow?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?x },lcquad +How many rivers end in the Indian Ocean?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . ?uri },lcquad +Name the home town of Rolando Gomez ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Who is owner of the soccer club which owns the Cobham Training Centre?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +What is the common genere of Abhijit Kunte and Kasparov ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +List some things that Swedish people have become famous for?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Is Esther Alder the mayor of Geneva?,ASK WHERE { },lcquad +Which shows have voices from people signed up with ABC Records?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },lcquad +Is National Archaeological Museum (Florence) the museum of Chimera of Arezzo?,ASK WHERE { },lcquad +Cleopatra V of Egypt is father to which royalty?, SELECT DISTINCT ?uri WHERE {?uri } ,lcquad +"Which sucessor of George Madison is the sucessor of levi Lincoln, Sr. ?"," SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ",lcquad +Give me some TV stations whose network's main language is American English?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },lcquad +Who is the President of the United World College of Costa Rica and United World Colleges ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +How many artists' works are in Muse d'Orsay?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?uri },lcquad +Whose wife is a presenter at WWE?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . },lcquad +What are some cars which came before the ones on a GM B base?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Give me a count of everything owned by the network whose sister name is The CW?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?uri ?x . },lcquad +"Whichd officer's final resting place is North Bend, ohio and belongs to Indiana Territory branch ","SELECT DISTINCT ?uri WHERE {?uri . ?uri . }",lcquad +What sporting goods companies are located in Herzogenaurach?, SELECT DISTINCT ?uri WHERE {?uri } ,lcquad +Name the commander of Battle of the Thames ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Name the sports played by Fr. Agnel Multipurpose School and Junior College?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +What program is presented by Brian Dunkleman and has artist as Simon Fuller?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +What are some districts in the Tendring borough?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +What is the base currency of the Benelux which can be used in Republic of Montenegro?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +What is the alma mater of Julian Leow Beng Kim?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Is Eddie Bravo the trainer of Alan Jouban,ASK WHERE { },lcquad +How many awards have been given to the participants of the Lawrence Realization Stakes?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },lcquad +What religion is followed by the commander of Defense Security Command?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +"Who won the general elections in India in 2009, and had also won the AP elections in 2004 ?","SELECT DISTINCT ?uri WHERE { ?uri. ?uri . }",lcquad +List the work edited by Mark Stevens and directed by Joel Schumacher?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +Name some local authorities of schools which have a mixed gender education system?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Which president of William Eustus also married to Dolley Madison ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Count the different types of Flatbread ?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . },lcquad +Count the birthplaces of recepients of the National Museum of Racing and Hall of Fame.,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?uri },lcquad +Name the serving line of Daund Junction railway station?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +What is the county seat of the district through which the Beckler River flows?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +What is the television show whose judges is Randy Jackson?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +How many companies serve the Australian region?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . ?uri },lcquad +"How many teams was Garry Unger in, previously?",SELECT DISTINCT COUNT(?uri) WHERE { ?uri . ?uri },lcquad +What is the name of the television show whose company is Paramount Television and theme music composer is Gary Portnoy?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +How many writers worked on the album Main Course?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },lcquad +List the popular works of the author of Luther: The Calling ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Which were the philosophers whose primary interest was Natural philosophy?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +Was the FIS Alpine World Ski Championship of 1950 held in Colorado?,ASK WHERE { },lcquad +Which wine region of Bogdanua is the Croatian Inline hockey team part of ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +What is the place of death of the royalties one of whose parents was Adam Ludwik Czartoryski?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +In which country is the Chapelle Saint-Louis de Carthage located ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +where did the office holder died who is successor to Elmer Burkett ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +What things canonized John of Damascus and and also venerated the Edwin of Northumbria ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +What is the common award won by geoffrey Rush and Laemmle Theatres ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +What is the total number of other restingplace of the politicians whose one of the restingplace is East Norwalk Historical Cemetery?, SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri },lcquad +Who were the pole drivers in GP when Damon hill was a first driver?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +How many albums were released under the Victor Entertainment label?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . ?uri },lcquad +To which company is Michael Dell a father company? ,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +What is the source location of Thornton Creek ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +To which company does Raymond Conner is critical to?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +"From where does the river start, which flows into the Conowingo dam?",SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Who appointed the successor of Charles Pinckney ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +What is the associated band of the musical artist who is the producer of The Trumpet Kings Meet Joe Turner ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Name the home town of Cline Buckens ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +List the music played in television episode which came after The Colonel (The Americans) ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Which university provides license for WRVU ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Name the basketball player who played for Phoenix Suns and Los Angeles Clippers was his draft team?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +Who are the spouse of the parents of Kimberly Stewart?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +What have some famous Christians died of?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Who is the mayor of the city under which is the constituency of Zora Singh Maan?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +"What are Breann McGregor and Anika Knudsen, both known for?",SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +Name a scientist whose official residence is Cape Town and also won a gold medal at the Royal Astronomical Society ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +In how many places can I find tombs of people who fought in the Norwalk Trainband?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },lcquad +Does GeneWeb have the GPL license?,ASK WHERE { },lcquad +What is the location of Dad's Root Beer on Google maps?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Is Darcs released with a GNU license?,ASK WHERE { },lcquad +What is the district of Fort Heath radar station ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +How many saints have been venerated in Judaism?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . ?uri },lcquad +List down all the bands to which the writers of 03 Bonnie & Clyde are associated?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +How many people are famous for the Gibson Les Paul?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . },lcquad +What municipalities are adjacent to Chne-Bougeries?,SELECT DISTINCT ?uri WHERE {?uri . },lcquad +Who is the founder of Oprah Winfrey Network (U.S. TV channel) ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +What is the alma mater of the Angela Trusty and Charles Ayres?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +List all the wine regions of the grapes whose one of the wine region is Mississippi ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +"Which river originates from Cape Vincent and Kingston, Ontario?","SELECT DISTINCT ?uri WHERE { ?uri . ?uri . ?uri }",lcquad +Name the office holder whose theatre is Siege of Fort Recovery and belongs to Indian territory branch ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +For which clubs do the players of Azam F.C. play for?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +What are the mammals whose phylum is Chordate?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +Where did Doug Walgren and Lee Si Chen study?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +Give me an estimate of the number of manufacturers whose products are managed by MTR?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },lcquad +How many artists play as Rickenbacker?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . ?uri },lcquad +Who are the associated musical artist of Carolyn Dennis?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Which citys mayor is anne hidalgo?,SELECT DISTINCT ?uri WHERE {?uri . },lcquad +In which states are there bridges over the Pequea Creek?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +How many ingedients are required to make the Ragout Fin?,SELECT DISTINCT COUNT(?uri) WHERE { ?uri . },lcquad +List the people whose are in the board of an organization kickstarted in New York.,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },lcquad +Tell me the number of writers whose works have been recorded in Criteria Studios?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?uri },lcquad +Under which archipelago does Canary Islands fall?, SELECT DISTINCT ?uri WHERE {?uri } ,lcquad +name the home stadium of FC Spartak Moscow season 2011-12, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Name a company with one of the key person as Edwin Catmull and produces RenderMan?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +How many owners are there of lines starting at the South Station?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },lcquad +What are some musicians who have worked with Dean Ambrose?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +"Count all those who've played for the youth club which owns the Rosario, Santa Fe stadium.","SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?uri ?x . }",lcquad +What are the television shows whose company is Playtone?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +In which city are the schools whose district is Mumbai Suburban?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +How many people currently play for Stoke City F.C.?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . },lcquad +Among the countries using Aureus as currency which had Nicomedia as an important place ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +What are the outflow of the lakes which also has one of the outflow as Congo River ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Whose tomb is in cities under Dane County of Wisconsin?,"SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . }",lcquad +How many cars succeeded the cars which were similar to Cadillac Fleetwood?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?x },lcquad +Was the body of Elsie Paroubek discovered in Chicago?,ASK WHERE { },lcquad +In how many languages did Marika Gombitova sing?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },lcquad +How many railway lines go through the station maintained by Public transport authority of western australia?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?uri },lcquad +Count the different number of academic areas covered by publications of SAGE?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },lcquad +What are the political parties whose leaders have lived in the Prime Minister's House?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },lcquad +"Who currently operates the railway lines one of whose stockholder is Chicago, St Paul, Minneapolis and Omaha railway?","SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x }",lcquad +In which city is the distributor of Jeevan Mrityu located ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +How many services does the company who made Onedrive provide?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },lcquad +Count the different religions practiced by people who are in the Malaysian and Chinese association.,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },lcquad +List all those whose relatives' nationality is United States.,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . },lcquad +What is the genre of Battle Chess?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +President of Ghana is the leader title of which country?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +Whose associate is Publius Servilius Vatia Isauricus and has predecessor as Lucius Cornelius Lentulus Crus?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . },lcquad +What is the style of architecture of Pontiac Building ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Which basketball players have played in the league of National Basketball Association?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +Is Michelle D. Johnson the superintendent of United States Air Force Academy?,ASK WHERE { },lcquad +Eric roth wrote how many screenplays?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . },lcquad +Whihc alma mater of angela Trusty is also the training center of David Scherman ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Who were the opponents of the people buried in the tower of London?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +What is the record label of the Next Thing and also the label of the The Producers (2005 film)?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Which country were the associates of Hilda Duhalde from?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Name the line of the Vadodara Junction railway station which is also the hub airport of the Pawan Hans?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Name the scientist who become the part of Royal Society and had academic advisor as Karl Ewald Hasse?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +Where is the tombstone of the successor of Edward Wolcott?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +In how many places did the Schutzstaffels die?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?uri },lcquad +How many members are there of the organization headquartered at Amstelveen?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },lcquad +Name the scientist who was the winner of Royal Society award and had Georg Meissner as his doctoral advisor ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +What are the nearest city to the historic places whose one of the nearest city is Wisconsin?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Who is the producer of Captain EO ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +List the subjects of the books whose one of the topics is Pau Broca ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Where did the conflict take place in which Henri Putz fought?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Where did the aristocrats die whose mother was Maria Ludwika Krasiska?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Is NY Rangers a prospective team for Robin Kovacs?,ASK WHERE { },lcquad +Is the Columbia University chaired by William Campbell?,ASK WHERE { },lcquad +Which company manufactures cars like the Opel Karl ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Who are the major stockholders of the bank which is the company of Bloomberg Markets ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +List all crafts of the people whose one of the profession is Kingdom of Naples ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Name a colonel whose resting place is Montpelier ?,"SELECT DISTINCT ?uri WHERE {?uri . ?uri . }",lcquad +What are some developers which use Emacs Lisp in their projects?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Whose deputy was Franz von Papen?, SELECT DISTINCT ?uri WHERE {?uri } ,lcquad +Current players of Colorado Avalanche have previously played for how many different teams?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?uri },lcquad +List the books whose authors are in Alcal de Henares.,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },lcquad +Name the common current team of the Shaun Thong and Kaannder ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +Who is the stockholder of Paphos International Airport ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +To which counties do Jerome avenue and Tremont avenue belong?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +Give me the total number of architect of the buildings whose one of the architect was Louis D. Astorino?, SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri },lcquad +Which basketball team's president studied in the Brockport Golden Eagles?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },lcquad +In which races does Coneygree compete?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +What awards have been given to some screenwriters?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +List the saints venerated in Islam having major shrine as Tomb of Joshua ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +Which tema did Dough Acomb played for which is also the drafty team of Dale Mitchell ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +List the total number of executive producer of TV show which have one of the executiive producer as Steven Moffat ?, SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri },lcquad +Whose songs are Tickle Me and Viva Las Vegas?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +Name all those whose spouses have performed with Tony Bennett?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . },lcquad +Name the company who owns HBO division?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +How many religions have the relatives of waxiangs followed?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },lcquad +For which team does Ramiro Pea play ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +What are the books written by the the person who made the Novelas ejemplares?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },lcquad +Count the total number of battles fought by the military people which fought in Levant ?, SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri },lcquad +Matthew kane and Park rankin are citizens of which country?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +How many subjects have been covered in fantasy novels?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },lcquad +What is the television show whose theme music is by Primus?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +What was created by Larry David and Jerry Seinfeld?,SELECT DISTINCT ?uri WHERE { ?uri . ?uri . },lcquad +Was Let it Be written by Ringo Starr?,ASK WHERE { },lcquad +which person created the women in the garden?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Who is the composer of Girl from the North Country ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +What is the county seat of the county which has an Evergreen High School?,"SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . }",lcquad +Which wars were fought by the commander whose deputy was Robert T. Herres?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },lcquad +"Through which states does the road go, which has a junction on Keningston Maryland?","SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x }",lcquad +What did the people buried in Toronto die of?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +List the main ingredient of Pizza-ghetti ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +List the work institute of the medicians who has also worked at University of Miami ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +How many people have trained the wrestlers who were billed in Wisconsin?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?uri },lcquad +Which country did the prime minister belong to who was served by Thanong Bidaya ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +What faith do hang chuon naron and Kron Ngoy follow?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +Which company ownes stock in Dagenham turbines and Ford Motor credit?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +Which shareholder of Dagenham wind turbines is also the parent company of the Ford Falcon Cobra?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +List the awards won by the cinematographer of Mickey's Mellerdrammer?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +tell me the school to which Cyril Hume went?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +where did Boga originate?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Who is the singer of the album which has a song Me and My arrow ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +In how many different places can I fnd Modern Architectural buildings?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },lcquad +Which sports are played in the alma mater of Habib Boromand Dashghapu?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +What are the houses of Parliament Security Services ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Count the origin of the beverages which have been originated in england /, SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri },lcquad +Count the number of people became famous for when Andrew Jackson was a commander ?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?uri ?x . },lcquad +Who is the incumbent of Al Gore presidential campaign of 2000 ?," SELECT DISTINCT ?uri WHERE { ?uri } ",lcquad +"Of the places where Kurt Vonnegut Memorial Library exists, where did Louis LeCocq die?", SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +What is the college of the basketball player who lives in Ashton Historic district?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +During the reigns of which monarchs was the name to the Israelite kingdom as United Monarch?, SELECT DISTINCT ?uri WHERE {?uri } ,lcquad +What is the person known for who is the movie director of Sleepy-Time Squirrel ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +What is the title of the successor of Kaulahea I ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Name the river passing through Reading Berkshire and has mouth place at Essex ?,"SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri }",lcquad +Which nation is the origin of Dornier Aerodyne ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Name some politicians buried in a place near Orange Virginia?,"SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri }",lcquad +Which writer of Tales of Suspense is also the writer of karakuri Dji Ultimo ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Which type of building is Qun Thnh Temple ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Who is the artist of the album which has the song I Can't Change the World ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Which city is the route start of the Moscow-Kazan high-speed railway and birth place of the Ilya Savelev ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +List TV shows with producer as Erik Bork and company is DreamWorks Television ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +Which mountain range is the one with Ponte d'Aveneyre and Le Gibloux?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +In which cities do some railways operated by Russian railways start?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Collaborators of Demis Roussos have composed music for which movies?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },lcquad +In how many places are the tombs of everyone who died in England?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?uri },lcquad +Where did the people beatified by Pope Pius X die?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Name all the venues of the convention which has also been hosted in San Diego Convention ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Brian Dunkleman is the presenter of what TV show?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +What are the movies whose distributor's headquarters is New York?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },lcquad +Count the different genres of music made by Argentinian bands?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?uri },lcquad +What beverage was launched by Ferrero SpA?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +How many famous people are from the Filipinos?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . },lcquad +How many people have managed a club which owns the Riverside Stadium?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?uri ?x . ?uri },lcquad +Who had Joe Purcell and Winston Bryant as lieutenants ?,SELECT DISTINCT ?uri WHERE { ?uri . ?uri . },lcquad +Who was the parent of person whose child is William C P breckinridge?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Where are the burial grounds of Willem Cornelis Janse van Rensburg and Thomas Franois Burgers?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +Was George Cash in the western australian parliament?,ASK WHERE { },lcquad +Through which states does the stream ending at Saunders county go?,"SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x }",lcquad +What are the school mascots in Blytheville school district?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Which country has the Carmel Winery and the Teperberg 1870 winery ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +Name the TV show broadcasted by Fox and presented by Ryan Seacrest ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +Count the religions followed by people living in British Columbia.,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },lcquad +List some teammates of Ndonga Mianga?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +List the characters of Lysistrata ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Is Joe Schilling the trainer of Nick Diaz?,ASK WHERE { },lcquad +Which TV shows distributor is Broadcast syndication and developed by Brian Graden ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +In how many districts is there a borough called tendring?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },lcquad +What games are played at universities in Lanao Del Sur?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +"For everyone who died in paris, count their different fields of work.",SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },lcquad +What is the award won of the scientists known for Cubic Hermite spline?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +What is the meaning of Heydar ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Which composer subsequent work of Moondog Matinee and also composed The TImes They are A changin ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +On how many different grounds were seasons chaired by Ronaldo held?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },lcquad +Sentinel High School team is known as ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Sampson Cudjoe plays for the Ghana national team?,ASK WHERE { },lcquad +Where does the publisher of Kathimerini live?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Name the basketball team which is coached by Louis Dunbar and has president as Jeff Munn ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +Give me a count of all ice hockey players whose teams are headcoached by John Tortorella?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?uri ?x . ?uri },lcquad +Which draft team of bob Macmillan is also the prospect team of Mikhail Pashnin ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +How many leagues have used the O.co Coliseum?,SELECT DISTINCT COUNT(?uri) WHERE { ?uri . },lcquad +What is the common palce of study for jack McGregor and Philip W. Pillsbury ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Under which president did Loretta Ucelli and Ann Lewis hold an office?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +"What team did the players start their careers with, who right now play for Fleisher Yarn?",SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +What sports are played at institutes affiliated by the Association of Southeast Asian Institutes of Higher Learning?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Where did the people die who were known for Young Life?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Who are the chancellors of universities which is affiliated with Plymouth University?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Does Lionel Messi play in the Argentina National Football Team?,ASK WHERE { },lcquad +Which awards did the narrator of Oscar and Lucinda win?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +"What is the musical whose music is by Jose Luis Narom, based upon?",SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +"Is the Providence Chapel, Charlwood made in New English style of architecture?","ASK WHERE { }",lcquad +Which workplace of the Michael M. Sears is also the governing body of the Burro Flats Painted Cave?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Who was on the boards of Freedom of the City and Royal Society?,SELECT DISTINCT ?uri WHERE { ?uri . ?uri . },lcquad +Who are the people which ITV(TV network) has employed?,SELECT DISTINCT ?uri WHERE {?uri . },lcquad +What is the broadcast area of WBCQ (SW) ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +What religion did the president follow which was served by Kang Young-hoon?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Which kind of buildings are found in England?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +"In which state is the team, which has John Roeslein?",SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Which awards has been given to both michel hazanavicius and geoffrey rush?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +Give me the count of all people who ascented a peak in California?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?uri },lcquad +List the total number of regions of the building whose are located in\Grand Forks Air Force Base?, SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri },lcquad +Is Halyna Kukhar the former coach of Stanislav Morozov?,ASK WHERE { },lcquad +Rickenbacker is a musical instrument played by which artists?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +List down all the associcated musical artist of the artist of In a Word or 2 ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +List the home town of the people who have Ontario as one of it ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Joe Shuster has created how many comics character ?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . ?uri },lcquad +Which currency is primarily used by the company which is the distributing label of VDE-Gallo Records?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Name whose youth club was FC Barcelona ?,SELECT DISTINCT ?uri WHERE {?uri . },lcquad +Which awards did the writer of Persona win ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +What is the highschool of the american football player who joined the Robert Morris Colonials program?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Was the Army Air Corps honored for the battle of Iraq?,ASK WHERE { },lcquad +How many awards have graduates from the University of Queensland earned?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },lcquad +Which artist was taught by Jos Ruiz y Blasco?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +What is the location of Sam Sen Railway Station ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Which ground of 2016 Fort Lauderdale Strikers season is the palce of birth of Kaitlyn Ashley ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Which minister was responsible for Kriminalpolizie?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Which TV show produced by Paramount Television and is located in Massachusetts ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +Name the sea located near Europe and has a nearby city as Rostock ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +What ingredients are used in preparing the dish of Ragout fin?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +What is the former partner of the figure skaters whose current partner is Alexa Scimeca?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +In how many nations does Rhaetian Railways own train stations?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?uri },lcquad +Does Saneh Lungkeaw play for the Thailand's national team?,ASK WHERE { },lcquad +Which company released the software RenderMan?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +In which cities are there american football teams where Matt Snorton played?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +"Which country's national motto is ""Truth prevails""?",SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +What is the homeport of INS Viraat (R22) ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +What is the largest city of the country where P. Sathyanarayanan was born?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Which county of Tremont Avenue is also the birht place of Ron Galotti ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Where was William anthony trained ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Which parent organization of Get TV also owns the Galleria ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Name the wine regions of Bogdanua ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +What is the resting place of the child of Linda Lee Cadwell?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Which board game can be said as a mind based game?,SELECT DISTINCT ?uri WHERE { ?uri . ?uri . },lcquad +"Where are the philosophers from, whose main work is on the matter of feminism in Canada?",SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +What are the things built by Eristoff ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +What is the official residence of Sarah Kazemy ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +What are shows whose theme music composer's home town is New York?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },lcquad +"Name the university whose affiliations's foundation is in Washington, D.C.?","SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri }",lcquad +Who was the coach of 1972 Oakland Raiders season ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Whcih land of Citi Trends is also the constituency of Malik Al-Hassan Yakubu ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Which TV show's composer is Judy Hart Angelo and executive producer as Glen and Les Charles?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +"Where did they debut their careers , those who have played for US men's national soccer team?",SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +What are on the borders of Shimsa Plateau?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +What is the former team of the american football players whose position is Running back?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Which creator of Theme Time Radio Hour has also given the musical score of the The Times They Are a-Changin' (musical)?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +How many different kinds of games are published by Interplay Entertainment?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },lcquad +What other awards have been given to Goya Award Winners?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +How many other important work has been done by the writers of Sarah Jane Adventures?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },lcquad +Race horses whose grandsire is Wild Risk have taken part in which races?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Who are the tenants of the stadium which is a venue of WCW Mayhem ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Which coach of Marquette Golden Eagles men's basketball team is also the head coach of Virginia Tech Hokies men's basketball team ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Which are the races in which Martin Molony participated?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +With what company is the service OneDrive associated?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +Where common region are soylent and bannock sold?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +What awards have been given to citizens of the Ottoman Empire?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +List the science fiction shows broadcasted on BBC HD ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +Who is the person opposed by Tom McLaury and Ike Clanton?,SELECT DISTINCT ?uri WHERE { ?uri . ?uri . ?uri },lcquad +List the products of Playboy Enterprises?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Name the former broadcast network of the television station which is the sister stations of WGBC?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +What is the country of the Hirth Acrostar and the Cobra missile?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +What is the Nickname of Daniel O'Regan ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Who owns the websites for which Jimmy wales writes?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +What are the bridges whose located in California?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +Which settelment area is the home town of the Danny Felice and Cline Buckens?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . ?uri },lcquad +Who were the head of government agencies working in the German occupied Europe?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Name the companies which are in cities under Denzil Minnan Wong?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },lcquad +What is the largest city of the birthplace of Pat Kirkwood?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Which source of Water resources management in El Salvador is also the nation of the Sierra del Merendn?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +What is the academic journal whose editor is Stephen Law?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +What awards have the alumni of Academy of Fine Arts in Lodz achieved?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Name the members of youth clubs which have Camp Nou as their homeground.,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . },lcquad +Does mumbai manage the railway line going to the daund railway junction?,ASK WHERE { },lcquad +Which musical artist associated with Tony Allen has label with Celluloid Records ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +Who are some basketball players who played for Phoenix Suns?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +"Which relative of George Madison was the leader of United States House of Representatives elections, 1788 and 1789 ?"," SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ",lcquad +"From how many works is the musical derived, whose lyrics are written by Sheldon Harnick?",SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },lcquad +Which office holder allegiance is Colony of Virginia and was has a wife named Dolley Madison ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +Was Derg the anthem of Ethopia?,ASK WHERE { },lcquad +Employees of Ottawa Citizen have come from which towns?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +How many non-fiction subject are there of the books whose one of the non-fiction subject is Ankh-Morpork City Watch ?, SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri },lcquad +Who is the licensee of EXXV-TV ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Who are in the board of Jimmy Wales ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Where were some people associated with Steve Winwood employed at?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +What is the origin of the musical artist whose associated band is Ziggi Recado ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Who is the nominee of Jack Ryan ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Which division of Serbia national team is also the region of Dobinsk Ice Cave ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Name the royalty whose spouse was Cleopatra V of Egypt and one of his parent was Ptolemy XII Auletes?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +List the major shrines of Jovan Vladimir?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Name some shows whose company is owned by the CBS Corporation?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },lcquad +"Which famous person is born in Marlboro Township, New Jersey?","SELECT DISTINCT ?uri WHERE {?uri . }",lcquad +In which countries have the Start + Flug aircrafts originated?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +How many other family of the mammals exists whose family is also Hominidae ?, SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri },lcquad +What is the former team of the football player who is the coach of 2006 Oakland Raiders season ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +How many TV shows were made by someone who was associated with Lewis Hamilton?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?uri ?x . ?uri },lcquad +For how many other teams have the former players of Boston Bruins played?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?uri },lcquad +Which things have been made by artists who died in Midhurst?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . },lcquad +What are the TV shows whose network is also known as the CW?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },lcquad +How many other important things has the painter of Sarah Jane Adventures done?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },lcquad +Which founder of sea Gayle Music is also the judge of Rising Star ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Who owns the ford kansas assembly plant?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +What is the label of I Pray on Christmas ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +List the destination of Novair International Airways ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Who is the spouse of Willian Menalaus?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Count the number of actors in Lucy Sullivan Is Getting Married.,SELECT DISTINCT COUNT(?uri) WHERE { ?uri . },lcquad +What mammals are classified into Diprotodontia ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +The Other Side has hosted how many guests?,SELECT DISTINCT COUNT(?uri) WHERE { ?uri . },lcquad +Name the river with source as Columbia Lake and river mouth is located in Clatsop Country ?,"SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri }",lcquad +Is Dave Schulz a band member of Berlin?,ASK WHERE { },lcquad +What are the airlines whose hub airport is Los Angeles International Airport?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +what are some famous people out of the Filipinos?, SELECT DISTINCT ?uri WHERE {?uri } ,lcquad +What awards were presented to the person who produced Paradise place?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +What is the location town of Seattle Great Wheel ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +List all the line of Vadodara Junction railway station?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Name the college of Jon Curran ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Which Tim Birton's movie has a screenplay by Daniel Waters ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . },lcquad +Who produces the tv series which made Scott Haran famous?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +What is the place of birth of the jockey who breeded De La Rose ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Name the Artist of Madagascar: Operation Penguin ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +What are some devices made by Taiwanese companies?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },lcquad +Harry Huston and Dick Spalding played their first match for which team?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +What is the layout of Subaru Legacy (second generation) ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +How many other wine region are there of the grapes whose one of the wine region is Michigan ?, SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri },lcquad +Name the office holder whose constituency are Duboce Triangle and Haight-Ashbury ?,"SELECT DISTINCT ?uri WHERE { ?uri . ?uri . ?uri }",lcquad +Estimate the number of sports divisions at the universities under international association of universities.,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },lcquad +What is the leader of the government agency which is the military unit of Erich Kempka ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +What is the alma mater of the senator who is the successor of Warren Magnuson ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Is Eddie Bravo the trainer of Shinya Aoki?,ASK WHERE { },lcquad +List the battles in which alumni of US Army Command and General Staff College fought?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Which writer of Alan Freeman Days is also the writer of Come On over ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Name the subsidary of Tandem Computers which was founded by Jim Harris ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +Count all the books written by an author buried in the Convent of Barefoot Trinitarians?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?uri ?x . ?uri },lcquad +Name the city with leader as Esther Alder and neighboring municipality as Pregny-Chambsy?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +Was Blade Runner cinematographed by JordanCronenweth?,ASK WHERE { },lcquad +Panthera leo fossils and Liger belong to which species?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +Name the street address of Rhodes-Haverty Building ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +"Who were the commanders during the events which took place in Sandusky County, Ohio?","SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x }",lcquad +Who founded the city where Pat Vincent die?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Name the kingdom with currency Solidus (coin) and administrative headquarters in Nicomedia?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . },lcquad +Which company has a product named Visual Studio and One Drive as service ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +"Name the river whose mouth place is Old Lyme, Connecticut?","SELECT DISTINCT ?uri WHERE {?uri . ?uri }",lcquad +Which division of the Runewaker Entertainment is also the destinations of the Airtours International Airways?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Which show's network is Prime time Entertainment and has Douglas Netter as executive producer ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +Who was the president under which a tennis player held office before John W. Weeks?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +What are the things whose leader was a monarch of Willem-Alexander of the Netherlands?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . },lcquad +acer nigrum is used in making what?, SELECT DISTINCT ?uri WHERE {?uri } ,lcquad +Name the prospect team of Mikhail Pashnin ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +What is the predecessor of BMW M40 ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Which cities are located around the sea into which the ionian flows?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Did Joe Namath did his highschool in Beaver Falls High School?,ASK WHERE { },lcquad +Where do the railroads owned by the Chicago and Northwestern Transportation company begin?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Give me a count of mammals which have their order as Primate?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . ?uri },lcquad +What television show are distributed by Broadcast syndication?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +Who was the president under which people won the United States House of Representatives elections in 1790 ?,"SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x }",lcquad +Which TV show's producer is Stephen E. Ambrose and company is DreamWorks Television?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +Which river originate from limerick?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +"Who is the opponent of United States House of Representatives elections in Ohio, 2010 ?"," SELECT DISTINCT ?uri WHERE { ?uri } ",lcquad +Laozi authored which book?, SELECT DISTINCT ?uri WHERE {?uri } ,lcquad +What are some other children of the father of Marvin Bush?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Rivers from which countries flow into the Caspian?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Which is the nearest city to Elliott Bay ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +"In which sects were the aristocrats included, who were buried in Westminister abbey?",SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Name the saint whose major shrine is in Canada and was canonized by Pope Benedict XVI?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +who was the australian flagbearer of 2008 Summer Olympics?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Which vice president of Warren G. Harsing is also the president of Evans Hughes ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Who is the manager of the club whose homeground is the riverside stadium?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },lcquad +Does the Utah State Route 162 end at Colorado?,ASK WHERE { },lcquad +Which recognized title of Frank Thorne is also the product of Playboy Enterprise ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Whose constituency is Duboce Triangle ?,"SELECT DISTINCT ?uri WHERE {?uri . }",lcquad +What is the name of Mary's divine child?,SELECT DISTINCT ?uri WHERE {?uri . },lcquad +Joe Hahn is the member of what band?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +Which team did wolfred McDonald is also the prospect team of Milkhail Pashnin ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Which companies have launched from the Vandenberg Air Force Air base?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +How many home stadiums are there of the seasons whose chairman in Merritt Paulson?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },lcquad +What are some primates?,SELECT DISTINCT ?uri WHERE {?uri . },lcquad +What is the rank of Julius C. Burrows politically?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Name a few whose live in a place where Indian English is an official language,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . },lcquad +Count the number of first drivers in all the GPs where Mika Hakkinen was a first driver?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?uri },lcquad +What sports are played at Vishwajyot High School?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +BBC Two is the sister channel of networks having which shows?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },lcquad +Who owns a bridge in Boston?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +In which fields are both Paul Demiville and Sylvain levi experts?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +"How many tenats have been there, of the constructions of PCL constructures?",SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },lcquad +Which non fiction of the Thud is also the field of the Jon Speelman ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +"Who was the prime minister of Victor Hope, 2nd Marquess of Linlithgow and also the editor of British Gazette ?"," SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ",lcquad +Name the hockey team whose head coach is Alain Vigneault?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +What is the municipality of Patterson Houses ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +"Give me a count of everything under the archipelago, where Papeete is the biggest town.",SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?uri ?x . },lcquad +Where does the rivers ending in lake washington begin?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Who all have developed a cross platform software?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +where did soccer bowl take place in 76?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +What political ideology of the Palang Dharma Party is relegion of Inthakin?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +List the cities which share the same water body as that of Florida ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +What is common between genre of battle chess and purpose of New Zealand Chess ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Is GIMP written in C?,ASK WHERE { },lcquad +Who is relative of the people died in Bergen-Belsen concentration camp ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +In which state can I find Burr Truss styled bridges?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Which info. appliance is manufactured by Asus and is the predecessor of PS 2?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +Which cover artist of the The Adventures of Tom Sawyer also the source of inspiration of The Appple Tree ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Which university of Alexandre Tichonov is the place of death of Valentin Muratov /, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +What kind of music is produced at the record label founded by Andre Bourgeois?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +What is the place of death of the lieutenant of Frank Steunenberg?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +How many titles have been won by the beauty queens which had brown hair?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },lcquad +What are the border of High Desert (Oregon)?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +What is the location city of Burnside Distribution Corporation ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Which country's people work in the Birdman enterprises?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Where is Oskar Blues located ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Paul Leonard's work can be divided into how many series?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },lcquad +Who won the Lovelace Medal and the Norbert Wiener Award for Social and Professional Responsibility?,SELECT DISTINCT ?uri WHERE { ?uri . ?uri . },lcquad +"List the sports associated with Mariveles, Bataan?","SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . }",lcquad +Which holy places did consider Pope Gregory I as a saint?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Which incumbent of Al Gore presidential campaign wass also the president of Mike McCurry ?," SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ",lcquad +What software is developed by GNOWSYS and is licensed by Frontaccounting?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Which admin center of pulau Ujong is also the largest city of Pulau Ubin ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +What is the parent company of PrivateCore?, SELECT DISTINCT ?uri WHERE {?uri } ,lcquad +Name the scientist whose supervisor was John Robert Woodyard and has won Norbert Wiener Award for Social and Professional Responsibility?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +Name the river with mouth palce Essex and source place as Gloucestershire ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +In which province was Dick Redding born?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +What awards have been awarded both to Ingmar bergman and James O'Brien?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Count the number of characters of the play whose one of the character is Catwoman ?, SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri },lcquad +Where else did the graduates of the university of west indies study?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Does NOAAS Davidson (S 331) have a homeport in Seattle?,ASK WHERE { },lcquad +List down the schools whose mascot is an animal from the order of Even toed Ungulates?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },lcquad +Count the number of cities on the Mediterranean Sea?,SELECT DISTINCT COUNT(?uri) WHERE { ?uri . },lcquad +What non fiction subjects are covered in books by Doubleday publishers?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Name the death location of Judson Huss ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +What are the movies whose musicians's home town is Volos?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },lcquad +What is the affiliation of tani University ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +What is the base currency of Benelux ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +What foundation palce of Temenos Group is the death palce of jerzy Jzef Poocki ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Give me a count of the services by the company which provides Data center as the services ?, SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri },lcquad +Who discovered Europa and Callisto?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Which company offer service of Outlook.com and OneDrive?,SELECT DISTINCT ?uri WHERE { ?uri . ?uri . ?uri },lcquad +Scientists at the University of Queensland have won which awards?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Which body governs over the place made by the chumash people?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +What is the religion of the ethnic group to which the relatives of Waxiang people belong?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Did Alexander Magleby study at the Dartmouth College?,ASK WHERE { },lcquad +"Name the office holder whose constituency is Noe Valley, San Francisco and belongs to military unit USS Kittiwake (ASR-13)?","SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri }",lcquad +Where is the south shore plaza located?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +"What are the resting places of the associates of John Betts a, Connecticut politician?",SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Waddy wachtel did the music for what movies?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +Was the 2d Command and Control Squadron barracked in Colorado?,ASK WHERE { },lcquad +Whose military unit is 39th infantry regiment in 1812?,SELECT DISTINCT ?uri WHERE {?uri . },lcquad +Which boarder country of Korean Peninsula was the state of Sodagreen ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Spanish harlem incident was composed by whom ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +What sports are played at universities affiliated by States Colleges and Universities athletic association?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +EU Broadcasting Union is the owner of the distributor of what?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . },lcquad +How many people were drafted in the LA Clippers?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . ?uri },lcquad +Who is the musical artist worked for labels Celluloid Records and Victor Entertainment?,SELECT DISTINCT ?uri WHERE { ?uri . ?uri . ?uri },lcquad +Which founding cities of Young Americans Bank is also the location of Denver Broncos ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Which famous physicist was academically advised by Benjamin Pulleyn?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +Which prospect team of Robin Kovacs is the draft team of Bob MacMillan ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Terry Pratchett has written about how many topics?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },lcquad +Which shows theme music is composed by a band which has Larry Lalonde in it?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },lcquad +"Which indian party has won the arunachal pradesh elections of 2014, and has been in the 4th legislative assembly?","SELECT DISTINCT ?uri WHERE { ?uri. ?uri . }",lcquad +Who are the former partners of the figure skaters whose performance have been choreographed by Catarina Lindgren in the past?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +In how many regions is English American spoken?,SELECT DISTINCT COUNT(?uri) WHERE { ?uri . },lcquad +Which baseball team is owned by Robert Nutting?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +What religion did Gamini Seneviratne follow?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Which fictional character is portrayed by Roger Barton (film editor)?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +who are all the people who have managed the England's under 20 soccer team?, SELECT DISTINCT ?uri WHERE {?uri } ,lcquad +"Give the name of the river with source place as Australian Alps and has mouth place as Goolwa , a place in Siyuth Australia ?","SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri }",lcquad +Where were the doctoral students of James Langer born?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Who has military branches are Colonial troops and Continental Army?,SELECT DISTINCT ?uri WHERE { ?uri . ?uri . },lcquad +Whose shrine is in aachen cathedral?,SELECT DISTINCT ?uri WHERE {?uri . },lcquad +What religions do politicians in the Korean Minjoo Party follow?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +What are the other band members of the band one of whose current member is Robert De Niro?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Which peak was first scaled by Krzysztof Wielicki?, SELECT DISTINCT ?uri WHERE {?uri } ,lcquad +Give me the total number of Guests of the television episodes whose one of the Guests is Michael Cristofer?, SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri },lcquad +How many factions were fighting in the wars where Blue Jacket was a commander?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },lcquad +who was the president under which Joe Purcell is a lieutenant?, SELECT DISTINCT ?uri WHERE {?uri } ,lcquad +"Which headcoach of Marquette Golden Eagles men's basketball team, 2008-09 was also the coach of Marquette Golden Eagles team ?", SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +List the state of the universities whose nation is United States ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +What city is the place of birth of Alexander Morozevich which is also the official residence of Dmitri Nossov ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +What is the television show whose executive producer is Steven Peterman?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +Which military battles are associated with Israel?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +What are some magazines whose publishers are themselves Rock and Roll Hall of Fame members?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },lcquad +What are the veneration of the one for which there's a major shrine in Hebron?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +What is the home town of the band which is the artist of Your Ice Cream's Dirty ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Who is the chancellor of the university which affiliates the Dartington College of Arts?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +What is the nationality of Sune Agerschou ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +What is the PLACE OF DEATH of Charles Gordon (artist) ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Namt the fields of Paul Demiville ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Which battle is Jim Jones associated with to which Allen Boyd is also associated ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Who all have been canonized by Pope Paul VI, SELECT DISTINCT ?uri WHERE {?uri } ,lcquad +Where is the tombstone of the congressman who died in the McLean hospital?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +What is written in a programming language developed by GNOME Project?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . },lcquad +Which race is the Best Mate is also the race of the Martin Molony?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Where is the building located whose architect was Francis Palmer Smith?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Who operates the bridges designed by Malaysian PWD?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Where was the person born whose successor was Le Hong Phong?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +In which race did Coneygree the racehorse and Fergie Sutherland the horse trainer participate?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +List all important people of the non profit organization which has Hilary Clinton as a key person ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +List the school of Bobby Skinstad?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Was Lionel Messi a member of the 2009 FIFA World Cup squads?,ASK WHERE { },lcquad +Was Writings and Drawings illustrated by Bob Dylan?,ASK WHERE { },lcquad +Count all the universities who participated in the tournament won by Alabama Crimson Tides in 2015 ?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?uri ?x . ?uri },lcquad +Was the Lotuspool Records distributed by Napster?,ASK WHERE { },lcquad +"List the base currency of the country whose anthem is Oj, svijetla majska zoro.","SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . }",lcquad +What magazine is Marritt Cabal known for which has Lucifer Hammer as publisher ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Name the parent company of Ford Falcon Cobra ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +How many players are in the San Francisco Giants?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . ?uri },lcquad +Which place of Geography Club is the location of Seattle Great Wheel ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +How many races has Best Mate won?,SELECT DISTINCT COUNT(?uri) WHERE { ?uri . },lcquad +Which governor of Charles Willing had a child named John Scott ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . },lcquad +List the relatives of Lyubov Dostoyevskaya ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +What is the military rank of the important commander of Peruvian Army?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Do the west coast airlines fly to seattle?,ASK WHERE { },lcquad +"Which units are garrisoned at Arlington County, Virginia?"," SELECT DISTINCT ?uri WHERE {?uri } ",lcquad +In how many different places have ehtics philosophers died?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?uri },lcquad +Who is the fictional character who starred in The Dognapper?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +Who is the developer of Dart (programming language) ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Which house has published books about Jazz?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Which person naratted The Incredible Hulk and also the writer of Tales of Suspense ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Who are the parents of writers born and bred in Buckinghamshire?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +List down the common sports played by PATTS College of Aeronautics and lytechnic University of the Philippines Taguig ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +How many companies have built concrete bridges?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },lcquad +How many movies have been directed by almunies of Parsons School of Design?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?uri ?x . ?uri },lcquad +Count the number of sport played by the school which also plays Association football ?, SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri },lcquad +Which countries militaries fought the SFOR battle?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +List the people died in Hyderabad and are a member of political party ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +"What is the american football league whose champion is from Kansas City, Missouri?","SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri }",lcquad +How many thesis were supervised by Ernest Rutherford?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . },lcquad +"Who is the publisher of the comic, one of whose authors is Kentaro Takekuma ?",SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +List the scientists whose doctoral advisor is Ernest Rutherford and are known for Manhattan Project?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +Where is the garrison of Western Naval Command ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +What is the political party of the of Bengalis ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Was John of Damascus canonized by Anglican Communion?,ASK WHERE { },lcquad +Which city's mayor is married to Jean Marc Germain?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . },lcquad +Which person's successor is Samsu-iluna?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +Where do the sister stations of Al Khaleejiya 100.9 play?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Name the sports played by Jamiatu Muslim Mindanao?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Was X the Unknown edited by James needs?,ASK WHERE { },lcquad +List the party of the office holder which also has the affiliation with Congress Socialist party ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +What is the nickname of the city where Tuba Dei lives?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +From how many different places did the weapons used in the American Indian wars originate?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?uri },lcquad +Name the office holder whose alma mater is Harvard-Westlake School and resting place is Alta Mesa Memorial Park?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +Which company developed Google Web Toolkit and Google custom search?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +Name the rive whose mouth is located in Limerick and location is Dowra?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +How many sports are played in maharashtran schools?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?uri },lcquad +What is the citizenship of Ren Romano ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Which magazine's publisher is Jann Wenner and founded by Ralph J. Gleason?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +Where did chancellor served by Rudolf Kirchschlger die?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +How many owners owned the clubs participating in the Premier leagues of '14?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },lcquad +"How many people live in the Beverly Hills, California?","SELECT DISTINCT COUNT(?uri) WHERE {?uri . ?uri }",lcquad +Name some islands in a pacific archipelago?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },lcquad +"For how many movies have the music composer composed music, who have collaborated with Yes ?",SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?uri ?x . ?uri },lcquad +Name the driver who had a pole finish in 1989 Portuguese Grand Prix ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Jeff Munn is the president of which basketball team ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +"In how many areas do the networks broadcast, which also broadcasts in North Carolina?",SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?uri },lcquad +Name the sovereign state of Wallington railway station ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Which terrotory of Tonkin campaign also the death bed of Thophane Vnard ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Where does the Giannis Alafouzos originate?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +What is the death place of the Elbieta Czartoryska which is also place of birth of the Charles Journet, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +What mammals fall into the biological family Canidae?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +what region is governed by Mario Olivero?, SELECT DISTINCT ?uri WHERE {?uri } ,lcquad +Whihc party of the Mizoram Legislative Assembly is the government type of kumta ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +What sports can be played in institutions in Bataan?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +What is the total number of regions served by the companies which also serves Australia?, SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri },lcquad +What tv series can be said to be related to the sarah jane adventure and dr who confidential?,SELECT DISTINCT ?uri WHERE { ?uri . ?uri . },lcquad +Which route junction of the Rhode Island Route 15 is the place of birth of the Michael Poulin?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +What is the birth city of the Salford City F.C players ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +What is the birthplace of Liudmila Privivkova and Qadir Huseynov ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +Who are the maintainers of the bridges which cross the pandaruan river?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Who has official residences at Colts Neck Township and Beverly Hills?,"SELECT DISTINCT ?uri WHERE { ?uri . ?uri . }",lcquad +List the area of radio stations whose sister station is WBCQ-FM?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Which school did Robbie Diack attend?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +"List the alma mater of the congressmen who attended Nashville, Tennessee ?","SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x }",lcquad +What is the broadcast area of CFRX ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Who developed games based on the Cars series?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +What are the american football players whose former team's coach is Jason Maas?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },lcquad +Which hub of Cascade Airways is also the resting place of Brandon Lee ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +How many companies have manufactured the rockets launched from the Cape Canaveral Air Force Station?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },lcquad +What is the sea connected to Kaliningrad and Gdask?,SELECT DISTINCT ?uri WHERE { ?uri . ?uri . ?uri },lcquad +Name the agency of Election Commission of Thailand ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +In which country did the planes designed by Ursula Hanle originate?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +what are some units udner the US department of navy?, SELECT DISTINCT ?uri WHERE {?uri } ,lcquad +Which destination of the Novair International Airways is also the predecessor of the Chevrolet Caprice?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +What did other artists associated with the Shirelles make?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Which sitcoms are made by a company headquartered in NYC?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },lcquad +Name the city of Duwamish River ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +List the children of the parent of Marvin Bush.,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +List the awards received of the person whose child is Daine Disney Miller?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +In which country is the Baku puppet Theater located which is also the birth palce of Anar Salmanov ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +List down all the cast members of Tony n' Tina's Wedding ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +What is the airline company has its headquarters in Dublin Airport?, SELECT DISTINCT ?uri WHERE {?uri } ,lcquad +What was the result of Operation Autumn Clouds ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Where was the Temptation Waits recorded?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Some movies whose screenplay is done by american born people?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . },lcquad +List the relatives of clay Aiken ?,SELECT DISTINCT ?uri WHERE {?uri . },lcquad +List the relatives of the children of Jon Voight ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +What is the resting place of the children of Bruce Lee ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +List the colonel with branch as Militia ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . },lcquad +List all areas served by the radio station serving South carolina ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Which TV show's theme was composed by a band in which Todd Huth used to perform?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },lcquad +Which work is both Neil Cross and Lars Pearson both known for ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +What is the state of origin of Abbas Jafri ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +which award has been won by Claudia Moro?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +What religion did the spouse of Richie Aprile follow?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Which river has its roots in Baikal Mountains?, SELECT DISTINCT ?uri WHERE {?uri } ,lcquad +What is the country whose leader was once Valentina Matviyenko?,SELECT DISTINCT ?uri WHERE {?uri . },lcquad +Is Ingo Steuer the formercoach of Stanislav Morozov?,ASK WHERE { },lcquad +Whose units are responsible for close air support?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . },lcquad +Which university has chancellor as Nicholas S. Zeppos?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +Is Liang Chow the headcoach of Shawn Johnson?,ASK WHERE { },lcquad +Name the key people of the non-profit organisations whose one of the key person is Lesley-Anne knight ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +What is the address of Federal Reserve Bank Building?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +What are the kind of games one can play on windows?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +What is the location country of the bank whose successor is Mauritius Bank ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Which artists have co-starred with Kris Kristofferson?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +List the software using C++ as programming language and licence is Software as a service?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +Which are the major hubs of airline which operates the Menora Tunnel?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +List the countries through which European rout E39 and E8 passes ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +Who are the writer of the singles whose music genre is Rhythm and blues ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Which country does the current team of Darren McNamara belong to?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Name the mountain which belongs to Sierra Nevada range and is located in Inyo National Forest?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +What are the awards won by the film editor of The Search?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Which serving railway line of the Rostov-Glavny is also the place of birth of Nina Vislova?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Who coached the Marquette golden eagles men team in 09 to 10 and then again in 13 to 14 ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +Give me some series related to the one which had Yasmin Paige in them.,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },lcquad +Is James Wong Howe the cinematographer of Behave Yourself?,ASK WHERE { },lcquad +Does Heydar mean the same as a lion?,ASK WHERE { },lcquad +Which associate musical artist of Carolyn Dennis is also the composer of Motorpsycho Nitemare ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Count the number of shows whose creators are Jerry Seinfeld and Larry David?, SELECT DISTINCT COUNT(?uri) WHERE { ?uri . ?uri } ,lcquad +"What is the state of the settlement, which is the sub assembly of Mohamedia, Tunisia ?","SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . }",lcquad +Name the rivers in the hudson highlands state parts?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +How many TV shows have executive producer as Steven Moffat ?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . ?uri },lcquad +"Which office holder's military unit is USS Kittiwake and constituency is Castro District, San Francisco ?","SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri }",lcquad +Which writer of the Snaman is also the writer of Neverwher ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +How many relatives are there of veterans of operation Barbarossa?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },lcquad +Which famous political figures are relatives to George Madison?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Which organisation has superintendent as Lieutenant general (United States)?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +Who all have been in bands which have recorded their work in the Electric Lady Studios?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },lcquad +"What religion is practiced by Hirunika Premachandra, and many others south asians in Hong Kong?",SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +Was Kevin Jonas a part of Jonas brothers?,ASK WHERE { },lcquad +Who did the associated act which is a Peter Frampton production ?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . },lcquad +List the shows whose company's successor is Amblin Television.,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },lcquad +How many shows are made by the channel whose predecessor was the Comedy Channel?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?uri ?x . ?uri },lcquad +List of people who were the first one to ascend a mountain in the Cathedral range?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Give me the mascot of the military unit in which Stewart Bovell served?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Which company owns GetTV and Hypnotize minds ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +In which wars did commanders born in Indochina fight?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },lcquad +Who has written the mary poppins musical?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Which newspaper is owned by people living in Oslo?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . },lcquad +Who made the engine whose predecessor is the SHO V6?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +For how many different teams have Ontarians been drafted ?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },lcquad +Name the university of Alexandre Tichonov ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +In which countries can i find broadcasted TV in southeast asia?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +"Over how many cities did the Bellaton MMA, Season 11 take place?",SELECT DISTINCT COUNT(?uri) WHERE { ?uri . },lcquad +Whose academic advisor works at the St George's Hospital?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . },lcquad +Count the number of people who graduated from universities affiliated with the NCAA.,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?uri ?x . ?uri },lcquad +Which governor of Charles Willing byrd fought the battle of Siege of Fort Recovery ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . },lcquad +How many characters were made by Paul Dini?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . },lcquad +What are the name of the casualties affected by shooting rampage of Eric Harris and Dylan Klebold?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +How many molluscas are there whose families are Buccinidae and Buccinoidea?, SELECT DISTINCT COUNT(?uri) WHERE { ?uri . ?uri } ,lcquad +List the newspapers which has headquarters in Stockholm?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +List the relegion of tani University which is also the life stance of udit Raj ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Was David Gilmour a former member of Pink Floyd?,ASK WHERE { },lcquad +what are some players of England national football team?, SELECT DISTINCT ?uri WHERE {?uri } ,lcquad +Which genre of books does the writer of The Many Hands write?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Where did Aghasalim Childagh die?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Give me a count of airlines whose hub airport is Los Angeles International Airport?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . ?uri },lcquad +Where is the football team located in which Josh Bell did his debut?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Where is the successor of john waldo from?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +How many awards have screenwriters won?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },lcquad +What are the houses of the Parliament Security Services and Parliament of India ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +How many owners are there of things located in Alabama?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },lcquad +Which writer of A literary Nightmare also extended the work of The Apple tree ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Who collaborated with Johnny Cash and Kris Kristofferson ?,SELECT DISTINCT ?uri WHERE { ?uri . ?uri . },lcquad +What is the television show whose opening theme is Where Everybody Knows Your Name?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +"How many companies were founded in Denton, texas?","SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?uri ?x . ?uri }",lcquad +Of which countries does Viveka Babajee have citizenship?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Which club of perianne Lones is also the home town of the Kady O'Malley ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Where are the shrines of the saints who were beatified by Pope Pius XI?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +What is the ethicity of Ted Falon?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +By what person of which political party is Balangir district led?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Who is the political figure whose military branch is Colonial troops?, SELECT DISTINCT ?uri WHERE {?uri } ,lcquad +Foxy Brown was associated with which band?, SELECT DISTINCT ?uri WHERE {?uri } ,lcquad +Which creation of Josh Friedman was portrayed in Terminator 2 ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . },lcquad +What are some common games played in PATTS college of aeronautics and Jamiatu muslim mindanao?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +Of how many battles is Chickasaw Campaign of 1736 consisted?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +In which country is there a political party whose leader is Jose Cha Cha Jimenez?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Which movies' composers have won a BAFTA for film music?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },lcquad +What kind of things are on the radio stations affiliated with the Baltimore Ravens?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Which work institue of andrew Schally belongs to WTUL ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Who is the author of Heroman is also the author of Karakuri Dji Ultimo ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Name the common sports played at Polytechnic University of Philippines San Juan and Islamic Azad University?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +What organization is the parent of Greenpeace Nordic?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Of what all has David Ian Salter been an editor of?, SELECT DISTINCT ?uri WHERE {?uri } ,lcquad +How many ,SELECT DISTINCT COUNT(?uri) WHERE {?uri . },lcquad +What is the place of birth of the Kira Plastinina and Sergey Ryazansky,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +Name the river whose mouth mountain is Essex and river mouth is North Sea?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +What is the products of the BBC Multimedia and series of the The Last Resort (Doctor Who), SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Which mascot of Celal Bayer university is also the nickname of kore Presbyterian Theological Seminar ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +In how many countries do the rivers start which end at the Caspian Sea?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?uri },lcquad +Who is the leader of the Kriminalpolizei and Ordnungspolizei?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +What award has been given to Roy Walker as well as Walt Disney?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +"Give the total number of places to which airlines go, who also go to Glasgow?",SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?uri },lcquad +What is the death place of the Marina Pankova and Viktor Ulyanich?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +Who was the PM under which William Deane served?,SELECT DISTINCT ?uri WHERE { ?uri . },lcquad +Which leader of Trump Entertainment Resorts is a relative of Maryanne Barry?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +In which states can I find Truss bridges?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Which awards have Puerto Ricons won?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Where is the rival school of Somerset Berkeley Regional High school?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +What products are made by Tehran based companies?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Count number of people who follow a religion which has an important office in Gold Base ?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?uri ?x . ?uri },lcquad +In which areas can we find the networks owned by the govt of Mauritius?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +What is the profession of the William Luther Hill and also the office of the Richard Coke ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +What's the religion of the winner of china election of 2008?,"SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . }",lcquad +What is the city nearest to the historic place whose architect is Joseph Dion?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Who is the father of Edith Vonnegut and is also a writer?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +was Charlemagne canonized by antipope pachal 3?,ASK WHERE { },lcquad +How many basketball players studied in the Midland College?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . ?uri },lcquad +List all the collaborators of the artist which has collaborated with sanremo Music Festival ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +"Who was the president under whom, a governor participated in Shay's rebellion?",SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Which actors have performed in plays performed in New York?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Who is the editor of Hearth and Home ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +List the books by the authors buried in the Convent of the Barefoot Trinitarians?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },lcquad +How many game series exist for iOS?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },lcquad +Where does Manu cornet work?,SELECT DISTINCT ?uri WHERE { ?uri . },lcquad +"Which awards did the creator of A Barrel of Laughs, a Vale of Tears won ?","SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x }",lcquad +In how many different places were the people born who are members of National Museum of Racing and Hall of Fame?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?uri },lcquad +Was einstein a doctoral student of Alfred Kleiner?,ASK WHERE { },lcquad +What is the source country of reg Lake ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Which hockey teams have had people playing as Defenceman?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +which president was served by Joseph Stiglitz?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Name the tenant of Ever bank field which has also has player named Dan Shamash ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Who is the mfr. of the engine used in Ford Transit ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Where did the employees of American College of Surgeons study?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +"Name the people whose residence is Beverly Hills, California?","SELECT DISTINCT ?uri WHERE {?uri . ?uri }",lcquad +Did Stan Lee create Jean Grey?,ASK WHERE { },lcquad +The authors of Zhorstoke nebo was influenced by whom ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +What product is made by Sony and Foxconn togather?,SELECT DISTINCT ?uri WHERE { ?uri . ?uri . },lcquad +Which city has radio stations which are Religious ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +From which state do the White Plum Asangas come?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Who operates the Ganz UV?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +What is the state of Umatilla language which is also the state of James K. Kelly ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Where has GARAGE recorded its singles?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +How many players participated in the 2004-05 FC Barcelona season?,SELECT DISTINCT COUNT(?uri) WHERE { ?uri . ?uri },lcquad +Whose mam is Bertrada of Laon?, SELECT DISTINCT ?uri WHERE {?uri } ,lcquad +Give me a list of all the people driving at pole positions in the Grand Prixes where Renault was a first team?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Who is the developer of the software which distributes Batman: Arkham City Lockdown ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +What are the non-fiction topics in the books whose authors is Terry Pratchett?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Is WP 8.1 the OS on Lumia 830?,ASK WHERE { },lcquad +Name a movie with actor as Momoko Kchi and music by Akira Ifukube?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +Which railway line goes through the stations which are a part of the North Caucasus railway?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Which animal is the mascot of the 1502nd Infantry Brigade (Ready Reserve) and Galatasaray Handball Team ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . ?uri },lcquad +Who was in missions of Gemini 8 and Apollo 11?,SELECT DISTINCT ?uri WHERE { ?uri . ?uri . },lcquad +Name the source Island of Bayou ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +What location country of AH141 is also the nation of malaysia Junior hockey league ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Which college of the Luke List (golfer) is the alma mater of the Park Trammell ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +"Of the sports commonly played at Islamic Azad Uni, tehran, which one does Jon Speelman play?", SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +How many artists are signed up with Celluloid Records?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . },lcquad +Henry McDaniel's trained horses have won which awards?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +What were the occupations of Marcus Floyd?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +With whom is the institution of David Charles affiliated?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +"From how many coutries do companies come, which are headquartered in the Klang Valley?",SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?uri },lcquad +"What political party has governed both in Baraily,MP and Jowai?",SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +Who is the builder of the bridge owned by Tabriz ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Is the song Only the Good Die Young from The Stranger?,ASK WHERE { },lcquad +Who are the golf players whose college is Arizona State Sun Devils?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +Did taylor swift do the theme song of The Farmer Wants a Wife?,ASK WHERE { },lcquad +How many local authorities manage mixed gender schools?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },lcquad +"What is the almamater of the successor of F. A. Little, Jr.? ","SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . }",lcquad +List everything in which saxophone players have been casted.,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . },lcquad +In which city is Corringham railway station located?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +What monument was unveiled in 1984 of fine arts of the Soviet Union ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Where did the wrestler trained by Ring of Honour get billed?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Name the console whose successor is PlayStation 4 and predecessor is PlayStation 2?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +List the name of those who became famous for something garrisoned at Tennessee?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . },lcquad +"Which school teams are there in schools of Arlington Heights, Illinois?","SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x }",lcquad +Who is the person whose opponent's father is Newman Haynes Clanton?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . },lcquad +Who has official residences at Beverly Hills and Colts Neck Township ?,"SELECT DISTINCT ?uri WHERE { ?uri . ?uri . }",lcquad +What games are played in Protestant schools?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Which river flows through both eastern and western washington?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +What company is the distributor of Bombay Sapphire?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Did Trish Stratus train Christina Crawford?,ASK WHERE { },lcquad +Which stockholder of yale Repertory Theatre was training center of William Anthony ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +"Name the team for which Hensley Meulens played, whihc was also the debut team od Steve Ontiveros ?", SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Name the common institution of the Erica Frank and Douglass North?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +Name a office holder whose predecessor is Edward Douglass White and has son named Charles Phelps Taft II?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +List the ingredients of Kaszanka?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +List the language of Kunsten Museum of moder art Aalborg ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Is wizard rock inspired from Harry potter?,ASK WHERE { },lcquad +What is the venerated in of the Abraham and religion of the Saima Chowdhury, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Who directed the haunted house and alice in wonderland?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad + Name the city whose province is Metropolitan City of Venice and has leader as Luigi Brugnaro ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . },lcquad +Who is the leader of Panki block ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +To which persons is Ron Cyrus a relative?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +How many services are there of the companies whose services is Web hosting service ?, SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri },lcquad +Is Neungin High school a buddhist school?,ASK WHERE { },lcquad +Name the mascot of the military branch of William Harper.,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +What musician is often associated with Tiffany Villarreal and wrote Same Song?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +Which location country of Ennejma Ezzahra is also the origin of Boga ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +What is the state whose largest city is Denver?,SELECT DISTINCT ?uri WHERE {?uri . },lcquad +Who have been the manager of national team of Spain?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +For which common president did Jim Sasser and Mike McCurry work?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +What is the municipality of the Homestead Grays Bridge and Roberto Clemente Bridge?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +Who is a successor of Kingship whose parents were Julius Caesar?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +How many organizations work for Environmentalism?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . },lcquad +Was Zambezi originate in the north western province of zambia?,"ASK WHERE { }",lcquad +Which US state has Dorchester Bay and the Joseph Story?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +Who is the predecessor of Voere ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Which city is Black Grape Global located ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Which movies did Mark Steven edit?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +Who is the common distributer of Bombay Sapphire and Rev ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Which sports are played in the school which runs the Fr. Agnel Stadium?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Name the common musical band of Take Me There and Tonight's the Night ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +Which ethnicity do Linda Hogan and Riley Reid come from?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +Who is the parent of FD Roosevelt JR?,"SELECT DISTINCT ?uri WHERE {?uri . }",lcquad +NAme the emplyer for whihc Manu cornet has worked and also written in Google Web Toolkit ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +is ANYway in the Quack album?,ASK WHERE { },lcquad +How many more teams have rented the stadium used by Raptors 905?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?x },lcquad +List the common prime minister of the Robert Ray and graham richardson ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +Count the wars in which people awarded with the Croix de guerre fought.,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?uri },lcquad +Which first driver of European Grand Prix 1993 is also finished first in 1985 Portuguese Grand Prix ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +"Name the river whose source is located in Itasca State Park and mouth is located in Pilottown, Louisiana?","SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri }",lcquad +How many have been awarded by the Royal Society?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . },lcquad +From how many different cities have people gone to the Illinois Fighting Illini men's basketball?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?uri },lcquad +who manufactures the SHO V8?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +What is the television show whose opening theme's album is Cheers?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },lcquad +What sports are played in schools in Vashi?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Name the television show developed by J. Michael Straczynski and distributed by Warner Bros. Television?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +"Where are the agencies headquartered at, which are under the Colorado Dept of Natural Resources?",SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +What is the genre for the developer of Interplay Entertainment?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Give me some nominees of politicians in the US?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +What is the TV Show whose theme is composed by someone signed up with Prawn Song Records?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },lcquad +Name the team of Michael springer ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +In which television shows have Steven Moffat served as an executive producer?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +Was Robert Burns from the Romanticist School of thought?,ASK WHERE { },lcquad +Paris Sisters singles are of which language?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Who were the first drivers in the grand prix which took place at Autodromo Enzo e Dino Ferrari?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +What belongs to the families of Buccinidae and Buccinoidea?,SELECT DISTINCT ?uri WHERE { ?uri . ?uri . },lcquad +What are the broadcast areas of Mauritius Broadcasting Corporation?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +"Where was Henri, Duke of Rohan laid to rest?"," SELECT DISTINCT ?uri WHERE { ?uri } ",lcquad +What are the movies whose cinematographer is Gregg Toland?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +In how many different highschools have people schooled in Penn State Nittany Lions football studied?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?uri },lcquad +Name the founders of the record labels whose one of the founders is Frank Rogers ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +How many different people hold authority over the members of Balanidae family?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },lcquad +Which offices were held by the politicians who held their allegiance to the union of american civil war?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Who is the american football player whose highschool is Ringgold High School (Pennsylvania)?, SELECT DISTINCT ?uri WHERE {?uri } ,lcquad +Count the total number of conflicts people who were part of conflict in afghanisthan ?, SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri },lcquad +Kendall Jenner has how many relatives?,SELECT DISTINCT COUNT(?uri) WHERE { ?uri . },lcquad +Where is Tahual located which is also the country of Ren Romano ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +What is the current team of John McGuinness (motorcycle racer) ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Where do the CNN employees typically graduate from?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Name the common serving line of Daund Junction railway station and Ujjain Junction railway station?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +"What other destinations do airlines go to, whose flights also come to Glasgow?",SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +"What is the location town of First Church of Christ, Scientist (Pittsburgh) ?"," SELECT DISTINCT ?uri WHERE { ?uri } ",lcquad +Does the platte river originate in Colorado?,ASK WHERE { },lcquad +Bridges over what can carry vehicles?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Where is the spouse of Henry Bourchier of Essex buried?,"SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . }",lcquad +Which ship builder built the USS Camp and Sturtevant ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +What shows are on the networks which are from the United States?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },lcquad +Name the scientist whose doctoral supervisor's doctoral student is John Bowlby?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },lcquad +"Which author inspired Susanna Clarke, and wrote Northanger Abbey?",SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +"Name the office holder whose Governor is Charles Willing Byrd and has resting place as North Bend, Ohio?","SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri }",lcquad +Over what do Concor holdings have a bridge?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Which sports are played at both the Polytech uni of Bataan and Taguig?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +Name the movies distributed by Cinema International Corporation and edited by Hulian Doyle ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +What is the company which has Raymond Conner and Dennis Muilenburg as key person?,SELECT DISTINCT ?uri WHERE { ?uri . ?uri . ?uri },lcquad +Who narrated the albums in which Harry Nilsson performed?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +What is the province of Rouen Business School ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +List some songwriters whose work has been recorded in Miami?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Is KOMC-FM the sister station of KOMC (AM)?,ASK WHERE { },lcquad +What is the denomination of S. H. Kapadia ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +who are the managers of england national under 20 football team?, SELECT DISTINCT ?uri WHERE {?uri } ,lcquad +What is the total number of relgions followed by people born in Bangkok?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },lcquad +Which movies have someone on their cast from Shelby County in Tennessee?,"SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri }",lcquad +Who appointed the governor under whom Richard Winn served?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +What is the city whose mayor is Anne Hidalgo?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +"In which ice hockey league, did the team coached by Joel Quenneville win?",SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },lcquad +Which musical artist collaborated with Tony Allen (musician) and label is Victor Entertainment?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +Which american football players currently plays for Michigan Wolverines?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +In how many different places have US people died?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?uri },lcquad +Count the number of software which runs on Microsoft Windows and mac OS ?, SELECT DISTINCT COUNT(?uri) WHERE { ?uri . ?uri } ,lcquad +What is the common race of the Martin Molony and race of the Coneygree ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Which countries led by Elizabeth II?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +Who is the tenant of the home stadium of Toronto Phantoms?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +What is the purpose of Maharashtra Chess Association ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +What is the draft team of the ice hockey players whose position is Centre ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Who represent the constituencies of Noe Valley and Duboce Triangle ?,"SELECT DISTINCT ?uri WHERE { ?uri . ?uri . }",lcquad +What is the total number of religions that politicians have followed?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },lcquad +What sports team's arena is The Palace of Auburn Hills,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +Name the religious affiliation of Vagif Aliyev ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Who composed songs in the Mr Tambourine Man album?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +To what companies is Dennis Muilenburg important?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +Name the TV show whose company is Playtone and written by Graham Yost?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +Where are the politicians buried who succeeded George Whitefield Davis?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +What is the fictional character which belongs to families of Darth Vader and Padm Amidala?,SELECT DISTINCT ?uri WHERE { ?uri . ?uri . ?uri },lcquad +What were robert sarvis and JAck Ryan nominated for ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +Count the number of other services of the companies which provides the Microsoft Azure as service ?, SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri },lcquad +Which animator of the The Skeleton Dance is also the director of The Haunted House (1929 film) ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +How many first drivers have participated when Scuderia Ferrari was a first team?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },lcquad +In how many countries are people born who play cricket?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?uri },lcquad +What are the towns who have Thesaban system?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +In how many different wars have people graduated from the Army Command and General staff college fought?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },lcquad +Which non fictional subject of Thud is the athletics of PATTS College of Aeronautics ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Was Beth Tweddle primarily coached by Amanda Reddin?,ASK WHERE { },lcquad +List the current members of Metro Station (band) ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Was robert sarvis a nominee of the US Senate?,ASK WHERE { },lcquad +Which major shrine of Tekle haymanot is the palce of death of Haile Selassie Gugsa ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Which video game's artist is Hiroji Kiyotake and computing platform is Virtual Console?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +Name a basketball player with teams as Chicago Bulls and Phoenix Suns?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +What is the home stadium of Kenya's women national football team ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Where does the jurisdiction of European Border and Coast Guard fall?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +What is the award which is presented by Swedish Academy?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +Where was the company who is the operator of Harihar Airport founded ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +What are some important people in NGOs headed by Donna Shalala?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +What are the other key people of the non-profit organisations whose one of the key person is Joe Green ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Who are the people whose phD advisor was Harry Harlow?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +What is the county seat of Moscow Governorate ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +What are some books whose cover illustration is designed by Marshall Arisman?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +Momoko Kchi has acted in which movie ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +What show has Sirius XM Holdings and Fox Sports Radio as channels ?,SELECT DISTINCT ?uri WHERE { ?uri . ?uri . ?uri },lcquad +What is the name of the television show whose developer is J. Michael Straczynski and actor is Jason Carter (actor)?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +What are some cars similar to the ones assembled at Toluca?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Who is associated to the predecessor of Dan Mica?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . },lcquad +Michael Deeley produce how many movies?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . },lcquad +List borders of the admin region bordering Arctic ocean ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +What is the nationality of the J. T. Krogh which is also the sovereign state of the Camilla Martin, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +How many food items have an ingredient from the Sapindales family?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?uri ?x . ?uri },lcquad +Which district of Thorington railway station is the location of death of David Lewis (poet) ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Who was the head coach of Middlesbrough F.C. season 2006-7 also the coach of England national under 21 footbal team ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Who designed the bridge over the Valaichchenai lagoon?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Where did anton ausserer die?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +How many teams have used the stadium which hosted the WCW mayhem?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?x },lcquad +List bacterias whose orde is Bacillales and division is Firmicutes?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +Who are in the liang chow club?, SELECT DISTINCT ?uri WHERE {?uri } ,lcquad +To which family does korean fox belongs to ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +"What is the alma mater of the person, whose child is Samuel Moreno Rojas?",SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Name the river whose source place is Gloucestershire and mouth place is Southend-on-Sea ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +In how many countries does the Zurich Affoltern am Albis Zug line go?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?uri },lcquad +How many movies did Joel Schumacher direct?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . ?uri },lcquad +In how many places did Julian Leow Beng Kim study?,SELECT DISTINCT COUNT(?uri) WHERE { ?uri . ?uri },lcquad +Is lion an animal?,ASK WHERE { },lcquad +Which cities have the river one of whose Tributary is the Missouri's big spring?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Which Stanley Kubrick's movie has music by Laurie Johnson?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +How many movies were directed by the graduate of Burbank High School ?,"SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?uri ?x . ?uri }",lcquad +What is the type of Vesak ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Who have become famous by movies produced by Laurence Mark?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . },lcquad +Count all the scientologists.,SELECT DISTINCT COUNT(?uri) WHERE {?uri . },lcquad +Laozi has authored which books ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +Name the river whose source location is Nevado Mismi and region is Arequipa Region?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +List the awards won by the fashion designer which have been recognized by Tennessee State Museum ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Where can I find companies which originated in Canada?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Name the species of Panthera leo fossilis ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +What is the nationality of Newin Chidchob ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +List the affiliations of Wikipedia Zero ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +What is the route start of Capitol 400 ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Which awards did the parents of Anna Bergman win ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +How many schools have a bison as their mascot?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . ?uri },lcquad +What river originates in the Connecticut Lakes?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +List the bacterias whose division is Firmicutes and domain is bacteria?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +Which country of Montaas Mayas Chiquibul is the birth place of Jos Bernardo Escobar?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +Who is the head coach of 2009-10 Middlesbrough F.C. season ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Name the battle fought by the people which also fought in Levant ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Which work institutions of the Andrew Schally is the alma mater of the Mara Eugenia Rojas Correa ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Which politician's constituency is led by the SF Board of Supervisors?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },lcquad +How many factions have fought in wars where Francois Marie Le Marchand de Lignery was involved?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?x },lcquad +What are some people who are on the board of companies founded in NY?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },lcquad +Who was the architect of the stadium currently run by the Pittsburgh Pirates?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Give me a count of musicians who play an instrument developed by George Beauchamp ?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?uri ?x . ?uri },lcquad +What sport activities are available at Polytechnic University of the Philippines Bataan?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +In how many places have the companies started in Newcastle worked?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?uri },lcquad +What are the musicals of the people died in California?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },lcquad +"What sport has made Eric Schiller famous, and has employed Craig Van Tibury?", SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Which pole driver of 1989 Portuguese Grand Prix was also the first driver of 1993 European Grand Prix ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +What is the debut team of the gridiron football player who coached the 1931 Staten Island Stapletons season ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Name the alma mater of the scientist famous for Email filtering ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Where is the T.I. Ahmadiyya Girls Senior High School?," SELECT DISTINCT ?uri WHERE { ?uri } ",lcquad +"To what region is Sukhumbhand Paribatra, a leader?",SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +What are the birth place of the people who are the star of Dhoondte Reh Jaaoge?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Which software uses windows as it's operating system and is written in C++ ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +Which domain's journals did Willard Fiske edit?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +What is the religion of the person who is in the cast of Master's Sun> ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +"What is the television show whose theme music composer's home town is El Sobrante, California?","SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri }",lcquad +How many maintainers are there of the bridges that can carry motor vehicles over them?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },lcquad +What currencies are circulated in the countries where people speak French?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Did Oliver Sacks study at the Columbia University?,ASK WHERE { },lcquad +Give the distinct number of other party of the people which have one of the party as Janata Party ?, SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri },lcquad +List the former partner of the figure skaters whose former choreographer was Igor Shpillband.,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Give me a list of all the buildings which are located in districts governed by John Tory.,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },lcquad +Which BBC's TV show is related with the Sarah Jane Adventures?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +Which associate of Thomas bryan Martin is also the president of Carmichael ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Which political party got elected in First Legislative Assembly of Uttar Pradesh ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +How many organizations own the website to which Jimmy Wales contributes?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?uri },lcquad +Name the notable commanders of Army Group Oberrhein ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Which high school of the Jerry Tagge also was the palce hwer Temptation Waits was recorded ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Was His New Job edited by Charlie Chaplin?,ASK WHERE { },lcquad +Does vance johnson play as a wide receiver?,ASK WHERE { },lcquad +Name the place of Qaqun ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +What is the deathplace of people who have worked in Ethics?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +List all the nicknames of the city which has Toru gingerbread as one of it ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +What are the awards won by the film editor of World of Tomorrow ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Is Luigi Brugnaro the mayor of Venice?,ASK WHERE { },lcquad +Which mountains are contained in Inyo National Forest?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +Whose children are married to Fredric Joliot-Curie?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . },lcquad +"Where did the president study, whose VP was Emilio Nez?",SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Where are the homestadiums of the seasons chaired by Merritt Paulson?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Was elizabeth ann seton beatified by Pope John XXIII?,ASK WHERE { },lcquad +"What is the architecture of First National Bank and Trust Building (Lima, Ohio) ?"," SELECT DISTINCT ?uri WHERE { ?uri } ",lcquad +What are some languages in the italic family of languages?, SELECT DISTINCT ?uri WHERE {?uri } ,lcquad +Count all the awards which were presented by something located in California.,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?uri ?x . ?uri },lcquad +What is the region of the Kim Sawchuk which is also served by the Airtours International Airways ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Who all held a position when Gough Whitlam was the prime minister?, SELECT DISTINCT ?uri WHERE {?uri } ,lcquad +In which part of the world will I find Kim Sawchuk and Vuelta Mexico Telmex?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +What are the mascots of the teams participating in the Turkish Handball Super League?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Which tenants of the Master Card center is also th draft team of Sam Carrrick , SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Which country has given citizenship to both saima chowdhury and edmund john?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +Who originally wrote the manga which was later illustrated by Tamon Ohta?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Which university was attended by both Richard H Immerman and Franklin W Olin?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +How many other race are there of the adult (pornographic) actors whose ethnicity is Cherokee ?, SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri },lcquad +Who maintains the stuff designed by the Brunei government?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Stockholm is the HQ of how many things?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . },lcquad +What is a salthill?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +What is the sea connected to Oulu and Turku?,SELECT DISTINCT ?uri WHERE { ?uri . ?uri . ?uri },lcquad +List all the parents of writers coming from the Great Missenden ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +In how many regions is the Baco Noir made?,SELECT DISTINCT COUNT(?uri) WHERE { ?uri . },lcquad +What is the source country of Water resources managemnt in EL Salvador is also the land of Jos MAra Orellana ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Where does the Jerusalem Institute of Justice render their services?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +What is the common nickname given both to Harding academy and Lyons township high school?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +What borders siberia?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +To which party do the politicians who died in Delhi belong?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Who created the stadiums who have been rented by the Boston Red Sox?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +What is the region of the successor of Mr. Jerome B. Chaffee ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +What is the profession of the Chris Myers (New Jersey) which is the governing body of Oahu Railway and Land Company ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +In which countries were the Russian volleyball team players born?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Which religion's people are member of BJP?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +List down the commanders of Battle of Fort stephenson ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +What is the subject of The Prodigal son ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +ARM Architecture acts as a game platform for how many things?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . },lcquad +Name the work institutions of Andrew Schally?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +What is the fictional character which has Clan McDuck and Ludwig Von Draken as relatives?,SELECT DISTINCT ?uri WHERE { ?uri . ?uri . ?uri },lcquad +How many games have a composer who worked for the Creatures?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?uri ?x . ?uri },lcquad +Which licensee of EXXV-TV is also the licensee of WXXV-DT2 ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +Which state is the birth location of Ann Monroe Gilchrist Strong? ,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Which university's graduates have worked in the Quartermaster corps?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +How many people have voiced characters sculpted by Clamp?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },lcquad +Trainees at the national film school of Lodz have received what awards?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Were the bodies involved in the Westroads mall shootings discovered in Nebraska?,ASK WHERE { },lcquad +Which animator of the The Skeleton Dance is also the cinematographer of the Mickey's Mellerdrammer?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Who is the scientist whose academic advisor is Franz Brentano?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +Who was the animator of both Tommy Tucker's Tooth and Skeleton Dance?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +In how many different people are alumini of the University of Oxford working?,"SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . }",lcquad +Who is the developer of Montecito Inn ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Where did Paul Jones do his highschool?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Is stephanie a female?,ASK WHERE { },lcquad +For which team did Cam Plante and Doug Acomb both play atleast once?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +What are the shows whose creator has worked as a screenwriter?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },lcquad +To which students did Ernest Rutherford advised to?,SELECT DISTINCT ?uri WHERE {?uri . },lcquad +Which institution of the Alton Ochsner is the alma mater of the Michael Hahn ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Did Bob Suci play for the New England Patriots?,ASK WHERE { },lcquad +In how many places was the album of King Crimson recorded?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },lcquad +Which television show's company is Paramount Television and is located in Boston?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +Who is the starring of the movies such that music is by Raamlaxman?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Which nickname of Lyons Township JHigh school is also the mascot of Galatasaray Handball Team ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +What are the movies whose cast members are signed up with Point Blank Records?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },lcquad +What is the Team Name of the Cristo Rey Jesuit High School (Chicago) and is also the nickname of the Lyons Township High School ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +What do craig Van tilbury and karen Grigorian do for a living?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +Where is Dofinivka Estuary located ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +What is the city nearest to the islands in the Northwestern Hawaiian Islands?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Name the televesion show which has artist named Christopher Franke ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +name the races where bobby beasley took part ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Where do cherry chevapravatdumrong and daisi pollard both live?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +Which institution of the Alton Ochsner is also the alma mater of John Michael Seabright ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +what mountains are in sierra nevada?,SELECT DISTINCT ?uri WHERE {?uri . },lcquad +Who acted in the movies whose music is composed by Walter Scharf?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +What softwares were created by Apple Productivity Experience Group ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +"Who is the producer of the album, after which A Nice pair was released ?",SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Where can i find teams whose coach has been Rodney Eade.,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +List all that flows into the north sea?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Is the magnolia place of the greek revival architectural style?,ASK WHERE { },lcquad +How many head of agencies were there in Nazi Germany?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },lcquad +List all the notable work of the screen writer who produced Frasier ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Does Caroline Augusta Foley Rhys Davids study Buddhism?,ASK WHERE { },lcquad +Who employed the person famous for the Boeing fa18ef Super Hornet?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +In which monarch did Li Si succeed someone?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +List the awards given to the relatives of Gregorios Bernardakis.,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +What politician's partner is Diana Taylor ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +Which fields are covered by academic journals in the US?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +What is the draft team of Bob MacMillan ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Which football players have Newell's Old Boys as youthclub?, SELECT DISTINCT ?uri WHERE {?uri } ,lcquad +What are the teams for which Wilfred McDonald played for?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Who is the Artist of the singles whose film genre is Country music ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Is Denver the largest city of Colorado?,ASK WHERE { },lcquad +Count all those whose youthclub performed at the 14-15 La Liga?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?uri ?x . ?uri },lcquad +How many cities are around the sea which flows into the Atlantic?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?uri },lcquad +Who all are starring in the movies where director of photography is John Derek ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +List the import people of Maryland Jockey Club ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +What is the total number of companies who use a language designed by Bjarne Stroustrup?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?uri ?x . ?uri },lcquad +Who does Cam PLante plays for ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +What famous work is derived from the one whose lyrics are written by Inma Gonzales?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +How many awards have been given to the ones who died of lung cancer?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?uri },lcquad +Where the children of Ashot Grashi employed at?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Who holds shares in something famous for the Seven Spring Mountain Resort?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . },lcquad +Which executive producer of Into the Dalek also produced Wizards vs Aliens ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Who is the office holder whose deputy was Andrew Peacock and predecessor was Alexander Downer?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +Which famous philosopher died on island Euboea?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +What is the religion of the political party which is an international party of Hamas?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +How many honorary title are there of the scientists who has Australian of the Year award ?, SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri },lcquad +Name some TV shows whose theme is made by a band associated with Buckethead?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },lcquad +What is the alma mater of K. Terry Dornbush ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +What is the birthplace of the office holder who is the predecessor of Brian Peddle ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +What is the river which comes from Southend-on-Sea mountain?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +What is the birth location of the advisor of Richard Hofstadter ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Name the college of the Allama Matthews which also has affiliation with Monroe Carell Jr. Children's Hospital at Vanderbilt, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Does Abdelhameed Amarri currently play for Khartoum?,ASK WHERE { },lcquad +"What is the successor of the governors whose child is Levi Lincoln, Jr.?","SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x }",lcquad +Who is the prime minister that Michael Jeffery served?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +How many people are known for Dragons' Den?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . },lcquad +What is pitro Gruszka hometown ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Whihc place of birth of the Union State is also the largest city of Union Staete ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +How many different writers have written for Jump Square?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },lcquad +Who is the employer of Ralph flanders ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +List the awards given to the important people of Aardman Animations?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Which TV show developed by J. Michael Stracznski has artist as Christopher Franke ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +Is Giorgos Kaminis the mayor of Athens?,ASK WHERE { },lcquad +Name the members of European Go Federation?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +In which sitcom did Jeff Conaway acted and had TNT as its network ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +Grey gppse and eristoff is produced by which company?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +Where are the tombs of alumni of ational academy museum and school?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +What is the order of George Frisbie Hoar?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Among the universities having Gyrfalcon as mascot which have Michelle D. Johnson as superintendent ? ,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +Name the show whose theme composing band previously also had Bryan Mantia?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },lcquad +List the television shows whose Composers are associated with Strontium 90 ?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },lcquad +Name the band atleast one of whose members is famous for playing the Fender Stratocaster?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },lcquad + Count the participants of the NBA.,SELECT DISTINCT COUNT(?uri) WHERE {?uri . },lcquad +Who has stock in the railway lines managed by Norfolk Southern Railway?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +How many writers speak a language belonging to the Germanic kind of languages?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?uri ?x . ?uri },lcquad +Enumerate the cars related to the ones assembled in Toluca?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },lcquad +Where is the grave of Ivan III of Russia ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Name the capital of Barony of Caux ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Name the basketball players drafted by Los Angeles Clippers ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +Is Tenzing Norgay the first person to scale Mt. Everest?,ASK WHERE { },lcquad +Count the number of other product of the banks whose one of the product is Wealth management ?, SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri },lcquad +Which scientist is known for writing Philosophi Naturalis Principia Mathematica?, SELECT DISTINCT ?uri WHERE {?uri } ,lcquad +Which planet was first discovered by Johann Gottfried Galle?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +What are some organizations in Auckland created to do?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Is Pulau Ubin the largest city of Singapore?,ASK WHERE { },lcquad +Under which president was timothy l. woodruff a lieutenant?, SELECT DISTINCT ?uri WHERE {?uri } ,lcquad +How many have been venerateds in Islam and Judaism?, SELECT DISTINCT COUNT(?uri) WHERE { ?uri . ?uri } ,lcquad +Which training center of William Anthony has also alumni named Philip W Pillsbury ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +"What is the largest city of the country to whom, the battle honours of 65th Regiment of Foot were given?","SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . }",lcquad +What awards have been given to people schooled in the Everton park state high?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +List the authors of the musicals whose songwriter is Richard M. Sherman.,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Who founded the sister stations of Discovery Communications?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Rivers which end in Arkansas go through which cities?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Give me some organizations working for Environmentalism,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +Who has starred in the amusement park attractions where Jim Dooley was performing?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +"Who has his resting place at Plymouth, Vermont and office at Massachusetts House of Representatives?","SELECT DISTINCT ?uri WHERE {?uri . ?uri . }",lcquad +Name the person whose parent is Pattie Mallette?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +What faith of Buddhist Tai Hung College is also the acadmeic interest of Paul Demiville ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Count the number of offices held by people who have their allegiances with the american civil war union?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },lcquad +What are all the TV shows which are related to the ones produced by Julie Gardner?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?uri ?x . ?uri },lcquad +For how many different presidents have people in the Continental Army served?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },lcquad +Is Pixar Canada a subsidiary of Pixar?,ASK WHERE { },lcquad +How many movies have been cinematographed by Jordan Cronenweth?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . ?uri },lcquad +What is the country of origin of the president of Skai group?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Which company produced the car which was a new version of Daewoo's Tico?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +What are all the prizes won by the writer of A Grand Day Out?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Is Lyndon bridge a kind of Truss bridge?,ASK WHERE { },lcquad +What tv show is created by Brian Graden?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +What is the television show whose previous work is The Spirit of Christmas (short film)?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +In which country is there a dam on the Awash river?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Count the total religions followed by the ones living in England.,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },lcquad +Who wrote the play in which a character called Stella Kowalski exists?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Was Liliya Lobanova born in Ukraine?,ASK WHERE { },lcquad +Name the broadcast area of ITV (Thailand) ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Is the hyundai elantra related to hyundai lavita?,ASK WHERE { },lcquad +"What is the country where Sergei Ovchinnikov the volleyball player die, and Gumus was first aired ?", SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Is Serbian Titieca a doctoral student of Werner Heisenberghttp://dbpedia.org/resource/Werner_Heisenberg,ASK WHERE { },lcquad +What is the region of Kim Sawchuk ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Where was Liliya Lobanova born?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +What are some cars related to the ones with a V8?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +"People of which religion have been the members of parliament, and are from the Kalutara Electoral district?",SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +What are the important buildings of the architect whose one of the significant building is Krasnye Vorota?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Name the common institute of Robert hall and Erica Frank ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +Name the cause of death of Martino Martini ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +In how many places have Irishmen died?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?uri },lcquad +Count the number of fields of the scientists whose one of the fields is Sanskrit?, SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri },lcquad +"Does the white river flow into the connecticut river{u'_id': u'97e02dcf44aa43c1b7cc7a7c155b118f',",ASK WHERE { },lcquad +Was andy worhol the director of the san diego surf?,ASK WHERE { },lcquad +What is the debut team of ngel Escobar ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +What currencies are used in the countries which have been governed by Francois Hollande?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Where is Semnani and Assyrian Neo-Aramaic spoken ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . },lcquad +Give me a list of everyone who married the musicians signed up with Pablo Records?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . },lcquad +Name the TV show whose cast member is Companion (Doctor Who) and is related to The Sarah Jane Adventures?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +Which shows' opening themes was used to make If We Were a Movie?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },lcquad +What is the predecessor of the car engine which was succeeded by BMW M43 ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Which country's leader is David Johnston?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +Give me a count of musical artists collaborating with Waylon Jennings?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . ?uri },lcquad +Count everyone who was in the military unit which is structured like the Marine Aircraft Group 13 ?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?uri ?x . },lcquad +By which member of parliament was Provisional Government of Saskatchewan led?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +List the houses of Parliament of India ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Count the number of movies whose distributor is RKO Pictures and director of photography is Gregg Toland?, SELECT DISTINCT COUNT(?uri) WHERE {?uri . ?uri } ,lcquad +In how many places can I find wine made of Vitis vinifera grapes?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },lcquad +Which gadgets are made by companies of New Taipei City?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . },lcquad +Name the hockey team which has head coach as Mike babcock and is based in Toronto ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +What is the hub of Wan Air ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Who are the members of organizations headquartered at Amstelveen?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Was the skeleton dance animated by Walt Disney?,ASK WHERE { },lcquad +Whcih creator of Theme Time Radio Hour also created subsequent work of Moondoc Matinee ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Who owns the tunnels operated by the Massachusetts Department of Transportation?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Which comic characters are painted by Bill Finger?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +Name few television shows's anchored by Ryan Seacrest?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +List education institute of the engineers whose alma mater is ChristChurch ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +What do the banks owned by Norwegian ministry of finance produce?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Is coffee a main ingredient of Hopje?,ASK WHERE { },lcquad +Does KOMC play Gospel Music?,ASK WHERE { },lcquad +Which televison shows have location as Massachusetts ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +Which clubs play in the La Liga?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +The successor of Ellsworth Bunker belongs to which religion?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +What medals have been given to people who died of lung cancer?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Which rivers start in Wyoming?, SELECT DISTINCT ?uri WHERE {?uri } ,lcquad +Which band had members who are now in The Bleeding Heart Band?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },lcquad +What is the common military branch of the Thomas Darden and that of Edwin F. Hunter, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +In which countries are there banks which came after the National Commercial Bank of Mauritius?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +How many people have coached the players of Middlesbrough FC?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?uri },lcquad +What are the Languages of Zabbaleen ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +What is the region served by Toll Global Express and also borders Siberia ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +In which mountain range does the Rochers De Naye lie?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Who has rented the stadiums owned by Toronto?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Was Krzystof Wielicki the first person that ascended the mt everest?,ASK WHERE { },lcquad +What is the mascot of alma mater of John O Moseley?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Does the river shannon originate from Dowra?,ASK WHERE { },lcquad +Which newspapers are owned by Oslo citizens?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },lcquad +King crimson has been recorded in which places?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +What is the show which opens with Gary Portnoy and Where Everybody Knows Your Name?,SELECT DISTINCT ?uri WHERE { ?uri . ?uri . ?uri },lcquad +Does chicago own the washington station on the CTA Blue Line?,ASK WHERE { },lcquad +"Who is the architect of Red House, London ?"," SELECT DISTINCT ?uri WHERE { ?uri } ",lcquad +Which is the common prospect team of Mikhail Pashnin and Robin kovacs ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +How many mountain ranges are located in the Canton of Fribourg?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },lcquad +Is GIMP written in GTK+?,ASK WHERE { },lcquad +Give me a count on associates of Johnny Cash?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . },lcquad +Which companies are founded in the city of which Collin County Texas is a part?,"SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri }",lcquad +What is the place of birth of the badminton player who is the bronze medalist of Badminton at the 2012 Summer Olympics Women's doubles ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +what are some neighboring cities of Pregny Chambsy?, SELECT DISTINCT ?uri WHERE {?uri } ,lcquad +Through which counties does the road go which starts at the Port Klang?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Which city's teams have been coached by Gary Kubaik?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +How many developers make softwares for Unix like operating systems?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },lcquad +What is the second track list of Dschinghis Khan (song) ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Which president was served by someone whose lieutenant is Lewis Stuyvesant Chanler?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +List the graves of the royalities which have been buried at Beeleigh Abbey ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +For which party's PM did Chidambaram Subramaniam serve?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +What is the capital of the region which maintains the South Park Bridge ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +AH141 highway is a part of which country?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +"What is the local authority of the Trinity School, Brentwood and place of birth of the Sarah Walker (badminton) ?"," SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ",lcquad +Which school of jack mcGregor attend which was also the training center of William Anthony ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Is Julia Gillard a part of monarch of elizabeth 2?,ASK WHERE { },lcquad +Count the number of schools which are in a city governed by the West Berkshire Council?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?uri ?x . ?uri },lcquad +Which ceremonial County of the East Tilbury is also the local authority of the Buckhurst Hill County High School ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +What is the common profession of DeWitt Clinton and Claiborne Pell ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +List the launch site of the rockets whose one of the launch site has been Cape Canaveral Air Force Station Launch Complex 26 ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +How many wars took place in Israel?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . ?uri },lcquad +What is the total number of guests on the show whose theme music is Let me be your star?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },lcquad +What is the operating system of the LG Optimus Vu and also the developer of the Dart (programming language), SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Who follow religions led by David Miscavige?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . },lcquad +How many people have written for Gangan Comics?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },lcquad +Which part of the US political framework did Arthur Bagby and Thomas H hicks both serve?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +Who wrote The Times They Are a-Changin?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Which education institute of Duncan U. Fletcher is also the university of Vanderbilt Commodores ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +How many total religions are followed by people whose hometown is somewhere in India?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },lcquad +What were the awards won by the founder of Walt Disney Records ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +England is the origin of how many things?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . },lcquad +What is the television show with presentator as Ryan Seacrest and theme music composer as Julian Gingell?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +Where did ed podolak go to high school, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +"Where is the county seat of King County, Washington?"," SELECT DISTINCT ?uri WHERE { ?uri } ",lcquad +Is Maldives a member ofof South Asia Subregional Economic Cooperation?,ASK WHERE { },lcquad +Is Rain Over me in the planet pit album?,ASK WHERE { },lcquad +What common team are Mikhail Pashnin and Robin Kovacs expected to play for?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +What are the houses of legislature in the political leader's seat of Medininagar?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Which producer of Boeing F/A-18E/F Super Hornet has a key person Dennis Muilenburg ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . },lcquad +"Was Ne Daj Se, Nina first aired in Croatia?","ASK WHERE { }",lcquad +How many people work at the FBI?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . },lcquad +How many people have been trained in an institute located in California?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?uri ?x . ?uri },lcquad +Where is the tomb of son of Bruce Lee?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +What are some famous companies founded in the US?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +Name the common former team of Marv mcFadden and Carlos Emmons ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Who were fighting the war where the QF Hotchkiss was used?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?x },lcquad +Give me a count of movies whose film editor is Anthony Harvey?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . ?uri },lcquad +How many people are buried in Arlington National Cemetery?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . },lcquad +What are some people working for the New York Post?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +Which country were the people from who became famous for the Ramon Mangsaysay Award?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Name the office holder with predecessor as Samuel W. McCall and office in Massachusetts House of Representatives?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +In which city is the sister station of WCSE-LP located ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +What are some devices whose manufacturers are in taiwan?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },lcquad +Which military commander fought his battle at Fort Gadsen?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +Which spanish novel was published by Francisco de Robles?, SELECT DISTINCT ?uri WHERE {?uri } ,lcquad +What are some bands originating in London?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +"Which educational institution has Kaplan, Inc as it's affiliation?","SELECT DISTINCT ?uri WHERE {?uri . ?uri }",lcquad +Who is associated to Publius Servilius Vatia Isauricus and Marcus Calpurnius Bibulus?,SELECT DISTINCT ?uri WHERE { ?uri . ?uri . },lcquad +In what group Joe Jonas and Kevin Jonas were previously involved?,SELECT DISTINCT ?uri WHERE { ?uri . ?uri . ?uri },lcquad +Who are relatives of Ozzy Osbourne and Kelly Osbourne?,SELECT DISTINCT ?uri WHERE { ?uri . ?uri . },lcquad +"Naval station mobile and naval support activity, naples are under which branch of Us military?",SELECT DISTINCT ?uri WHERE { ?uri. ?uri . ?uri },lcquad +Is Ian Thorpe the bronze medalist of Swimming at the 2004 Summer Olympics Men's 100 metre freestyle?,ASK WHERE { },lcquad +Where did john o conner study?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +List the producers who produced movies starring Michael Jackson.,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +List the name of the soccer clubs whose chairman is Joan Laporta.,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Name the major shrine of Bogumilus?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +What is the political party of the Satish Kumar Sharma which is also the political party of Manthena Venkata Raju?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +What are the other launch site of the rockets which also have been launched from Cape Canaveral Air Force Station Launch Complex 5 ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Name the TV shows related to Babylon 5: The Lost Tales and is aired on Prime TIme Entertainment Networks ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +Who is the person whose alma mater is Harvard-Westlake School?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +How many different religions have economists followed?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },lcquad +Martin Ferguson and Mike Kelly served under which aussie PM?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +Which royalty's spouse is Ptolemy XIV of Egypt?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +What artists are associated with the members of the Catalin Maruta?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +In which city are buildings by Solon Spencer Beman found?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +"Danny Felice, the Gibraltarian guitarist is from which city?", SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Name the tenants of O.co Coliseum ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Name the rivers originating from an English speaking nation?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },lcquad +Count the total awards won by the writer who has won Goethe Prize ?, SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri },lcquad +In how many nations can I find people related to the feminist movement?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },lcquad +What team had the debut of Marv Throneberry and Curt Coleman?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Name the sports played by PATTS College of Aeronautics?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Which home town of Cline Buckens is the place of Death of Richard heron ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Who wrote the musical based on Mary Poppins?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +With whom is Heinz Kokott a relative to who also served Nazi Army?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Who is the former partner of the figure skater which was the former partner of Brynn Carman ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Name the company which produces Marionette and has key person as Edwin catmull ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +Paul Morphy compiled journals of which field?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Name the person whose relation is Dee Dee Warwick?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +Give me some series whose network's owning company is Warner Bros. Television?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },lcquad +In which region was political figure Wayne Allard elected?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +What awards have the narrator of the Cries and Whispers won?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +How many ships belong to states which has Unitary as government type ?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?uri ?x . ?uri },lcquad +Who designed Oddamavadi Bridge?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Count all the band members who are in Bands which have signed up with Entertainment One Music?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },lcquad +What are the television shows whose company is European Broadcasting Union?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +Who are the founders of Iskra ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +To which families does the Koolakamba belong ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Graduates of Somerville College have been in how many political parties?,"SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . }",lcquad +Was George Washington on the rank of general?,ASK WHERE { },lcquad +List all the developers of the Oddworld series?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Was the Incredibles released before Finding Nemo?,ASK WHERE { },lcquad +Who is renowned for Ae Fond Kiss and poem of Halloween ?,SELECT DISTINCT ?uri WHERE { ?uri . ?uri . },lcquad +Which county seats are in the district where I can find the Hylebos Creek?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Which american football player's current team is Michigan Wolverines and former team was Baltimore Ravens ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +Which TV show distributed by Warner Bros. has Christopher Franke as one of the artist ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +Give me a count of all the producers of all the movies whose music was done by James Horner?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },lcquad +Where did isabelle caro and judson huss both die?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +List the notable work of David Isaacs (writer)?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +What is the province of Egypt Nanotechnology Center ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Give me the number of home stadiums of teams managed by John Spencer.,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },lcquad +How many people are buried in the Winchester Cathedral?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . },lcquad +Name the origins of the river with Quich Department as one of the origin ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Who wrote a rose for emily?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +What is the mascot of the Royal Australian Air Force and Austin College?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +What ethnicity do people in British Columbia belong to?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Which motion picture stories were edited by Ishir Honda?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +Name the tv series produced by Stephen Ambrose and Erik Bork?,SELECT DISTINCT ?uri WHERE { ?uri . ?uri . ?uri },lcquad +Who starred in Awakening and fifety five days at peknig ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +Which tv series have a score composed by judy hard angelo?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +For which other teams have the past Boston Bruins members played?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +List the Swedish newspaper headquarted in Stockholm ? ,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +Those seasons which have been played in Fort Lauderdale Florida now host their games where?,"SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x }",lcquad +Were the 1995 south pacific games hosted in tahiti?,ASK WHERE { },lcquad +Where is the origin of Filbert's Old Time Root Beer ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Which largest city of Salsette Island is also the largest city of India ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +Give me all the alma mater of the relatives of Samuek Moreno Rojas ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Which magazine's editor's official residence is Playboy Mansion?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },lcquad +To which destinations does Air 2000 fly?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +What is the political party to which Purnima Banerjee is a member of?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +To which political party does the successor of Radhabinod Koijam belong?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +What is the ethnicity of Linda Hogan ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Name the mammals which are primate and belongs to family of ape ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +"Who did the person whose predecessor is Arthur Slaght, play for?",SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +"To what did the parliament member swore her oath to, whose has sons is Lohan Ratwatte?",SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +What are the awards won by the producer of Elizabeth: The Golden Age?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +In which military conflict were Phm Vn ng and John McEwen commanders ?,SELECT DISTINCT ?uri WHERE { ?uri . ?uri . ?uri },lcquad +What is the hometown of the volleyball player whose club is VC Lokomotiv Novosibirsk ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Who owns the bridge which crosses the Orange Line of MBTA?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Is joel quenneville the main coach of Chicago Blackhawks?,ASK WHERE { },lcquad +Through which label did Mel Brooks produce his movie?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Count the number of judges who've come on CTV network shows.,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },lcquad +Name the musical artists whose label is given by Kobalt Label Services?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +"Enumerate all the first teams of the GPs which were held in Watkins Glen, NY?","SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . }",lcquad +Which operator of ganz UV is also the nationality of the Gza Horvth ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Does the AMC Gremlin use an Audi engine?,ASK WHERE { },lcquad +What is the death place of the Abiye Abebe and is the birthplace of the Amsale Aberra?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Which official residence of Nikos Pateras is also the stadium of anionios G.S.S. season 2014-15 ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Give me a count of movies whose producer is Larry J. Franco?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . ?uri },lcquad +What is the common profession of William Luther Hill and Claiborne Pell?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +Which city near Nihoa is the place of death of jim Brady ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Journals of how many fields can be found in US?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },lcquad +How many different genres of games can I find which are compatible with the Commodore 64?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },lcquad +In which wars has Steven Palazzo fought?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Which fields' academic journals are found in the US?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Mike Shinoda is in which band?, SELECT DISTINCT ?uri WHERE {?uri } ,lcquad +What are the television shows whose voices is given by Mona Marshall?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +Name the movie whose director of photography is Gregg Toland and Bernard Herrmann was the music composer?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +Name the members of boards of Freedom of the City and Trinity House?,SELECT DISTINCT ?uri WHERE { ?uri . ?uri . },lcquad +Name the company with product lines like Visual studio and Surface ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +How many contries surround the seas on the banks of which is the city of Cancun?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },lcquad +Name the other wine region of the grapes whose one of the wine region is Michigan?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Which administrative region leader is Sukhumbhand Paribatra and was founded by Rama I?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +Name the largest city of the country where the body of Amit Saigal was discovered?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +"Who founded the city where First Church of Christ, Scientist is located?","SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . }",lcquad +Los Angeles Lakers is the team of which basketball players?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +What are the movies produced by Michael Deeley?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +Where is the headquarter of Regional Transit Authority of Southeast Michigan ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +What are the awards won by the parent of Daniel Bergmans?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +What is the common debut team of the Butch Metzger and Dan Otero?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +What place is the birthplace of Vijay Chavan where Eka Lagnachi Teesri Goshta is located as well?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +Collect and return a list of things in the area where Spanish language is used?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . },lcquad +Where is Hafthor Julius Bjornsson from?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +What writers have nationality as Statelessness? ,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +Music for what was made by someone who died of a cardiovascular disease?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . },lcquad +What famous musicians play the remo?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +Name the music artist which collaborated with the spouse of Jessi Colter?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },lcquad +Among which city where Geography Club played also had the Kenticky Cycle ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +Does Lousana lie at the end of Alberta Highway 42?,ASK WHERE { . },lcquad +Count the number of sports played by the universities whose one of the sports is baketball ?, SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri },lcquad +"Amongst the winner of Lovelace medal, who has John Robert as doctoral supervisor ?",SELECT DISTINCT ?uri WHERE {?uri . ?uri . },lcquad +What things have founded place as United States and New Mexico?,SELECT DISTINCT ?uri WHERE { ?uri . ?uri . },lcquad +Which television shows has sound format as 5.1 surround?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +Who is the producer of the single which was the subsequent work of He's a Liar?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +List the people who influenced the comedian who acted in Good Hair ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +"To what other locations does the airlines have flights, who also fly to Birmingham?",SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Name the television show whose creator is Simon Fuller and presented by Ryan Seacrest?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +Does the Westchester Avenue fall under the Bronx?,ASK WHERE { },lcquad +In how many places has Garbage recorded their songs?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },lcquad +How many cars can I find related to the cars which have a V8 engine?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },lcquad +What products do US companies make?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +How many characters are there in The Office?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . ?uri },lcquad +Name the person with opponents Ike Clanton and Tom McLaury?,SELECT DISTINCT ?uri WHERE { ?uri . ?uri . ?uri },lcquad +Who first ascented a mountain of Mount Hoffmann ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Which science fiction show has Steven Moffat as executive producer ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +Who all play for the teams performing in the united center?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . },lcquad +How many parties have come in power in elections where Y. S. Rajasekhara Reddy won?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },lcquad +Where did Wallace Dollase die?,SELECT DISTINCT ?uri WHERE { ?uri . },lcquad +In which state is Red Willow Creek?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Who is the founder of the trade union with whom Amalgamated Clothing Workers of America is affiliated?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Who operates the railway line which begins in Minneapolis?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +What is the nation of the speedway league where Ikaros Smederna played?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +How many non fiction topics does Thud! deals with?,SELECT DISTINCT COUNT(?uri) WHERE { ?uri . },lcquad +Which route start of Moscow-Kazan high-speed railway is the home stadium of 2011-12 FC Spartak Moscow ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Which party of Rishang Keishing is the leader at Manendragarh ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +How many people were in a youthclub which played in the Argentine Primera Division?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?uri ?x . },lcquad +What is the home town of the musician of Jack your Body ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +In which branch of the government does James L. McConaughy belong?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +in which country does the river end which originates in Lebrsnik?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Where did Andy Wyant die and Robert Rodi was born in?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +"Which person constituency is Duboce Triangle, San Francisco and military unit is USS Kittiwake (ASR-13)?","SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri }",lcquad +What is the occupation of the band members of The Shirelles?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Which American football player is a former team player of Indianapolis Colts and current team is Michigan Wolverines?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +List the mountains of the range Sierra Nevada (U.S.) located in California?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +"List the television shows whose distributors are located at Burbank, California.","SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri }",lcquad +What is the common relegion of Miao people and the country where Guru Purnima is celebrated ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +"In which university did Harlan Mathews study, where Richard Meriil Atkinson went too?",SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +What kind of buildings were designed by Pyusawhti?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +What is the owning company of the bank whose parent is Sony Financial ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +What are some gymnasts coached by Amanda Reddin?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +Katharevousa writers have been given which awards?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +What are some mammals whose phylum is Chordate?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +How many developers have worked on games of the Oddworld series?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },lcquad +Name the home ground of 2015 Fort Lauderdale Strikers season ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Which video game composed by Hirokazu Tanaka can be played on virtual Console ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +What is the resting place of the engineer who was the architect of Plaza on DeWitt?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Where are the cooper mountain vineyards and Mt. bachelor ski area located?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +How many tenants are there in the Mercedes Benz Superdome?,SELECT DISTINCT COUNT(?uri) WHERE { ?uri . },lcquad +What is the affiliation of the hospital where Alfred Blalock works?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +How many genres gave birth to other genres which emphasize Bass Guitars?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?uri },lcquad +How many bands began in Birmingham?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . ?uri },lcquad +Where does the river end which starts in Richmond Park?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +How many causes of death have been associated with American citizens?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },lcquad +Louis Dunbar is the coach of which basketball team ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +Was Noko a band member of Luxuria?,ASK WHERE { },lcquad +Charles Willing Byrd was the governor under which politician?, SELECT DISTINCT ?uri WHERE {?uri } ,lcquad +Do the asiana airlines fly to Jeju airport?,ASK WHERE { },lcquad +"For how many teams have the league players of Czech Extraliga, previously played?",SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },lcquad +Which television show is the subsequent work of Frasier and the opening theme is Gary Portnoy?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +Count the number of sports played by university which also plays Taekwondo ?, SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri },lcquad +What continent of the world has Baja California peninsula and also has WEPG in one of it's cities?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . ?uri },lcquad +Rashid Behbudov State Song Theatre and Baku Puppet Theatre can be found in which country?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +What is the service of the Laemmle Theatres and is also the award of the Jos Rivera (playwright)?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Which football players currently have their contracts with Stoke City F.C.?, SELECT DISTINCT ?uri WHERE {?uri } ,lcquad +What are the cities around the sea which flows into the Atlantic?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Artists trained at art students league NY are buried where?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +What is the municipality of Liberty Bell ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Who is the owner of Bloomberg L.P. ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +What is the location of death of the skier who was the bronze medalist of Alpine skiing at the 1964 Winter Olympics Men's slalom ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +What is the debut team of the american football player who studied in North Fort Myers High School?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +In which races did Mouse Morris take part?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Who are the writers of South Park: The Stick of Truth?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +What is the leading party in Baraily which Chandra Shekhar too is associated with?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Whose commanders are Colin Powell and Jaber Al-Ahmad Al-Sabah?,SELECT DISTINCT ?uri WHERE { ?uri . ?uri . },lcquad +Name the fictional character who was in Terminator and portrayer is Terminator 2: Judgment Day?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +List the trainers of Shinya Aoki ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +What do typically NGOs work for?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +What does the river end on whose border we find in Bjelasnica?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +"List few schools situated in Reading, Berkshire ?","SELECT DISTINCT ?uri WHERE {?uri . ?uri }",lcquad +Who preceded Lucius Crus as an office holder?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +How many universities participate in the NCAA Division I Football Bowl Subdivision?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . ?uri },lcquad +Where is the senator from whose successor was James belford?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +What is the state of origin of Thomas Pfyl ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +What is the nationality of the successor of Nii Okaidja Adamafio ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +By which university is the literary magazine named Stone Canoe published?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Is Plymouth High School for Girls in Devon county?,ASK WHERE { },lcquad +Give me a count of companies located in Texas ?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . ?uri },lcquad +Name the company whose one of the product is Pixar Image Computer and has one of the key person as Edwin Catmull?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +Who is the cover artist of Doctor Mirabilis (novel) ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +list some shawnee people?, SELECT DISTINCT ?uri WHERE {?uri } ,lcquad +"Name the office holder whose predecessor is Henry E. Catto, Jr. and successor is Adrian A. Basora?","SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri }",lcquad +Who is the common prime minster of William Deaner and mark Latham ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +What is the parent company of company which owns Sony Bank?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +How many games are played at universities in Metro Manilla?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },lcquad +Name all sitcoms whose theme music is made by Miley Cyrus?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },lcquad +Who is the former partner of the pupil of Dalilah Sappenfield?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Who is the Pole driver of 1992 Canadian Grand Prix ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Which city's neighboring municipalities are Lancy and Pregny-Chambsy?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +Which home town of PAvel Moroz is the death location of the Yakov Estrin ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +What is the country whose speaker of the Dewan Rakyat is Pandikar Amin Mulia?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +"Which mainter of Cheasty Boulevard South is also the county seat of the King County, Washingtonsu ?"," SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ",lcquad +From what countries have people participated in the Excelsior Stakes?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },lcquad +What are the largest cities in each of the destinations of TranStar Airlines?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Which writer is famous for works written by Neil Gaiman?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . },lcquad +Who all have been a president of educational institutes in Paud?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Who is the developer of the software which serves the platform for King's Quest VI?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Who was in youth clubs of FC Barcelona and Newell's Old Boys?,SELECT DISTINCT ?uri WHERE { ?uri . ?uri . },lcquad +For which country did Alexander Lippisch design airplanes?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +What do the relatives of James Hartness do?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Who is the appointer of William Cushing ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Who is the former partner of Chris Knierim ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Who is office holder of constituencies Duboce Triangle and Noe Valley ?,"SELECT DISTINCT ?uri WHERE { ?uri . ?uri . ?uri }",lcquad +What is the university attended by the baseball player who's known for Olin Corporation?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +How many different kinds of softwares have been released under the GPL license?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },lcquad +What is the religion of the relatives of Carmela Soprano ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +"In all the grand prixes where the first team was Scuderia Ferrari, who all were the pole drivers?",SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +What is the citizenship of Erastus Wiman ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +What are some awards given to the french people?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +where are the sister stations of CFRB broadcasted?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +"What awards have been once awarded to Ingmar Bergman, and have employed the service of Laemmle Theatres?", SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Is the Kia Sportage similar to the Hyundai Lavita?,ASK WHERE { },lcquad +Name the district of Robert William Wilcox ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +What are the video games composed by Hirokazu Tanaka?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +What are the academic interest of Philip Novak?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Tandem Computers is the subsidiary of which company?, SELECT DISTINCT ?uri WHERE {?uri } ,lcquad +Name the mountain range in which the mountain peak of Malatraix belongs?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Who offers the services of OneDrive and Outlook.com?,SELECT DISTINCT ?uri WHERE { ?uri . ?uri . },lcquad +What is the location of the Walter Evans Edge office which is also the place of birth of henry Miller ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +List down the prime ministers of Peter Thorneycroft ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +What is the division of the companies who make Runes of Magic?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +List the birthplace of the medicians who studied in Harvard.,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +What are the movies whose director of photography is Jordan Cronenweth?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +Which river ends at Thames Estuary and North Sea?,SELECT DISTINCT ?uri WHERE { ?uri . ?uri . ?uri },lcquad +What is the university whose affiliations is Graham Holdings Company?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +What is the division of Serbia national American football team ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +How many companies are located in Toronto ?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . ?uri },lcquad +From where is Quinn Ojinnaka billed?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +"What are the movies whose editor died in Westwood, Los Angeles?","SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . }",lcquad +What are the software which uses platforms as ARM architecture?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +Which are the comics characters painted by Bruce Timm and created by Paul Dini?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +Where did Jerry Tagge do his elementary schooling?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Who worked at A Goon's Deed in a Weary World and CBS?,SELECT DISTINCT ?uri WHERE { ?uri . ?uri . },lcquad +Wo which countries have the members of Ukrainian ministry of internal affairs swore their oath?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Which rivers start at the Brower's Spring?, SELECT DISTINCT ?uri WHERE {?uri } ,lcquad +In which movies directed by Orson Welles has Bernard Herrmann as music composer ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +Who is the builder of Presidio Santa Cruz de Terrenate ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +List all the home stadium of the soccer clubs which has one of the home stadium as Nairobi ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +What is the largest city in the country where the San Marcos River originates?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Is David Cameron the prime minister of Nick Clegg?,ASK WHERE { },lcquad +"Which musician was born in Harriman, NY?","SELECT DISTINCT ?uri WHERE {?uri . ?uri }",lcquad +In which areas is the radio station broadcasted which is a sister station of WXME ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +What common teams do Ramiro Pea and Bruce Bochy share?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +In which continent do Air 2000 and Novair International airways operate?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . ?uri },lcquad +How many shows are aired on Comedy Central?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . ?uri },lcquad +"List all the settlements which has a part named Seguin,Texas ?","SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x }",lcquad +Which awards have Ingmar Bergman won?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +What are the products of the company who published Robot Wars: Metal Mayhem ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +In which state is Colemanville Covered Bridge located ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Where did the partner of Teriitaria II die?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Name the licensee of the TV station whose one of the licensee is Incorporation ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +What is the company of Ford Theatre ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +"For all the senators who once studied in Sturm College of Law, give their burial place?",SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Did Jim Kiick do his highschool in New Jersey?,ASK WHERE { },lcquad +What are Monrow Carell Jr Children Hospital and Vanderbilt University Medical Center both affiliated with?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +"Name the writer whose one of the notable work is Adventures of Huckleberry Finn and died in Redding, Connecticut?","SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri }",lcquad +Which official residence of hugh Scott is also the origin of Long Rifle ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +How many politicians are in the US Senate?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . ?uri },lcquad +What is the name of the person who has relations with Dionne Warwick and Gary Garland?,SELECT DISTINCT ?uri WHERE { ?uri . ?uri . ?uri },lcquad +"What is the job of the George Arceneaux, Jr. which is also the office of the Blanche Bruce"," SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ",lcquad +Which moto of american Classical League is also the academic discipline of Probus ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +List all the major shrines of the saints which has one of the shrines as Debre Libanos ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +"Name the fictional character whose relatives are Huey, Dewey, and Louie and belongs to Duck family ?","SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri }",lcquad +What is the ideology of the Union of Cambodian Democrats which is also the ideology of Palang Dharma Party ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +How many bands are signed up with labels which were founded in Japan?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?uri ?x . ?uri },lcquad +How many kings and queens have died in the Arabian Peninsula?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . },lcquad +What is the bloomington viaduct built to cross?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Which party has come in power at both Balangir and Amaravila in india?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +How many politicians reside in Cape Town?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . ?uri },lcquad +How many games are released for virtual consoles?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . ?uri },lcquad +Saores de costa built a bridge over which river?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Is Lieutenant general (United States) the superintendent of United States Air Force Academy?,ASK WHERE { },lcquad +In what movies did Akira Ifukube compose the music?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +Is the national endowment of arts under the jurisdiction of federal government of US?,ASK WHERE { },lcquad +Who is the operator of Rainbow Warrior (1955) ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +List the guest of the show The Other Side (The Outer Limits)?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +What is the common location of tomb of the Elizabeth of Rhuddlan and Isabel of Cambridge?,"SELECT DISTINCT ?uri WHERE { ?uri. ?uri . }",lcquad +To which state eorge M. Chilcott belong ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +What are some products of the company whose parent is BBC?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Which producer of the Eristoff is also the distributor of Bombay Sapphire?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +How many islands belong to archipelagos located in the pacific?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?uri ?x . ?uri },lcquad +Who was the chairman of Fort Lauderdale Strikers and also 2015 Fort Lauderdale Strikers season ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +What are some video games whose music is composed by an employ of the company Creatures?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },lcquad +Who were in the youth clubs that were in season of 2015 Argentine Primera Division?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . },lcquad +How many units follow the US Navy Department's command structure?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . ?uri },lcquad +Name the home Stadium of Kenya national under-20 football team ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Which city do both Arthur Ross and Edward Niesen come from?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Which associat of Martin Pugh is also married to Alana Stewert ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +How many people played for Newell's Old Boys?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . },lcquad +Where do the stockholders of Pathaninaikos F.C. live?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +What is the common school of Chris Marve and Neria Douglass?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Give me the count of artist in the company whose Artist is Jean- François Coté ?, SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri },lcquad +How many bands have members currently playing the Fender Stratocaster?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?uri ?x . ?uri },lcquad +Who has built the stadiums which were rented by the Central american games of 2013?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +"What has been founded in the state that Denton county, Texas is a part of? ","SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . }",lcquad +Which politicians son is buried in Metairie Cementery?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },lcquad +Titus software publishes which genre of games?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Which fictional character's relative is Clan McDuck and belongs to American Pekin duck ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +Which military people served their allegiance to Union (American Civil War)?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +"Which border country of the Korean Peninsula is also the country of Krusty, a musical group ?", SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Mac OS is the operating system of how many things?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . },lcquad +What are the television shows whose Composer is Stewart Copeland?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +List the border of the admin region which shares border with North Korea ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +What is the draft team of the Antoine Bibeau and also has player named Nathan Dempsey ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +"Through which important cities the does the river originating from the Duwamish, flow?",SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Name the TV show whose producer is Stephen E. Ambrose and company is HBO ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +List the broadcast area of the TV stations which also serves in Agalga ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Into what military organizations is the United States Department of Defense divided?, SELECT DISTINCT ?uri WHERE {?uri } ,lcquad +Whose deputy is Neil Brown?,SELECT DISTINCT ?uri WHERE {?uri . },lcquad +In which broadcast area does the sister station of KFFG air ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Was Neil Armstrong on the Gemini 8 mission?,ASK WHERE { },lcquad +which astronaut's mission was Apollo 11?, SELECT DISTINCT ?uri WHERE {?uri } ,lcquad +What is debut team of the baseball players who died in Los Angeles?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Which company owns instagram?, SELECT DISTINCT ?uri WHERE {?uri } ,lcquad +List all the former partners of the figure skater whose one of the former partner was Andrea poapst ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +List all the operators of the train who operates in Budapest ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +What are the awards won by the producer of Puss in Boots (film)?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Which president had lieutenants whose governor was Bill Clinton?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },lcquad +Name the species of Liger ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +In which state is the alma matter of Jan Paulsen located ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +How many politicians are in the militia?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . },lcquad +In which wars were people from the Saudi Arabian ministry of defense involved?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Who were the first drivers in Grand Prixes where the first team was Scuderia Ferrari?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +How many things do bridges designed by the UEM group go over?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },lcquad +Under which US president was a politician in opposition of John G Schmitz?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Whose theme music is composed by the band one of whose member is Les Claypool?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . },lcquad +Who has recorded their singles in London?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Who are the associated musical artist of the artists of band Shorty Rogers?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Who were the american football players who played for Dallas Cowboys?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +Politicians born in Bangalore are now in which parties?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +"What is the debut team of the baseball player who was born in Williamsburg, Kansas ?","SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x }",lcquad +Name the composer of motorpsycho Nitemare ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Is James Hetfield a band member of Metallica?,ASK WHERE { . },lcquad +Does the Vadodara Railway station lie at the end of the Mathura Vadodara route?,ASK WHERE { },lcquad +Stan Van Gundy serves as a head coach and president for which basketball team?, SELECT DISTINCT ?uri WHERE {?uri } ,lcquad +Which appliance's CPU is Cell (microprocessor) and predecessor is PlayStation 2?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +People who debuted from Houston Astros have played in which clubs?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Radios on what topics can be tuned in to in Washington DC?,"SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x }",lcquad +Give me some shows related to the ones created by Russell Davies,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },lcquad +What provides the services of Nintendo eShop and Nintendo Network?,SELECT DISTINCT ?uri WHERE { ?uri . ?uri . },lcquad +What is the territory of the conflict whose commander is Feng Zicai?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Name the person who was educated at Harvard-Westlake and won the Screen Actor Guild Life Achievement Award ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +Which is the common nation of Louisa Hill and American Football Wellington from?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +Which club of Michael Springer is also the parent organization of Syracuse University press ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Which company created BASIC and Language Integrated Query ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +Hugh Hefner is editor of which magazine?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +Who works at the American Magazine and New York Post?,SELECT DISTINCT ?uri WHERE { ?uri . ?uri . },lcquad +Whihc successor of McDonnell Douglas was built bu Delta 3 ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Which countries share a similar sociocultural and ethnic heritage of that of Native Indonesians?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +"What is the residence of the person, who starred in Men Will Be Men ?",SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +What people are known to work for Johnny Cash?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +"In which state is Goose Lake Valle, which is also part of Lava River Cave ?", SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Where did some of the matches take place where Columbus Crew SC played?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +How many awards have been given to Italians?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },lcquad +Count the number of cities around the American Mediterranean Sea?,SELECT DISTINCT COUNT(?uri) WHERE { ?uri . ?uri },lcquad +List the first drivers of Grand Prixes where Mika Hakkinen was a pole driver.,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +How many movies have their music signed up with Sony Music Entertainment.,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?uri ?x . ?uri },lcquad +What is the nationality of the David King-Wood and John Steed ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +What are the television shows whose network is BBC HD?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +"To which party does the politician belong, who was born in Nandurbar?",SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Name the people who were in a youth club managed by Luis Enrique ?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . },lcquad +What is the local authority of Liverpool Institute High School for Boys ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +What is the destinations of the airline whose headquarters is in Manchester?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +who married crystal harris?,SELECT DISTINCT ?uri WHERE {?uri . },lcquad +Which job of Irving Chernev is the non-fiction subject of the Thud ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Who gave the voice to the characters sculpted by Clamp?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Where are the tombs of kings and queens who have died in England?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Is Lloyd Nosler the editor of The Temptress?,ASK WHERE { },lcquad +Who are the people whose alumna is a part of the National Collegiate Athletic Association?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . },lcquad +On what subject does WTJC-LP air?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Name the television show whose voice is given by April Stewart and it's distributor is Broadcast syndication?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +"In which city is the building, whose part is the Martin AN/FSG1 anti aircraft system?",SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Who wrote A house not meant to stand and Akale?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Who managed England national under-20 football team and Middlesbrough F.C.?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . },lcquad +Who developed the software which is used as operating system of Magic Trackpad ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Was the USS Tillamook built in Seattle?,ASK WHERE { },lcquad +Who produced the TV shows for Fremantle Media?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +What is the home stadium of the soccer club seasons whose chairman is Merritt Paulson?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +In which state is Dorchester Bay (Boston Harbor) ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Name the veneration of the monarch who is the predecessor of Solomon?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Who was the director of photography of Mickey's Mellerdrammer and the animator of Tommy Tucker's Tooth?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Who is the builder of Estadio Nacional de Costa Rica and also location of Xianren Cave ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Which distributer of Glover (video game) is also the publisher of the Super Mario Adventures ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +How many movies did Michael Deeley produce?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . ?uri },lcquad +Is Steve Nash the chairman of Vancouver Whitecaps FC?,ASK WHERE { },lcquad +Who is a famous relative of Aaround Van Heemstra?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +What awards have been given to the anyone who raced in the Lawrence Realization Stakes?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +How many battles have involved commanders of 1st Free French Division?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },lcquad +How many areas are led by Willem Alexander?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . },lcquad +Name the movie in which Vangelis gave the music and Jordan was the cinematographer ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +In how many places are the companies founded in Canada operating?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },lcquad +Count the number of movies whose editors were born in UK?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?uri ?x . ?uri },lcquad +What is the television show whose cast members are Jeff Conaway and Jason Carter?,SELECT DISTINCT ?uri WHERE { ?uri . ?uri . ?uri },lcquad +Which countries were led by Pietro Parolin?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +List the sports played in private universities.,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +What state has a Brideun School for Exception Children and is the birthplace of B J Crombeen?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +"Who is the performer of album which has the song ""To Where You Are"" ?",SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +How many companies were founded in places where Dallas is the governing body ?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?uri ?x . ?uri },lcquad +What Orson Welles directed movie has photography director as Gregg Toland ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +Who founded the city at the end of the Pittsburgh Line route?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Name the hubs of the airlines whose headquarters is in the Subang Interchange?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Name the television show whose network is TNT (TV channel) and Prime Time Entertainment Network?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +List the honorary title given to the spouse of Lillian Disney ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +How many games have a publisher based in US?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?uri ?x . ?uri },lcquad +"Where does the rail route, which ends at the Moskovsky station, begins?",SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +How many people have played for the NBA?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . },lcquad +Name the musician who gave the music in Tonight's the night and is also wedded to Alana Stewart ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +What is the nationality of the golf player who won the 2002 Players Championship ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Which builder of Edwin Andrews Air Base isalso place of birth of the Akinoumi Setsuo ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Who penned Emma and Jane Austen in Manhatten?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +How many labels sign up progressive rock artists?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },lcquad +Which continents can be reached by flight companies available on Gatwick Airport?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +"Where is Benjamin Franklin Terry buried, and US Route 59 has a junction?", SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Do Ctenochaetus Binotatus lie in the cActinopterygii class?,ASK WHERE { },lcquad +Who are some authoritative persons on the matter of Megabalanus concinnus?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Where the club of Kiki Cutter located?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +List the awards won by the wife of Ingrid von Rosen.,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Which current Michigan Wolverines team member debuted in Chicago Bears ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . },lcquad +List the movie whose music was given by Geoffrey Burgon and distributed by Cinema International Corporation?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +Which musical artists have collaborated with Waylon Jennings?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +What is the Nickname of the school where Jeff Hornacek studied ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Where did the people canonized by John Paul II die?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Who is the owner of Ford Motor Credit comapny which is also the builder of FORD SHO V8 engine ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Count the different genres of games published by Titus Software,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },lcquad +Who has produced movies that have a James Horner score?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Which movie produced by Michael Deeley was distributed by Warner Bros ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +Name the person whose daughter is Rohan Marley and also another children named Sharon Marley ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +Which shows are voiced be US citizens?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },lcquad +Name the television show voiced by April Stewart and Eliza Schneider?,SELECT DISTINCT ?uri WHERE { ?uri . ?uri . ?uri },lcquad +"Count the different places where the people died, who were born in England?",SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },lcquad +What are some relatives of Battle of the Bulge veterans?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Who made the Y block engine and the SHO V8 engine?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +How many different genres of games are produced by Blizzard?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },lcquad +"Which tennis players live in Kenthurst, new south wales?","SELECT DISTINCT ?uri WHERE {?uri . ?uri }",lcquad +In which religions are both Pope Gregory 1 and Edwin of northumbria reverred?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +"How many things are located in Ridgewood, New Jersey?","SELECT DISTINCT COUNT(?uri) WHERE {?uri . }",lcquad +Name the sea whose inflow is Kemijoki and outflow is Danish straits?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +What award was won by executive producer of Shaun the Sheep?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Was the altazor drawn by Picasso?,ASK WHERE { },lcquad +What is the operator of SR class 3Sub ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Which key person of the Clinton Foundation is also the president of Edward J. Perkins ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Name the royalty whose daughter was Cleopatra V and was married to Ptolemy XIV of Egypt?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +How many times has Jeff Conaway been casted?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . },lcquad +who are some miss michigan usa?,SELECT DISTINCT ?uri WHERE {?uri . },lcquad +"What nicknames do the universities in Norton, Massachusetts have?","SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x }",lcquad +Which license of the Microsoft Office Picture Manager is also the product of the Apple Productivity Experience Group , SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +What is the regional radio sports network associated with?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +List the destinations of the airlines which also serves Mediterranean Sea ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Which fictional character's portrayer was edited by Roger Barton?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },lcquad +What can be cooked out of things belonging to the order Sapindales?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . },lcquad +What is the birth place of the children of Miguel Garca Granados ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +List the fields of Sylvain Lvi ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +"List the primeministers of Victor Hope, 2nd Marquess of Linlithgow ?"," SELECT DISTINCT ?uri WHERE { ?uri } ",lcquad +Where do the airlines garrisoned at Manchester airport fly to?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +What all is owned by a company one of whose division is Paramount Domestic Television?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . },lcquad +Name the language of I Love How You Love Me ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Count the number of places where alumini of Edinburgh university have died?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },lcquad +Which label released the movie written by Thomas Meehan?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +What is the venue of Indy PopCon ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Who are the associate musical artists of Dalma Kovcs ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +What is the common religious affiliation of the Wickramabahu Central College (National School) and that of Vesak?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Name a person whose sucessor was Adrian A. basora and was educated at Harvard-Westlake School?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +Name the other party of Chandra Shekhar ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +How many movies have had a cinematographer who died in US?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?uri ?x . ?uri },lcquad +Which cities were in the TV Show which came after The Ultimate Fighter: Brazil 2?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +What actor of Le Cirque is a relative of Maryanne Trump barry?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Does Stanley Cavell study Shakespeare?,ASK WHERE { },lcquad +Who is the label of The Producers (2005 film) ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Which nearest city of LoDaisKa Site is also the location of Oskar Blues Brewery ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Count the number of different religions that field marshals have followed?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },lcquad +Does Beth Tweddle play for the City of Liverpool gymnast club?,ASK WHERE { },lcquad +Count the awards given to the recepients of the Becket fund for religious liberty.,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },lcquad +Which river flows through Central Washington?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +List all the narrator of the albums which had Alan Barzman as one of the narrator ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +People born in Saint-Amand-en-Puisaye are famous for what things ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +"Which founder of European School, karlsruhe is also the jursdiction of Eurpoean Border of Coast guard ?"," SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ",lcquad +What cars were built upon the cars which were assembled in Canada?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +How many religions are followed by the people in the Royal Thai Army?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },lcquad +Which politicians live in a city led by T.S. Thakur?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . },lcquad +How many guests have been there on broadway?,SELECT DISTINCT COUNT(?uri) WHERE { ?uri . },lcquad +"List the significant buildings of the arch. whose one of the important work is Government Building, Kiev ?","SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x }",lcquad +Count everything garrisoned at the pentagon?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . },lcquad +What common relegion affiliation exists for udit Raj and Wickramabahu Central College ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +What is the city of the 2015 MLS All-Star Game and birthplace of the The Okee Dokee Brothers, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +How many people were opponents of the ones buried in the tower of London?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?uri },lcquad +Count all the places where companies located in Ontario operate.,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },lcquad +"What is the river whose origin is North-Western Province, Zambia?"," SELECT DISTINCT ?uri WHERE {?uri } ",lcquad +How many factions have fought when Egushawa was a commander?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },lcquad +What is the honorary title of the narrator of Everything Will Be OK?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +What is the layout of the automobiles designed by Olivier Boulay?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +"What people were born in Ridgewood, New Jersey?","SELECT DISTINCT ?uri WHERE {?uri . ?uri }",lcquad +Which content license of the MSX BASIC is also the profession of the Laura K. Ipsen ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Which predecessor of the PlayStation 4 is also the developer of Oddworld: Munch's Oddysee?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Who is the appointer of Charles Goodell ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Does the hudson river flow into the lower manhatten?,ASK WHERE { },lcquad +Which distributer of Glover is also the stockholde of Seattle Mariners ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Name the person whose mother name is Cedella Booker and has a son named Sharon Marley?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +Name the Chris Marve's school ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +List the websites which the authors of Tornado own ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +What are the movies whose music composer is Akira Ifukube?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +Which military personnel belong to the branch of Continental Army?, SELECT DISTINCT ?uri WHERE {?uri } ,lcquad +Who have rented the stadium operated by Maple Leaf S&E?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Which holy things canonized John of Damascus?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Solon Spencer Beman has architected in how many cities?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?uri },lcquad +What are the main interests of Timothy Morton?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Name someone known for a project involved in the Occupation of Japan?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . },lcquad +Count all those who previously played for a team which ownes Varsity Stadium ?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?uri ?x . },lcquad +Name the sea with Helsinki as one of the shore city and is also an outflow for Danish straits?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +Count the awards won by the people who graduated from the National and Kapodistrian University of Athens.,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },lcquad +What awards have been given to the dude who made Shaun the Sheep?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +"Name the office holders whose successor died in Morristown, New Jersey?","SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri }",lcquad +What are the movies with Daniel Waters as screenwriter?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +Which awards are presented by the committee located in Stockholm?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . },lcquad +What is the common product of the Apple Productivity Experience Group and services of the 21Vianet ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Who are the tenants of MasterCard Centre?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Count the area of the radio stations whose serves in South Carolina ?, SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri },lcquad +How many games are played at universities affiliated with the Association of Southeast Asian Institutions of Higher Learning?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },lcquad +Which adminstrative region of Lawrence F. Cafero is also the resting place of Samuel Keeler ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Who studied in universities located in suburbs?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . },lcquad +List down the cinematographers of Mickey's Mellerdrammer?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +List the relative of Tim Nanai-Williams ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Who are the judges of the television show whose anchor is Josh Groban?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Who starred in Nothing in Common and produced From the Earth to the Moon?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad + Wringer (novel) and Maniac Magee is the notable work of which author?,SELECT DISTINCT ?uri WHERE { ?uri . ?uri . ?uri },lcquad +What all are written in the C programming language?, SELECT DISTINCT ?uri WHERE {?uri } ,lcquad +What are the artists that have been in the band Framptons camel?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +Count the number of artists in the Cirque du Soleil discography?,SELECT DISTINCT COUNT(?uri) WHERE { ?uri . },lcquad +By which companies is RENFE Class 333 designed?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Which are the previous broadcast networks of sister channels of WGBC?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +What are the movies whose director is Orson Welles?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +What is the religion of character of Janice Soprano from The Soprano television show?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +which planet was discovered by Urbain Le Verrier?, SELECT DISTINCT ?uri WHERE {?uri } ,lcquad +?What are the airline hubs of Cascade Airways, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Where did the editor of Charlie Mensuel die ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Name the chairman of the soccer club for which Mike Salmon currently plays?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Which Harris County based company is a subsidiary of Tandem Computers?,"SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri }",lcquad +What is the common licence of the Frontaccounting and nUbuntu?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +"What sport is Eric Schiller known for, and employes Craig Van Tibury?", SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +How many rivers are crossed by different Box Girder bridges?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?uri },lcquad +Which Monty Python's movie is distributed by Cinema International Corporation ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +Was tupac a member of Outlawz?,ASK WHERE { },lcquad +Count the number of members of the organization which have Austria as one of the member ?, SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri },lcquad +List the other members of the team where Jason Hayne currently plays?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Who is married to Susan Weber Soros?,SELECT DISTINCT ?uri WHERE {?uri . },lcquad +list the producer of the movies in which Rosemarie DeWitt in the star cast?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +"Which political party of Arunachal Pradesh Legislative Assembly election, 2014 was the leader of Rishikesh ?"," SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ",lcquad +How many groups have fought in wars where Richard Taylor fought too?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?x },lcquad +Is Another Lonely Night in New York by the musical band Robin Gibb?,ASK WHERE { },lcquad +To which settlement does Elliot Bay belong to?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +What are the albums whose artists have performed with the Tangerine Dream?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },lcquad +Name the river on Batoka Gorge Hydroelectric Power Station ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Did chris lebenzon edit Batman returns?,ASK WHERE { },lcquad +Which people are known for appearing on the television show Dragon's Den?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +What university campuses are situated in Indiana?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +Who is the authority of Maine School of Science and Mathematics ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +List some writers which speak one of the Germanic languages.,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },lcquad +What are some awards given to people who were born in sweden?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +ITV employes how many people?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . },lcquad +What band has Joe Hahn and Chester Bennington?,SELECT DISTINCT ?uri WHERE { ?uri . ?uri . ?uri },lcquad +Is the assembly of tofa ahin ethopia?,ASK WHERE { },lcquad +Was the street dogs of south central narrated by Queen Latifah?,ASK WHERE { },lcquad +Name some schools with a bison as their mascot?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +What has Carl Sagan written his books about?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +In which state does the university which is the alma mater of Mateusz Morawiecki lie?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Who voiced in Peanuts Motion Comics and The Peanuts Movie?,SELECT DISTINCT ?uri WHERE { ?uri . ?uri . },lcquad +Who is the owner of the bank where Thomas Secunda works ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +What are some US citizens famous for?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Who founded a company which served Mid Wales ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +British people have edited which movies?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },lcquad +Who is the leader of the town where the Myntdu river originates?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +List the home town of the bands whose label is Alive Naturalsound Records ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Which broad cast area od CFRX is the country of North America Poker Tour ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +List the subsequent work of the albums whose one of the subsequent work is Planet Waves?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Name some basketball players whose team is coached by Fred Hoiberg?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },lcquad +Give me some administrators of bridges over which cars can go?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Who are some US colonels?,SELECT DISTINCT ?uri WHERE {?uri . },lcquad +Where did Meg McGuffin graduated ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Was Citizen Kane cinematographed by Gregg Toland?,ASK WHERE { },lcquad +Count the different alma maters of people employed by the CNN,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },lcquad +What are the awards won by the person who is an authority of Latania verschaffeltii ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Where did Steve Romeo dies ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +How many universities are in the National Collegiate Athletic Association?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . },lcquad +Which company developed the language designed by Lars Bak?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +What is the mascot of the army unit whose commander is Peter Cosgrove ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +What is the common citizenship between JSM Hopoer and Robert Valentine ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Which country gave birth to the Lemberger LD20b and Start+Flug H101 aircrafts?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +Which religion followers are the members of Janata Dal?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Where are INKAS located which is also the state of origin for Jojo Chintoh ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +What is the workplace of Christopher S. Stewart ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +What are some things people born in Louisiana are famous for?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },lcquad +Where did Fort Lauderdale Strikers season of 16 take place?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +"Who is the founder of Hohenau, Paraguay?"," SELECT DISTINCT ?uri WHERE { ?uri } ",lcquad +Who gave the musical score of 9 to 5 (musical) ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Who are the spouse of the actors of Wrongfully Accused?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Count all that was built by a company whose leader is Kazuo Hirai?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?uri ?x . },lcquad +Which producer of Wizards and the aliens is also the notable work of russell T Davies ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Which coach of England national under 21 footbal team is also the coach of Aston Villa F.C season ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +For which band did Dave Hollister perform in the past?, SELECT DISTINCT ?uri WHERE {?uri } ,lcquad +Name the scientist who is known for inventing Anthrax and was a member of Royal Society?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +Which show developed by Brain Graden has theme music composed by Primus ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +Which builder has made concrete bridges?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +What is the serving railway line of Rostov-Glavny ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +How many different products are there of the companies located in the US?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },lcquad +What is that river whose source gets water from the Shannon cave?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },lcquad +"How many licensee are there, of the radio stations whose area is Nashville, Tennessee ?","SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . }",lcquad +What is the allegiance of the Albert Kwesi Ocran and state of origin of the Jojo Chintoh ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Who is the headcoach of 2008-09 Marquette Golden Eagles men's basketball team ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Who is the vice president of Jared Bernstein ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +What is the name of the information appliance by sony whose predecessor is PlayStation 2?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +Who is the monarch of Bertalan Szemere ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +What actor starred in Splash and is married to Rita Wilson?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +What is the place of birth of Lauren Briggs ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +What is the river on which the Kariba Dam and Batoka Gorge Hydroelectirc power station exist?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +Players from how many teams have participated in the National Hockey League?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?uri },lcquad +What are some causes of death of European Americans?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Did Stan Lee create the Iceman comics?,ASK WHERE { },lcquad +What is the order of the Omar D. Conger where Robert Sarvis was also the nominee ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Which hockey team is coached by mike babcock?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +Which battle of Khalid bin Sultan was also the conflict of Steve Buyer ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +What are the movies whose editor is Robert Wise?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +List the music of Open House (American Horror Story)?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +What are the television shows whose network's sister station is BBC Two?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },lcquad +Where did the narrators of the Championship snooker die?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +What are the relatives of the rugby player one of whose relatives is Nick Williams?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Who is the performer of Bengali in Platforms ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +What are some families of mammals in the animal kingdom?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Where is the headquarters of the public transit system which owns the American Boulevard (Metro Transit station) located ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +How many things are people who died in St. Petersburg known for?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },lcquad +List down the important people of The Elders ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Which TV show's executive producer is Douglas Netter and composed by Stewart Copeland ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +Does nintendo have a division called Nintendo Entertainment Planning & Development?,ASK WHERE { },lcquad +Name the rivers which originate from within Pittsburg?,"SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri }",lcquad +In how many nations is Coconut a common food ingredient?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?uri },lcquad +Where do the rivers from greater London flow into?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Which football teams are in a city where Oakland Athletics were the tenants?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },lcquad +Who all have created new kinds of cookies?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +"What country is Jeffrey Werleman from, which also has the American Mediterranean Sea?",SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +List the television shows whose network's owning company is Turner Broadcasting System?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },lcquad +List the schools of the athlete with Balgowan as one of the school ?,"SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x }",lcquad +Which company was the designer of South African class 11e and RENFE class 333 ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . ?uri },lcquad +"For how many things are people famous, who were born in Nebraska?",SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },lcquad +List the maintainers of Pandaruan Bridge?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +List the starring of the movies whose label is T-Series ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +What is the home town of the musical artist who is the current members of Slapstick?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +What are some rivers in Zambia which have a dam on them?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +What is the religion of the successor of Chatumongol Sonakul?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +What is the label of the singles whose group is Outlawz ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +What are the television shows whose network's successor is BBC Two?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },lcquad +what does the cahora bassa flow into?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +where did Alfred Tarnowski die?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Does Walson Augustin play for the Brothers Union?,ASK WHERE { },lcquad +In which city is Arsenal Cider House ? located ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Name the television show distributed by Broadcast syndication and voiced by Eliza Schneider?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +Which operating system provider of LG Optimus Vu is also the employer of Manu Cornet ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Which country had the county seats as History of Trier and Mediolanum?,SELECT DISTINCT ?uri WHERE { ?uri . ?uri . ?uri },lcquad +List the American MEditerranean Sea city is also the place of death of Laszlo Bellak ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Name the common record label of I pray on Christmas and Next Thing ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +List down the TV shows whose producer is Stephen E. Ambros and writer is John Orloff ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +What is the alma mater of Fikret Orman?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Where are the National Academy Museum and School awardwinners buried?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Where is the person from whose military rank is Airman first class?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Who wrote the US steel hour?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Where is Snake Island located ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +List all the co-founders of the non for profit which have founding member as David pressman ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +What is the home town of the Rolando Gomez is the DOD of the Clyde McNeal ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Which soccer players are currently playing for NYC FC?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +Name a writer who was educated in Saint Petersburg and had a son named Lyubov Dostoyevskaya ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +"What shows used to air on the channel which was earlier known as ""The Comedy Central""?",SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },lcquad +Which company owns Evraz ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +How many party leaders are there whose parties are headquartered in Berlin?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?uri },lcquad +Where was the trainer of Java Gold born?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Where can I find some buildings of modern architecture?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Who are the people who played for San Francisco 49ers?,SELECT DISTINCT ?uri WHERE {?uri . },lcquad +Was Zachary Taylor a commander of the sixth infantry regiment of US?,ASK WHERE { },lcquad +Name a famous relative of barry voight,SELECT DISTINCT ?uri WHERE {?uri . },lcquad +With which artist did the musical artist of Groove Thang collaborated ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Where is the office of P Elmo Futrell Jr?,"SELECT DISTINCT ?uri WHERE { ?uri . }",lcquad +Name the scientist who was awarded a position in Royal Society and has academic advisor as Franz Brentano?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +What are the last two studio albums of Moondog Matinee ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Where can i find salad based food?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Does Walson Augustin play as a midfielder?,ASK WHERE { },lcquad +List places that are associated to cities in the state of Mecklenburg-Vorpommern.,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . },lcquad +"Which awards did the writer, who is the creator of Creature Comforts, won ?",SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Who all have written songs that were then recorded in the Criteria Studios?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Count the number of sports played by the universities whihc also plays Volleyball ?, SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri },lcquad +Is Sao Paulo the largest city of Brazil?,ASK WHERE { },lcquad +Which educational institutes have campuses at Iowa and Indiana ?,SELECT DISTINCT ?uri WHERE { ?uri . ?uri . ?uri },lcquad +"In which areas are the radio stations of Monticello, Maine available too?","SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x }",lcquad +Through how many labels has Katy B released her singles?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },lcquad +Who appointed William L. Dayton ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Is PIAS Recordings the distributing label of Wichita Recordings?,ASK WHERE { },lcquad +Was Gerald Gibbs the cinematographer of X the unknown?,ASK WHERE { },lcquad +Trevor Peacock has narrated in which movie?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +To which educational institutions did Lesli Sanchez go for her studies?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +What are some famous artists who rocked a Les Paul?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +Name the sstadium of 2015 Pro Duta FC season ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Name some people who are buried in a place governed by the US Department of the Interior?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },lcquad +Pointe d'Aveneyre belongs to which mountain range?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Jerry Bock's musicals has been adapted from how many things?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },lcquad +Which country has leaders Karu Jayasuriya and Ranil Wickremesinghe?,SELECT DISTINCT ?uri WHERE { ?uri . ?uri . ?uri },lcquad +Count the movies edited by Mark Stevens (film editor) and were directed by Joel Schumacher?, SELECT DISTINCT COUNT(?uri) WHERE {?uri . ?uri } ,lcquad +"In which city was the company founded , which owns Grasim Bhiwani Textiles?",SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +What television shows's distributor is Eurovision?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +List the judge of the TV show whose one of the judge is Ludacris ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Whose youth clubs used to participate in Argentine Primera Division?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . },lcquad +List some people who were opponents of someone who was died by hanging? ,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Who owns the railway line which goes through the Newark Station?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Which magazine's editor is married to Crystal Harris?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },lcquad +Is Compaq a software company?,ASK WHERE { },lcquad +What is the currency of the country of Kerguelen Islands?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Which sitcom is broadcasted by FOX and presented by Brian Dunkleman?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +Which sports are played in the alma mater of Amitava Datta?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +What is the parent company of Edsel?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +"What are some TV shows whose voice actors are from Truckee, California, US?","SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri }",lcquad +"Which person won Screen actors Guild Life Time Achievement award and has resting palce in Palo Alto, California ?","SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri }",lcquad +How many shows are made by Playtone?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . ?uri },lcquad +List the mascot of the universities which are a part of National Collegiate Athletic Association.,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +What is the route junction of Rhode Island Route 15 ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Does the owyhee river flow into oregon?,ASK WHERE { },lcquad +What is the famous relative of Mrunalini Kunte known for?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +From which country is Lawrence Okoye's nationality ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +From which party is the politician who was selected in Barasat constituency?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Name the associate acts of Martin Pugh?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Who authored the work illustrated by Hiroyuki Takei?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Who was the president at the time when both Carl Stokes and Joseph Stiglitz held a position in US political framework?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +List all the presidents of the school which had atleast one of the president as Queen Noor of Jordan ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Which TV show's opening theme is The Best of Both Worlds (song) and executive producer is Steven Peterman?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +What are the tenants of Mercedes-Benz Superdome?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +What is the birth city of trainer of Leallah?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +What are some TV shows similar to the one produced by Susie Liggat?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },lcquad +"Which television show is based in Massachusetts and has opening theme as ""Where Everybody Knows Your Name"" ?",SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +Name the software which has been developed by John Fanning ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +What is the mouth mountain of Current River (Missouri) ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Who has canonized someone who's a doctor of the church?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +was the first national bank and trust building architectured by Chicago?,"ASK WHERE { }",lcquad +Did Tupac write the lyrics of Holler If Ya Hear Me?,ASK WHERE { },lcquad +"Where is the tombstone of the parliament members who served with James Roberts as the Vice President, US?",SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +What is the nationality of the entomologist who is a renowned authority of Smerinthus saliceti ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +"Where is the ground of the soccer club, which has Alan Kusov as a team member ?",SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +From where did the son of Gustavo Rojas Pinilla graduate?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +What currencies are prevalent in the countries governed by the President of France?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Which company manufactured Delta III?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +In which fields are pupils of Edouard Chavannes working?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Who is the artist of Time Radio hour ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +List the prospect team of Robin Kovacs ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +"Where did the genres originate, which were in the Harry and the Potters album?",SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },lcquad +How many sitcoms are there whose theme music is composed by a New Yorker?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?uri ?x . ?uri },lcquad +"Which band made the song Take me There, and has collaborated with Blayse in the past?", SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Who was succeeded by Arthur Gegei as the office ho0lder ?,SELECT DISTINCT ?uri WHERE {?uri . },lcquad +Whose successors are Robert P. Smith and Adrian A. Basora?,SELECT DISTINCT ?uri WHERE { ?uri . ?uri . },lcquad +Give me a count of movies whose editor is Mark Stevens?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . ?uri },lcquad +How many other awards have been given to people who have won the Golden Globe?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?uri },lcquad +Name the mountain located in California and has parent peak as Nevado de Toluca ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +Which person works at the American Magazine?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +What was developed by someone working in Cockroach Labs?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . },lcquad +"The people who did their high school in Palm City, Florida did their college where?","SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x }",lcquad +"Where is the radio broadcasted in, whose sister station is CKFM-FM?",SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +List the spanish football player in the NYC FC ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . },lcquad +Does the San Macros River start in Texas?,ASK WHERE { },lcquad +Which stadium's operator works in the Pepsi Center?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . },lcquad +What is the academic discipline of the Journal of Cerebral Blood Flow & Metabolism and also an ingredient of the Ragout fin ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Is the national anthem of Mauritius motherland?,ASK WHERE { },lcquad +In what tv shows did Jason Carter act?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +Where is the mouth of the river whose tributary is Bjelimićka Rijeka ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +"Which companies make cars with a front engine, rear wheel drive layout?","SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x }",lcquad +What is the mascot of the military unit in which Ronald Wilson served?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Did Jerry Siegel create Lois Lane?,ASK WHERE { },lcquad +"Where does Truman McGill Hobbs, United States District Judge live?", SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Pennsylvania has how many american football teams?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . ?uri },lcquad +To which sports team is Aubie the mascot?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +What is the religious affiliation of Hong Kong Taoist Association Tang Hin Memorial Secondary School ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +"What were the major actions taken by the politicians living in Gales Ferry, Connecticut?","SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x }",lcquad +What are the software whose operating systems are Mac OS and Microsoft Windows?,SELECT DISTINCT ?uri WHERE { ?uri . ?uri . ?uri },lcquad +What band had Nick Jonas and Kevin Jonas as former members ?,SELECT DISTINCT ?uri WHERE { ?uri . ?uri . ?uri },lcquad +Which royal people are buried in Rome?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +Is Gaza Strip the result of Operation Autumn Clouds?,ASK WHERE { },lcquad +What artist was associated closely with the bare necessities and rock a doodle?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Which parent company of the Cornell University Press is also the alma mater of the Mario Garca Menocal?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Which religions are followed by people in England?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Where was MacKenzie Miller born?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +"Is US Navy garrisoned at Arlington County, Virginia?","ASK WHERE { }",lcquad +What company involved in the development of Sherlock did Arthur Levinson work for?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Who was the president during the time the opponent of John Hospers was in the office?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +What is the birthplace of the netball player who is the relative of Rachel Rasmussen ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +What is the religion of the academic authority on Ceratosoma tenue?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +What is the birth location of the pope who was canonized by Agatha of Sicily?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +In which cities are there stations of SCOLA?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Which set of researchers won the Gold Medal of the Royal Astronomical Society award?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +List the members of Skull Gang?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +How did Letitia MacTavish Hargrave died ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Which destination of the Novair International Airway is the source origin of Spaghetti squash ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Which animator of Tommy Tucker's Tooth is also the film director of Alice's Wonderland ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +The president served by Haqqi al-Azm died where?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Name the mouth country of Upper Neretva ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +What show has writing of Erik Jendresen and Graham Yost?,SELECT DISTINCT ?uri WHERE { ?uri . ?uri . ?uri },lcquad +Name the movies in which music is give by Laurie Johnson and edited by Anthony Harvey ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +Which NASA astronaut was on mission Gemini 8?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +Give me the places where people who worked in Church of England died in ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Which assembly of the Plymouth Savoy is the route end of the NorthSouth Transport Corridor?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Who is the producer of the song which is the previous work of He's a Liar ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Which river's source mountain is Baikal Mountains and it's mouth is Lena Delta Wildlife Reserve?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +How many universities are located in a country led by Olemic Thommessen?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?uri ?x . ?uri },lcquad +where are renaissance centers located?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Which publisher of Stone Canoe is also the university for which Michael Powell plays for ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +What mascot of the Galatasaray Handball Team is also the team name of Cristo Rey Jesuit high School ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +What is the alma mater of the author of Letter to a Christian Nation ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Which television shows have been produced by Erik Bork?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +What are the gadgets whose manufacturing company is founded by Terry Gou?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },lcquad +What party are Siddharta Shankar Ray and Kamla Beniwal from?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +How many books are there whose author's tomb is in Madrid?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?uri ?x . ?uri },lcquad +What are the television shows whose writers did notable work for Band of Brothers ?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },lcquad +To which political party does the writer of In the Bazaars of Hyderabad belong?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +To how many different species does the members of the Animal Kingdom belong?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?uri },lcquad +Where do networks affiliated with ETC broadcast?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +What water bodies are nearest to Helsinki city?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +Which relative of ralf schumacher is a famous formula one racer?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +What country did the successor of William Ofori Atta swear his oath to?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +"Which countries were the first to play Gumus and Ne daj se, Nina?","SELECT DISTINCT ?uri WHERE { ?uri. ?uri . }",lcquad +Is tahiti in the Society Islands achipelago?,ASK WHERE { },lcquad +What is the prize awarded to Bruce Beutler ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +"To which books Thomas Egerton, an editor?",SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +Where did Marvo originate?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +What is the burial place of Iyoas I ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +What sport played in Polytechnic uni of San Juan has also made advocate nasiruddin famous?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +What river ends in Indian Ocean and also starts somewhere in Zambia?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +Who all have been a commander during the battles of Ohio?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +What is the appliance build jointly by Sony and Asus?,SELECT DISTINCT ?uri WHERE { ?uri . ?uri . ?uri },lcquad +How many groups speak the English Language?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . ?uri },lcquad +Which source of river Raa is the sovereign state of Adriatic sea ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +What was founded by Congress of Industrial Organizations ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Which current players once played for Toronto argonauts?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +What is the religious affiliation of the Neungin High School which is also the academic interest of Sylvain Lvi ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Give me a count of movies distributed by Warner Bros?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . },lcquad +Which magazines were founded by ann Wenner ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +Where is the venue of the History of Penny Arcade Expo located?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Which company is the parent company of Chevrolet Spark ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Name the TV show distributed by Broadcast Syndication and is broadcasted by comedy central ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +Who was the president at the time when the opponent of Benjamin Spock held office?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +List the shrines of the saint whose one of the shrine is Ponza ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Where is the headquarters of the company which runs the Metro Blue Line in minnesota?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +How many people are in the continental army?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . },lcquad +Which religion followers are in the Royal Thai Army?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +To which senator did military unit VMF-155 belong?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +What are the movies whose music is composed by Vangelis?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +In which areas can I find wine made of Vitis vinifera grapes?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Which expertise of the Menetries's warbler is the nationality of the Jeyhun Abiyev ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Who is the publisher of The Rolling Stone Album Guide ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Which soccer clubs are in the Liga Divisi Utama?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +How many services does 21Vianet provide?,SELECT DISTINCT COUNT(?uri) WHERE { ?uri . },lcquad +What is the Location of the Dofinivka Estuary which is also the birthplace of the Liliya Lobanova ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +What are the former team of the american football players who played at gridiron football position ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +What subjects does the subsequent work of The Dragons of Eden deals with ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Name the TV show which has judge as harry Connick and is broadcasted on Fox Broadcasting Company ?,"SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri }",lcquad +What are some rivers over which there is a box girder bridge?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Whay common comic is written by Karakuri Dji Ultimo and narrated by The Incredible Hulk ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Which university attended by Donn Barber and education institute of Jack McGregor ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Where is the lake located into which the Winnipeg River flows?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Which municipality is neighbored by Cologny and Chne-Bougeries?,SELECT DISTINCT ?uri WHERE { ?uri . ?uri . },lcquad +Who is the designer of Saleen S5S Raptor ?,SELECT DISTINCT ?uri WHERE { ?uri . },lcquad +Name the newspaper owned by Schibsted and headquartered at Stockholm?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +How many party are there of the office holders whose one of the party is Janata Dal ?, SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri },lcquad +Name the first driver of 1999 San Marino Grand Prix ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +What is the scientist whose doctoral students are Erich Bagge and erban ieica?,SELECT DISTINCT ?uri WHERE { ?uri . ?uri . },lcquad +Who battled under commander Egushawa in a conflict?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +How many things have made different people living in Canada famous?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },lcquad +Which is the largest city of Union State ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Which university has a sports team member called Micheal Powell and also owns Syracuse University Press ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Is Greg Weeks the band member of Beyond the Sixth Seal?,ASK WHERE { },lcquad +Ryan Seacrest has been the presenter of how many things?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . },lcquad +Was the Model K designed by Herny Ford?,ASK WHERE { },lcquad +Count the tenants of the stadiums designed by Populous?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },lcquad +Who all have been judges on CTV Network's shows?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +How many have former teams as Indianapolis Colts and Carolina Panthers?, SELECT DISTINCT COUNT(?uri) WHERE { ?uri . ?uri } ,lcquad +What are some movies whose distributer's CEO is Ted Hartley?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },lcquad +What was the stadium of Panionios G.S.S. in 2014-15 season ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Does Mt St. Peter Churt follow the architectural style of art deco?,ASK WHERE { },lcquad +Who was the editor of the newspaper owned by the the UK government?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +List the Stanley Kubrick's movies which has music by Laurie Johnson ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +What are the type of Greenup County High School?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +"Where does the road starting from Madison, Wisconsin end?","SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x }",lcquad +To which label did The Producers and I pray on Christmas sign up?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +What is sovereignity of the successor of Mr. George Robert Andrews ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Colin Powell was the commander of which military conflict ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +In which common territory did Sino French war and the Tonkin campaign take place?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +What is the label of Next Thing ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Is Lancy a city close to Geneva?,ASK WHERE { },lcquad +List down the schools whose mascot's order is Even-toed ungulate?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . },lcquad +Name the company whose products is Boeing F/A-18E/F Super Hornet and key person is Raymond Conner?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +List the relatives of the governor of Gabriel Slaughter?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +"In all the states which have a Uniontown, where does a Keller's mill covered bridge exist too?","SELECT DISTINCT ?uri WHERE { ?uri. ?uri . }",lcquad +Who manufactured the Delta III and the Space Shuttle?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +How many corporations were founded in Texas?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . ?uri },lcquad +"What is the style of architecture of Shaheed Minar, Kolkata ?"," SELECT DISTINCT ?uri WHERE { ?uri } ",lcquad +Which developer of Go was also the predecssor of X compnay ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +List all the houses of United States Congress ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +What companies are located in toronto?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +Where does the network cofounded by Seewoosagur Ramgoolam air its shows?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Name the appliance produced by Foxconn and its OS is provided by PlayStation 3 system software ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +Which teams participate in the football seasons headed by Patricia Amorim?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Who was the architect of the stadium currently run by Brandenton?,"SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x }",lcquad +who operates the south side elevated railroad?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Name few companies founded in Texas?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +In which timezone does Khok Kwang lie?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Who directed the albums recorded in Anaheim?,"SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x }",lcquad +Who has Saint Joseph and Mary as parents ?,SELECT DISTINCT ?uri WHERE { ?uri . ?uri . },lcquad +"How many awards have been received by graduates of University of Melbourne, Faculty of VCA & MCM?",SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },lcquad +Name the common current team of the Avalon biddle and John mcGuinness ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +What is the result of the GazaIsrael conflict is also the place of the Qaqun?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Where are Aureus and Solidus used as currency?,SELECT DISTINCT ?uri WHERE { ?uri . ?uri . },lcquad +To which military division does Clark Daniel Stearns belong?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Who are the opponents of Gervase Helwys?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Which planet was discovered by Johann Gottfired and Urbain Le Verrier ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +Is Ella Fitzgerald associated with Mickey Roker?,ASK WHERE { },lcquad +Who is the office holder for constituencies Castro District and Haight-Ashbury?,"SELECT DISTINCT ?uri WHERE { ?uri . ?uri . ?uri }",lcquad +Which awards have been given to immunologists?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +What are the mountains in the Sequoia National Park?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +What is the alma mater of Alvin Bell and Charles Plosser?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Which animator of The Skeleton Dance is also the animator of the Tommy Tucker's Tooth ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +From where did Ben Wilson (American football) do his highscool?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Does the lena river flow into the Laptev Sea?,ASK WHERE { },lcquad +Name some books by Spanish speaking authors.,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . },lcquad +How many famous people are born in Long Island?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . },lcquad +Name some sports played in institutions of Maharashtra?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +How many other genere are there of the radio stations whose one of the genre is Classic rock ?, SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri },lcquad +Where did Allama Matthews study?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +What is the common nationality of Funny Face a comedian and that of Georgina Theodora Wood ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +What shows are aired on sister channels of BBC Parliaments,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },lcquad +How many veterans are buried in the US?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . ?uri },lcquad +Was Michael Schumacher the Pole driver of 1994 Spanish Grand Prix?,ASK WHERE { },lcquad +name the Glover's distributer ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Whichi office of Walter Evnas Edge is also the part of Atlantic seaboard fall lines ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Does the west thurrock come under Essex county?,ASK WHERE { },lcquad +Is Azerbaijan the membership of European Go Federation?,ASK WHERE { },lcquad +Which team did Michael and Ryan Powell play for?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +What are the television shows whose network is Prime Time Entertainment Network?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +"To which company is the service ""Nintendo eShop"" associated with?",SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +Name the famous employee of open society foundations ?,SELECT DISTINCT ?uri WHERE {?uri . },lcquad +List the movies whose music composer is often associated with Jon and Vangelis.,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },lcquad +Does Massimo Liverani play for Abarth?,ASK WHERE { },lcquad +who is the governer of New Castile?, SELECT DISTINCT ?uri WHERE {?uri } ,lcquad +Does MSX BASIC have a license of microsoft?,ASK WHERE { },lcquad +How many teams have someone playing at the defenceman position?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?uri },lcquad +List all the teams which have someone who played their first game for the Yankees?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Cricket is played by which countries' citizens?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Which religion is followed by the PM who was served by Chea Sim?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Name some shows similar to the one whose theme song is made by Murray Gold.,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },lcquad +What is the constituency of the people who died in Lampedusa?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Who are the relatives of the character after which Quagmire's Quagmire was made?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . },lcquad +Name the driver who was at pole in 1997 Canadian Grand Prix and also 1994 Spanish Grand Prix ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Which fictional character portrayed by Roger barton has Darth Vader as family member ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +Which band was left by Kevin Jonas?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +What is the place of death of the gymnast who was the silver medalist at the 1956 Summer Olympics Men's rings ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Name the narrators of the album which has been narrated by Alan Thicke ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +"Whose children died in North Bend, Ohio?","SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . }",lcquad +Name the presenter of Shirley Temple's Storybook ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +What is the place of birth of the stars of Auto Shankar ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Name the television show created by CE Webber and also has actor named Companion?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +Give me the characters who last appeared in Star Wars Episode 3, SELECT DISTINCT ?uri WHERE {?uri } ,lcquad +"How many awards have been awarded to people who are buried in Glendale, California?","SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . }",lcquad +Count the number of tenants whose one of the tenant is Toronto Phantoms ?, SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri },lcquad +In which war did the units garrisoned at Turin fight?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Which software uses GTK+ as programming language?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +Producers of what have died in Mississippi?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . },lcquad +Where is the birthplace of Ferrel Harris ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Did Stan Lee write the Daredevils?,ASK WHERE { },lcquad +Which sports exist in the universities whose president is Emanuel de Guzman?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +How many scientists are known for the Manhatten Project?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . ?uri },lcquad +Who designed the stadiums which have been rented by Oakland athletics?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Who were the producers of the tenderfoot?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Name the route start of Saint Petersburg Moscow Railway ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Name the sport league of Hampton Roads Rhinos ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +How many Thesaban towns are there?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . ?uri },lcquad +Name all the broadcast area of the TV stations which has Rodrigues as one of the broadcast area ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Which share holder of outlook is also the content license of the MSX Basics ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Name the shows whose theme was composed by a band in which Jay Lane used to be?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },lcquad +Name the office holder with predecessor as Mark Latham and partner Tim Mathieson ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +Which newspaper owned by Schibsted is published in Swedish ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +Was Yabanc Damat first aired in UAE?,ASK WHERE { },lcquad +How many other people are in a band with Robert de Niro?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?uri },lcquad +"Which river goes through cohoes, NY"," SELECT DISTINCT ?uri WHERE { ?uri } ",lcquad +List the software which uses Microsoft Windows as their operating system ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +What all has been created by Jerry Siegel?, SELECT DISTINCT ?uri WHERE {?uri } ,lcquad +What is the common party of the Manthena Venkata Raju and B. Shiva Rao?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Is Philosophy the academic discipline of Think (journal)?,ASK WHERE { },lcquad +List the country of Tokaj wine region ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Who all were venerated in Islam?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . },lcquad +Which country has outflow of Lake Uniamsi and inflows of the Cahora Bassa?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +How many items belong to the Science Fiction genre?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . },lcquad +For what is Abhijit Kunte known ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Who is the author of Karakuri Dji Ultimo ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +How many shows belong to the networks one of whose sister station is BBC News?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?uri ?x . ?uri },lcquad +Which spouse of Ptolemy XIV had a mother named Ptolemy XII auletes ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . },lcquad +What is the mascot of Galatasaray Handball Team ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Name some dishes made with flowering plants.,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },lcquad +Whose artworks are in Sao Paulo Museum of Art?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Which country are the players of the Atletico Petroleos de Luanda from?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +What is the ethnicity of the people working for the Philippines house of representatives?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Where was Ganefo hosted?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +What is the religion of the governors whose office is the Bank of Thailand?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Count everyone who was in a youthclub chaired by Josep Maria Bartomeu ?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?uri ?x . },lcquad +What is the common branch of military of Edward Joseph Schwartz and John Tower ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Which TNT show has Christopher Franke as artist?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +What would be a common border of Siberia and the shimsa plateau?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +"The Information: A History, a Theory, a Flood is a work of Isaac Newton?","ASK WHERE { }",lcquad +"List all the locations of the companies whose are also located in Rancho Cucamonga, California ?","SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x }",lcquad +Name the university with affiliations as Graham Holdings Company and campus at Indiana?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +Greek writers have won which award?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +In which nation does the league take place where C.D. Primeiro de Agosto play?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Where are ethnic group located which speak Nebraskan?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +In which war did Roh Tae Woo and Lee Leffingwell fight?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +"For which reasons have the ones born in Edinburgh, died?",SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +What company developed Mac OS 9 and also brought Tiny Tower to the market?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +What is the largest city of the country which have an assembly of Plymouth Savoy?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +What is the religion of the ethnic group to which Clara Ng belongs?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +What is the affiliation of Vanderbilt University Medical Center ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +How many scientist became famous for the battle of Occupation of Japan?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?uri ?x . ?uri },lcquad +Did Steve Sampson manage a club of Santa Clara university,ASK WHERE { },lcquad +In which municipalities does the NYC housing authority own buildings?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +What have been made in the state whose capital is Boston?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . },lcquad +Name the military conflict whose commander was Colin Powell and took place in israel ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +Where do the judge advocate general corps live?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +List the universities with athletics NCAA Division I Football Bowl Subdivision ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +Who is the builder of the Stadium of Costa Rica women's national football team?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +How many sitcoms were produced by the company whose predecessor was the Desilu Productions,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?uri ?x . ?uri },lcquad +What city is the residence of Cheryl Teigs?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Which basketball team's coach is Kurt Rambis?, SELECT DISTINCT ?uri WHERE {?uri } ,lcquad +Who is the successor of Quest Software ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +What are some other destinations covered by the airlines whose flights go to the Mediterranean sea?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Where is the assembly of Caterpillar 797 ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +What is the official residence of the senator who is the deputy of Everett Dirksen?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +What are the organisation founded in Texas and Dallas?,SELECT DISTINCT ?uri WHERE { ?uri . ?uri . ?uri },lcquad +Name the television show whose voice is given by April Stewart and theme music composer is Primus (band)?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +Name the constituency of Jonas Gahr Stre ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Which players have represented Los Angeles Angels of Anaheim?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +Where did Goran Cengic die?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +What is the profession of Claiborne Pell ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Which former team of the Harry Parker (baseball) is the debut team of the Carl Sitton?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +What are the county seats of the region which operates the Boeing Field?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Where is the hometown of A Bartlett Giamatti?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +What are the professions of Frederick Frelinghuysen (general) ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Did Henry Ford design the Model C?,ASK WHERE { },lcquad +Name the species of Southwest African lion ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Count the sports played at universities located in Urban Areas?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },lcquad +What is the mountain whose parent mountain peak is Nevado de Toluca?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +Was Just Another day made by Queen Latifah?,ASK WHERE { },lcquad +Who was the narrator in the point?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Is Stephanie Rice the flagbearer of Australia at the 2008 Summer Olympics?,ASK WHERE { },lcquad +What is the home town of the Band which is the previous work of Sammy Hagar & Friends ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Did Carolyn Heinrich study at the Vanderbilt?,ASK WHERE { },lcquad +In which state do darren brass and belvin perry live?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +List all the school of the rugby player whose one of the school is Michael House ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +What is the official residence of the Christopher Daz Figuero which is also the state of the Cruce a Nado Internacional, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +What is the national origin of Focke-Wulf Fw 260 ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +What is manufactured by a company founded by Akio Morita?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . },lcquad +What is the award presented by Downtown Athletic Club and Yale Club NYCity?,SELECT DISTINCT ?uri WHERE { ?uri . ?uri . ?uri },lcquad +"What is the name of the river whose mouth country is Mozambique and source region is North-Western Province, Zambia?","SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri }",lcquad +List the races of Fergie Sutherland?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Games on amiga are typically of what kind?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Where is the gold coast football club located?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Which shows are similar to the ones produced by Phil Collinson?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },lcquad +What is the country whose leader name is Grard Larcher?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +Who was the influencer of Dave Attel who also starred in Adios Amigo?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +Name the wine regions of Baco noir?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +What is the awards won by the producer of From the Life of the Marionettes ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +What is the meaning of the Isa (name) which is also a relegion of Sacred Heart Convent School (Bangkok) ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +List the doctoral students of Harry Harlow ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +List the major shrines of the saints whose one of the shrine is St. Takla Haymanot's Church ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Which currency is used by the record label of the Way to Your Heart?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +In which department does Raymond Baldwin work?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Where did the fashion designer study who died at the Stony Brook University Hospital?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Was mother teresa beatified by John Paul the second?,ASK WHERE { },lcquad +Which company of Ford Theatre is the owning organization of F0ord Kansa City Assemply Plant ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +What is the religion of the relatives of Ananda Weerasekara?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Which religion did both anupong paochinda and udit raj follow?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +Who are all the people who used to figure skate with the current partner of Alexa Scimeca?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Isaac Hayes has acted in which movies ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +What is the citizenship of the Sarah Kazemy and land of the Cervelle de canut, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Movie's produced by Michael Deeley has Jordan Cronenweth as director of photography,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +What is the company that has products with Windows RT as its OS?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . },lcquad +How many buildings are located in the jurisdiction of John Tory?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?uri ?x . ?uri },lcquad +Name some software as a service?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +List down the associated musical artist of the writer of Rain Is a Good Thing ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Who founded the league which was won by Joe McKeehen?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +"How many companies were founded in Menlo Park, California?","SELECT DISTINCT COUNT(?uri) WHERE {?uri . ?uri }",lcquad +Which European Broadcasting Union's TV show has opening theme as Te Deum ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +Give me all martial artists trained by Joe Schilling.,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +Name the musical band of Written in the Stars ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Carl Sagan has penned books on how many matters?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },lcquad +What is the venerated in of Edwin of Northumbria ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Is william doyle the chairman of Georgetown university?,ASK WHERE { },lcquad +Where was Picasso's Last Words recorded ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +"What is the hub airport of Pawan Hans, and is also the largest city of India?", SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +What is the occupation of the people who are born in Iowa?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Where all does the sister station of virgin radio play?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Under whom did Charles Drummond Ellis do his PhD?, SELECT DISTINCT ?uri WHERE {?uri } ,lcquad +How many have company as Paramount Television and network as NBC are there?, SELECT DISTINCT COUNT(?uri) WHERE {?uri . ?uri } ,lcquad +Under which president did some politicians live in Kensington?,"SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x }",lcquad +Ontario's ice hockey players have been a part of which teams?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +What race of Linda Hogan is the state of origin of the Holmes Colbert ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +What is the official residence of Fergus McMaster ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Count the different causes of death of Christians.,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },lcquad +How many players debuted their careers from San Francisco 49ers?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . ?uri },lcquad +Name the TV shows whose developer is J. Michael Straczynski and executive producer is Douglas Netter?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +What is the company whose one of the key person is Dennis Muilenburg and produces Boeing CH-47 Chinook ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +"Which company is located in Harris County, Texas?","SELECT DISTINCT ?uri WHERE {?uri . ?uri }",lcquad +Is north america one of the destinations of airtours airways?,ASK WHERE { },lcquad +Which memeber of South Asia SubRegional Economic cooperation is also the nationality of Aishath saffa ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Which board memeber of jimmy Wales also owns Latvian Wikipedia ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Which baseball team is managed by Bruce Bochy?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +"What are the musicals based on, whose lyricist was Shelon Harnick?",SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Who has given guest appearances on the TV Episodes whose was music done by Mama Makes 3?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +"What series is Mazes of Time from, and is produced by BBC multimedia?", SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Is Audie Murphy buried in the Arlington national cementery?,ASK WHERE { },lcquad +What are the universities where athletics is regulated by National Collegiate Athletic Association?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +"Which office holder's resting place is Alta Mesa Memorial Park and Henry E. Catto, Jr. as predecessor ?","SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri }",lcquad +Name the TV show whose network is NBC and is the subsequent work of Fraiser ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +How many had their debut team coached by Chip Kelly?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?uri ?x . },lcquad +Who is the scientist whose academic advisor was Karl Ewald Hasse?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +Malaysian highway authority has designed bridges over what things?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Which labels have published songs written by Harry Connick Jr?,"SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x }",lcquad +List the academic discipline of the journals whose publisher is SAGE Publications.,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +What is the government type of Kumta ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +whose is famous works are Maniac Magee and Wringer ?,SELECT DISTINCT ?uri WHERE { ?uri . ?uri . },lcquad +what kind of games can I find for PC 9800?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +"After the death of which political figure, did the Coalition Provisional Authority came into power?",SELECT DISTINCT ?uri WHERE {?uri . },lcquad +Who owns the radio stations in Alabama?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Name the movie whose director is Stanley Kubrick and editor is Anthony Harvey?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +what are the nicknames of the people who are in Ekstraliga?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +List the alma mater of the person who is wedded to Sissela Bok.,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +List all the members of the organization whose one of the members is Bangladesh ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Which sports are played in schools founded by Fr Almeida?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +What is the nationality of the economist who is one of the important people in the Foundation for Economic Education?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +List all discipline of the journals whose one of the discipline is Cerebral blood flow ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Which high school of jerry Tagge is also the nearest city of Tennie laura ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +In how many different places do Starwood hotels and resorts worldwide operate?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },lcquad +Which athletics of Jaimatu Muslim Mindano is same as the genre of the Fritz Chess ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +How many utopian and dystopian fiction books are there?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . },lcquad +Which scientist is known for anthrax and has Karl Ewald Hasse as his academic advisor ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +Who appointed the governor under whom Richard Winn works?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Where is Vietnam Airlines located ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +"Which location of INKAS is also the location of T.I. Ahmadiyya Senior High School, Kumasi ?"," SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ",lcquad +Which TV show's company is PlayTone and is produced by Stephen E. Ambrose ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +What is the route end of NorthSouth Transport Corridor ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +List the architect of the buildings whose one of the architect is Philip Webb?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +What is the residence of the bronze medalist of Alpine skiing at the women's downhill competition at the 1972 Winter Olympics?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Who is the manufacturer of engine of Jeep Forward Control ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Which company founded in New Mexico manufactures Visual Studio ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +"Mazhar Ul Haq High School, Beerwah is affiliated to Islamic Religion","ASK WHERE { }",lcquad +Which government agency is run by Supachai Somcharoen?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +What is the owner of Ivanpah Solar Power Facility and the original developer of Dart?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Find the total number of ingredient of the recepies whose ingredient is common Mushroom ?, SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri },lcquad +List all the tenants of the stadium where the WWF Summer Slam 2004 took place.,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Who were the founders of Sea Gayle Music?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +What religion's politicians are in the Malaysian Chinese association?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +How many movies are directed by the spouse of Dolores del Ro?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?uri ?x . ?uri },lcquad +Which US state gave us Brian Deegan and Harold Lyold?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +What are some bands out to texarkana?,"SELECT DISTINCT ?uri WHERE {?uri . ?uri }",lcquad +What is the military branch of John Tower ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +In which country was GM was firt aired which is also the mouth country of Upper Neretva?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +How many information appliance are manufactured by companies located in Taiwan?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?uri ?x . ?uri },lcquad +How many people are in the England national football team?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . },lcquad +With which musical artist is the producer of Spotlight associated ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Where was the current champion of Egyptian Open born ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Is Tea the main ingredient of Lahpet?,ASK WHERE { },lcquad +In what battles did president Park Chung-hee participate?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +who is the husband of Rosie Huntington Whiteley?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +What is the river whose tributary is Zarqa River?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +Who holds stock in the railway lines ending in Washington DC?,"SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x }",lcquad +Which religion does the leader of Church and Wellesley follow?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Who are the local authority of Buckhurst Hill County High School ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Who made the singles on the famous album Aida?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +List all the former broadcast network of WMDN ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +What company's founder is Jim Harris?, SELECT DISTINCT ?uri WHERE {?uri } ,lcquad +Which religions are practiced in India?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Which current player of Chicago Bulls was drafted by Los Angeles Clippers ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . },lcquad +Which New Mexico company provides One Drive as a service ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +What team has players born in Dominican Republic ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Name the party of Indira Gandhi ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +"Who was the opponent of Robert Carr, 1st Earl of Somerset ?"," SELECT DISTINCT ?uri WHERE { ?uri } ",lcquad +What is the common country of Ganz UV and Balaton wine region ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +What is the mascot of Celal Bayar University ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Whose resting place is William Henry Harrison Tomb State Memorial and has kids named John Scott Harrison?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . },lcquad +Why did Letita McTavish Hargrave and Sextus Barbour die?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Name the constituency of Domenico Modugno ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Is michelangelo the painter of The Persian Boy?,ASK WHERE { },lcquad +Name the president whose had relatives in Clinton family and lieutenant named Joe Purcell?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +What discipline was The Chess Monthly about ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Which saints were the messengers of Islam?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +tonle sap flows into which river?, SELECT DISTINCT ?uri WHERE {?uri } ,lcquad +What awards were given to the producer of Chicken Little?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Was GM first aired in Albania?,ASK WHERE { },lcquad +What water bodies have primary inflows sa Kemijoki?, SELECT DISTINCT ?uri WHERE {?uri } ,lcquad +Where was WiZeefa founded ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Which educational institution of Jack Mcgregor is also the alma mater of Donn barber ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +Where is Richard Stites located ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +was james watt a mechanical engineer?,ASK WHERE { },lcquad +Which drinks have emerged from the US?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Who composed the lyrics of Holler If Ya Hear Me ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Is Bluebird the grandsire of Miss Potential?,ASK WHERE { },lcquad +What is the headquarters of the public transit system which is the system of Bottineau LRT ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +What units are garrisoned in the Pentagon?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +What is the hometown of John Speraw ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Count the journals in the field of Philosophy.,SELECT DISTINCT COUNT(?uri) WHERE {?uri . ?uri },lcquad +Which scientist advised a doctoral student named Erban Ieica?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +Where are the Dinamo Krasnodar players born?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +"What is the hometown of Nader Guirat, where Josef Johansson was born too?",SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +"How many major shrine are there, of the saints whose beatified by Pope Pius XI ?",SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },lcquad +Name the TV shows owned by divisions of CBS?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },lcquad +What is the academic discipline of Journal of Cerebral Blood Flow & Metabolism ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +What is the agency name of the Ministry of Information and Communication Technology (Thailand) and distribution region of the Channel 9 MCOT HD ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Which gaming console's central processing unit is microprocessor and built by Sony?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . },lcquad +List the home stadiums of the teams in the Russian Premier League?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Give me an estimate number of races where horses grandsired by the Wild Risk have raced in?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?uri },lcquad +Give me the list of people who scaled mountains in Sierra Nevada?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +What is the name of the movie whose director of photography was Jordan Cronenweth and music composer was Vangelis?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +What are the common sports played by jamiatu Muslim mindanao and Polytechnic University of Philippines Taguig ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Count the different origins of members of the Vitis Vinifera species.,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?uri },lcquad +What magazine published Allal and is the employer of Peter Bergman?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Where were Justina Machado and John Englehard born?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +Name the office holder who was married to Dolley Madison and has resting palce as Montpelier ?,"SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri }",lcquad +Where was David Scherman trained ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +In which series has Sean Young portrayed someone?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +"List all the hubs of the airline whose one of the hub is Subang, Indonesia ?","SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x }",lcquad +Was the song The Boy is Mine recorded in Atlanta?,ASK WHERE { },lcquad +Who is the president when Loretta Ucelli used to work for Democratic party?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Who wrote the play in which Blanche DuBois is a character?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Which district of Robert William Wilcox os the place of birth of Kamaloohua ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Where is the capital of Kelsey Creek located?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +"What borders the valley which falls under Lake County, Oregon?","SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x }",lcquad +What city is it where Wayne Allard governs and Juli Ashton was born?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +List the regions served by the company which serves in Pacific Ocean ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Which prime ministers were served by the governor who appointed Murray Gleeson?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Name the fictional character painted by Josh Friedman and portrayed in Terminator Genisys ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +What is the state of origin of the person who is the successor of Tetsugen Bernard Glassman?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +"What city in the US was Alfred Phillips born in, and is the resting place of William Smith?",SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +Give me the name of the organization hqed at Chaeng Watthana Govt Complex?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Who is the writer of the singles whose producer is Peter-John Vettese?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Count the number of artist whose pone of the field is writing ?, SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri },lcquad +Which veterans served at CBS?,SELECT DISTINCT ?uri WHERE {?uri . },lcquad +What are some shareholders of the bridge maintained by the Massachusetts department of transportation?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Name the team for which Cam Plante played for which were also the tenants of MasterCard center ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +City of Miami Cemetery is the governing body of which city?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +List the movies whose editors are born in London.,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },lcquad +Does Shaun Thong a member of Audi?,ASK WHERE { },lcquad +Is the chestnut white bellied rat a mammal?,ASK WHERE { },lcquad +Who attended Great Ayton university?,SELECT DISTINCT ?uri WHERE {?uri . },lcquad +Where was Babita born ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +What is the city whose mayor is Giorgos Kaminis?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +Which destinations of the Air 2000 is also the location continent of the Falken Tire ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Does Sonny Bill Williams belong in the Canterbury Bankstown Bulldogs club?,ASK WHERE { },lcquad +Which field's journals are edited by Paul Morphy?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Give me a list of everyone who manages the famous rock art sites?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +List the film starring of the movies whose editor is Harvey Rosenstock ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Name hte builder of Baku Olympic Stadium ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Count the awards received by Immunologists?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?uri },lcquad +In which mountain Inyo National Forest and California are located?,SELECT DISTINCT ?uri WHERE { ?uri . ?uri . ?uri },lcquad +What is the nickname of the club managed by Piotr baron?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +For how many different teams have the players debuted in Houston Astros played?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?uri },lcquad +Rostock and Oulu is the shore cities on which sea ?,SELECT DISTINCT ?uri WHERE { ?uri . ?uri . ?uri },lcquad +Was winston churchill the prime minister of Selwyn Lloyd?,ASK WHERE { },lcquad +How many different things are used as ingredients in Sweden?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },lcquad +How many people have been the first one to scale a peak in the Yosemite Park?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?uri },lcquad +"What are some licensees of the stations playing in Nashville, Tennessee?","SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x }",lcquad +Which builder of Ford Straight-6 engine is also the automobile latform provider of Chiva bus ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +List the awards given to the key people in Pixar ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Which distributer of Bombay Sapphire also makes Grewy goose ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Count the total number of bacterias whose division is Firmicutes and domain is Bacteria?, SELECT DISTINCT COUNT(?uri) WHERE {?uri . ?uri } ,lcquad +Count me the number of people whose military unit is involved with Close air support ?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?uri ?x . ?uri },lcquad +What is the college of Malik Ausean which is also the college of Kyle Fuller ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +What are some other great things by the person who produced Queer as Folk?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?x },lcquad +Does Jean Louis Arcand work for Geneva?,ASK WHERE { },lcquad +Is facebook a public company?,ASK WHERE { },lcquad +Under which scientist did doctoral students erban ieica and Erich Bagge study?,SELECT DISTINCT ?uri WHERE { ?uri . ?uri . ?uri },lcquad +Which rivers start in a country whose leader is Irene Mambilima?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },lcquad +Count the number of books whose author's were born in Alcal de Henares ?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?uri ?x . ?uri },lcquad +Name the show whose jury consist of Jennifer Lopez and Randy Jackson?,SELECT DISTINCT ?uri WHERE { ?uri . ?uri . ?uri },lcquad +List down all the baseball teams whose team manager was a Catcher?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },lcquad + Which musical band produced the subsequent work of City of New Orleans ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +What is the alma mater of the James Still which is also the alma mater of Tom Maniatis?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Where is the stadium of west Papus football team ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +What is the debut team of the football player whose college is UCLA Bruins football?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Does Air 2000 fly to the north american continent?,ASK WHERE { },lcquad +In which racing championships did Bobby Beasley and Martin Molony participate?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +What is the origin of the grape whose wine region is the Troodos Mountains ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Whose families are Buccinoidea and Buccinidae?,SELECT DISTINCT ?uri WHERE { ?uri . ?uri . },lcquad +Name the artist of Brad Paisley discography ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Ernest Rutherford was the advisor of how many people?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . },lcquad +Name the TV show whose composer is Judy Hart Angelo and company as Paramount Television ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +list all the chairman of Vancouver Whitecaps FC?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +"What are some employees of Uni of California, santa cruz?","SELECT DISTINCT ?uri WHERE {?uri . }",lcquad +"Which municipality of the Brown's Corners, toronto also place of birth of Krista Kelly ?"," SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ",lcquad +Which famous writer was married to Jill Krementz and had a son named Edith Vonnegut ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +Name the nearest city to Tennie and Laura ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +How many TV shows have been created by Simon Fuller ?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . ?uri },lcquad +Who appointed the governor under which Robert Witherspoon worked?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +What is the area of ITV (Thailand) ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +who all play for of the american football players at Quarterback position?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Name the office holder whose child is Lori Black and predecessor is Henry E. Catto Jr ?,"SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri }",lcquad +Which televion show's theme music was given by Ron Grainer and is broadcasted by BBC HD ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +Name a person who was educated in Humes High School ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +Where do I find buildings rented by Weber Thompson?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +What is the field of interest of the advisor of Henri Maspero ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Name the actor of Soylent Green to which Lydia Clarke is married ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +Count the cities whihch are on the same sea as that of Miami ?, SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri },lcquad +Name the stock holders of soccer club whose one of the stockholder is Carl Sanders ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Who are the key people of FWD.us?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Who is the executive producer of Into the Dalek ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +What team is famous for Robert Nederlander and also the debuting team of Gary Sanchez?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . ?uri },lcquad +List everyone who got their training in the city of California?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . },lcquad +Where are Thomas Franois Burgers and Johannes Gerhardus Strijdom buried?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +Through how many cities does the river flowing into Arkansas go?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?uri },lcquad +"What is the municipality of the Brown's Corners, Toronto and also the place of birth of the George Karrys"," SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ",lcquad +Does Richard Marx play guitar?,ASK WHERE { },lcquad +How many things are manufactured by the company whose subsidiary is Sony Corporation shareholders and subsidiaries?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?uri ?x . },lcquad +What is the total number of office holders who preceded the people working under president bill clinton?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?uri ?x . ?uri },lcquad +"In which other places are there companies which are in Ontario, too?",SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +What is the POD of the successor of Pmare I ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +In which companies boards do the writers of Wikitionary belong?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +How many nations' volleyball players have played for the Russian women volleyball team?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?uri },lcquad +"Which office holder's governor is Charles Willing Byrd and has final resting place in North Bend, Ohio?","SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri }",lcquad +What is the television show which has cast member as Jason Carter and network is TNT (TV channel)?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +In how many places can I find people whose alma mater was in bachelor of arts?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?uri },lcquad +Is Gutenberg neighbouring with Madiswil?,"ASK WHERE { }",lcquad +List the junctions which lie on U.S. Route 59 in Texas and U.S. Route 59 ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +Does Mr. Jim's Pizza operate in the pizza industry?,ASK WHERE { },lcquad +Which scientist's academic advisor is Georg Meissner and is known for invention of Anthrax ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +Name the writer of South Park: The Stick of Truth ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Who owns Torrey Pines Gliderport?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Who wrote a streetcar named desire?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Which nationality of Newin Chidchob is also the nationality of Ajahn Sao Kantaslo ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +What is the label of the album whose previous work is Waterfall?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +What is the label of things produced by the band If?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Which automobile platform provider of Chiva bus is also the parent company of the Ford Falcon Cobra ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +List the goverener of Winston Bryant?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Count the movies directed by Tim Burton and music composer Danny Elfman ?, SELECT DISTINCT COUNT(?uri) WHERE {?uri . ?uri } ,lcquad +Erik Jendresen is writer and Play tone is company of which TV show ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +From which genres of music did those genres emerge where drums are important?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Which developer of the Spider-Man: Edge of Time is the successor of PlayStation 2 ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Who is the appointer of Earl B. Ruth ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +What is the constituency of the leader of Labour Party (Norway)?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Name the office holder who has a child named lori Black and Harvard Westlake school as one of the educational institute ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +To which educational institutes is Samuel Isham associated to?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Give me a count of mammals whose family is Canidae?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . ?uri },lcquad +Which band produced the album Aida?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Name the champion of National League ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Which European sea has Oulu as one of the shore city ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +"Name the team Ramiro Pea played for, which was also the first team of Steve Ontiveros?", SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +List the total number of awards of the musicals who have won Tony Award?, SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri },lcquad +What is the debut team of people born in Vargas?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +"What is the product of the BBC Multimedia and is the theme of Visions, the convention?", SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Does the Jordan River start in the Golan Heights?,ASK WHERE { },lcquad +Count the awards received by the ones who fought the battle of france?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },lcquad +List the military branch of Henry Hyde ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +What is the ethnicity of the Maike Evers and state of origin of the Theodor Hillenhinrichs ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +How many people play for the Dallas Cowboys?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . },lcquad +Was Reza Amrollahi born in Iran?,ASK WHERE { },lcquad +"What is the country whose administrative centre is Hagta, Guam?","SELECT DISTINCT ?uri WHERE {?uri . ?uri }",lcquad +Which sports by Polytechnic University of the Philippines Taguig is the discipline of The Chess Monthly ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Which source country of SamurAbsheron channel is the birth place of Anar Salmanov ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +List the resting place of the people who served in Norwalk Trainband.,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Who was the designer of john madden Football '92 ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Give me all magazines whose editors live in Chicago?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },lcquad +Which company's cars are assembled in Iran?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Which are the television show which have been created by Donald Wilson?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +Count all the Colonels?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . },lcquad +Does the croton river flow into the hudson?,ASK WHERE { },lcquad +What sports can be played at universities in Metro Manila?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +What team has Sam Keller and Jim McMilin played for?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +What has location as Ontario?,SELECT DISTINCT ?uri WHERE {?uri . },lcquad +Where was Juno I launched from ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +"In which sects was the aristocrat venerated, whose parent is Thelred the Unready?",SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +"Who won the ohio house of representatives, 2010?"," SELECT DISTINCT ?uri WHERE { ?uri } ",lcquad +Name the common distributing label of the Chinga Chang Records and StandBy Records ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +What is the draft team of Gene Conley ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +What was a common first team at the 1967 Mexican Grand Prix and 1971 US one?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +What are some common ingredients used in Swedish dishes?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Where did Rheinmetall MG 60 originated ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Did nokia 215 has the series 30+ OS?,ASK WHERE { },lcquad +Gregg Toland cinematographed how many things?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . },lcquad +What type of government is elected in Kumta?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +List the birth city of the politicians of Democratic Party.,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Was Tommy Tucker's Tooth animated by Walt Disney?,ASK WHERE { },lcquad +"What team does John McGeever play for, which also employed Ben Dreith at some time?",SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +Give me the total number of lines owned by owner of Mwtro-Noth Railroad ?, SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri },lcquad +For which team do Guido Guerrini and Massimo Liverani currently play for?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +What is the governing body of Fort Monroe ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +List the common sports played by Polytechnic University of the Philippines Bataan and Jamiatu Muslim Mindanao ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +How many television shows are broadcasted on Fox Broadcasting Company?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . ?uri },lcquad +What are some tv shows created by Simon Fuller?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +What is the place of birth of the Michael Marder which is also the place of death of the Tigran Petrosian, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Who is married to Tony Ramo,SELECT DISTINCT ?uri WHERE {?uri . },lcquad +How many states are in the Mediterranean Basketball Association?,SELECT DISTINCT COUNT(?uri) WHERE { ?uri . ?uri },lcquad +What is the title of the Kakae and also the district of the Robert William Wilcox ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Who wrote the singles on the Main Course?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +State the religion of the person known for People's Bank (Sri Lanka) ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +To which US states does the roads belong which meet at the East Whiteland Township in Pennsylvania?,"SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x }",lcquad +In how many places can I find people who were the architects of the Dundas Castle?,"SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . }",lcquad +List all the children of Barbara Bush?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Name the notable work by Russell T Davis which is also the series of Doctor Who:Destiny of the Doctors ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Who oarent organization of Get TV is also the label provider of I Pray on CHristmas ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +What company made facebook messenger and is the platform where Words of Gold can be played?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . ?uri },lcquad +Who wrote the frost king?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Which company had built the rockets launched at the Cape Canaveral Air Force Station Space Launch Complex 17?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Name a royalty whose one of the child is Augustus and is associated with Publius Servilius Vatia Isauricus?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . },lcquad +Who trained the wrestlers who are billed in Wisconsin?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Which currency of Republic of Montenegro is also the currency of the French Southern and Antarctic Lands ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Where are the movies directed by Faisal Aman Khan recorded?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Where was the battle fought where 2nd Foreign Infantry Regiment participated ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +How many cities are around the sea in which the ionian sea flows?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?x },lcquad +Which team did Bill Murphy and Jean Segura play for?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +What is the administrative headquarters of Pulau Ujong ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +"What all is produced by companies in Douglas, Isle of Man?","SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x }",lcquad +Miguel de Cervantes wrote the musical extended from which book?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Which city amongst the one which belongs to Boundary Dam was the palce for Soccer Bowl '76 ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Which employer of Manu Cornet has alsoe written Google.by ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +What is the common official residence of Lezlee Westine and Arnold W. Braswell?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +Who had headed the governmental agencies whose admin HQ was in Niederkirchnerstrasse?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Where does the Kentucky cycle take place?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +"Whichi burial place of the Henri, Duke of Rohan is also the birth place of Michel Frutschi ?"," SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ",lcquad +Which river's source mountain is Baikal Mountains and is located in Laptev Sea ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +Among which sitcoms in which theme music is composed by Gary Portnoy is located in Massachusetts ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +Name the movies distributed by Warner Bros. and directed by Ridley Scott ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +"WHich region of the Providence Chapel, Charlwood is also the region of the Joseph Case High School"," SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ",lcquad +Name a river starting from arequipa region?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +What basketball league's champion is Golden State Warriors,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +Name some people working at someplace owned by News Corp.,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . },lcquad +Was Johnny Depp a member of Skull Gang?,ASK WHERE { },lcquad +What is the basketball team whose President's college is Brockport Golden Eagles?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },lcquad +Count the number of fileds of the scientist whose one of the interest is Chinese poetry ?, SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri },lcquad +What organisations purpose is Peace?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +In how many different teams have all those who have played as a defenceman been?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?uri },lcquad +How many teams have used the stadiums which have been rented by the Canadian Hockey team?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },lcquad +How many teams have LA kings players in them currently?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?uri },lcquad +Is Hard Candy Fitness one of the divisions of Moscow?,ASK WHERE { },lcquad +What is the television show whose developer is J. Michael Straczynski?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +list the organisation with motive for peace and environmentalism?,SELECT DISTINCT ?uri WHERE { ?uri . ?uri . ?uri },lcquad +What is the content license of Darcs ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Is Truth prevails the national motto of Czechoslovakia?,ASK WHERE { },lcquad +"Name a military unit whose command structure is United States Department of the Navy and garrison is Arlington County, Virginia?","SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri }",lcquad +Which company developed both Dart and Go?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +In which country did Philippe tesnire and judson huss die?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +List all the artist of albums which have been produced by Stephen Kozmeniuk ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Is Olyokma River the right tributary of Lena River?,ASK WHERE { },lcquad +Which colored race horses have won the Grand National?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +"What is common between sports played at Fr Agnel School and Jr college, and the genre of Virtual Kasparov?", SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +What are other famous works of the writer who created the Sarah Jane Adventures?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +What is the mascot of the alma mater of Deborah Crombie?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Where did the genres originate which can found in The Mudbloods?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +What is the resting place of the person who is the successor of James W. Hyatt ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Who wrote the mangas produced by Masahike Minami?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Which contnet license provider of Microsoft Office Picture Manager is also the game platform of Google Clud Connect ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +What is the mascot of military in Quezon city?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +"What all are in the states whose anthem is Ja, vi esker dette landet?","SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . }",lcquad +Which officers fought in the war of Siege of Fort Recovery?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +Which company builds Microsoft Azure and Microsoft Surface?,SELECT DISTINCT ?uri WHERE { ?uri . ?uri . ?uri },lcquad +return some players who have played in the NBA?, SELECT DISTINCT ?uri WHERE {?uri } ,lcquad +Name an airline with hub airports as Los Angeles International Airport and San Francisco International Airport?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +"Give me all office holders who finally retired in Montpelier, Orange, Virgina?","SELECT DISTINCT ?uri WHERE {?uri . ?uri }",lcquad +Give me a count on scientist who are known for garrison is Tennessee ?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?uri ?x . ?uri },lcquad +Does Ronaldinho play in the brazil's under 23 team?,ASK WHERE { },lcquad +"Which river starts from the county seat of Heathsville, Virginia?","SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri }",lcquad +Who owns the bank where Fabio Mercurio works?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Who owns the horses which have won the Timeform award?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +What are some fictional characters whose voice is in the peanuts movie?,SELECT DISTINCT ?uri WHERE {?uri . },lcquad +What religion do people of the country of Mahbuba Islam Rakhi follow?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +How many people used to play for Toronto Argonauts?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . },lcquad +How many different people have been in any political seat in places which are under the Indian Standard timezone?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },lcquad +"The sports team which played at the American Basketball League championship (1996-1998), have which stadiums?",SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Whose county seats are Mediolanum and History of Trier?,SELECT DISTINCT ?uri WHERE { ?uri . ?uri . },lcquad +What is the national origin of Dornier Aerodyne and Hirth Acrostar ?;, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Was Class Conflict an interest of Karl Marx?,ASK WHERE { },lcquad +Count the tenants of the stadiums owned by toronto.,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },lcquad +Name the president who has relations with Clinton family and had a lieutenant named Winston Bryant?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +What is the fictional character whose voice over is done by the animator of Dick Lundy ?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },lcquad +How many sports are played in organizations presided by Emanuel de Guzman?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?uri },lcquad +What are the home stadiums of the things Leonid Fedun has been the chairman of?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Is Akan spoken in Ghana?,ASK WHERE { },lcquad +Which region of English American is also the palce of Death of Brent Darby ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Who acted in the work written by Colin Brake?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Is Robin Gibb the singer of Oh! Darling?,ASK WHERE { },lcquad +List everything written in languages developed by EXperimental Computing Facility?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },lcquad +What are some movies whose score is composed by relatives of Bodhi Elfman?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },lcquad +Is the Chiva Bus by the Ford Motor Company?,ASK WHERE { },lcquad +List the series of the books whose author is K. W. Jeter.,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +What is the common university iof vanderbilt Commodores and also the college of hubert Wiggs ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +"Name the common architecture of the Grand Serail of Aleppo and Shaheed Minar, Kolkata ?","SELECT DISTINCT ?uri WHERE { ?uri. ?uri . }",lcquad +What are the prizes awarded to the main members of DisneyToon Studios?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +How many sports are played at the university whose president is Emanuel de Guzman?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?uri },lcquad +Give me the count of interests of the philosopher whose primary interest is Metaphysics ?, SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri },lcquad +Who was buried at St. Mary's Church and fought the battle of Benedict Arnold's expedition to Quebec ?,"SELECT DISTINCT ?uri WHERE {?uri . ?uri . }",lcquad +On which subjects does the author of the novel Thud! delve?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Who is the writer with notable works like Adventures of Huckleberry Finn and The Adventures of Tom Sawyer?,SELECT DISTINCT ?uri WHERE { ?uri . ?uri . ?uri },lcquad +Name the people living in a place governed by William W Brien?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . },lcquad +Name the river whose source is located in Ikelenge District and mouth in Mozambique?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +How many people won the Gold Medal of the Royal Astronomical Society?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . },lcquad +What are the relatives of the parliament member whose successor is Peter Thorneycroft?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Which river's source country is Zambia and mouth country is Mozambique?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +Was the Funky Lab Rat released in North America?,ASK WHERE { },lcquad +What is the main common interests of the Philip Novak and Timothy Morton?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +How many members are there of the order of Bacillales?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . },lcquad +Which program was on NBC network with executive producer as Glen and Les Charles?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +Moscow-Kazan high speed railway starts from which station?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Is Fluidinfo written in PostgreSQL language?,ASK WHERE { },lcquad +Which neighboring municipalities of Cologny has a mayor named Ester Alder ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . },lcquad +How many people work in the Massachusetts house of Representatives?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . },lcquad +Which countries came together to serve a greater purpose and founded South Asia Subregional Economic Cooperation?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Count the number of religions followed by Janta Dal members.,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },lcquad +Did Johann Gottfried Galle invent Neptune?,ASK WHERE { },lcquad +"Who is the founder of Wuropean School, Karlsruhe ?"," SELECT DISTINCT ?uri WHERE { ?uri } ",lcquad +Which football team is in a city where A J Clark was a builder?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },lcquad +Which city near to Elliott Bay was the death place of George F. Moore ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Where does Kafue and Shire river flow into?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +Through which label has Katy B released her singles?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +List the teams for which Bobby Hoppe played ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +How many other characters are there of the plays which has a characters name Joker (comics) ?, SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri },lcquad +Who first ascented a mountain of Cathedral Peak (California) ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Which awards did the children of Erik Bergman won ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Name the sharehoders of The National Herald ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Which writer of A streetcar Named Desire is also the author of The Catastrophe of Success ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +How many people are buried in the Mausoleum of Augustus?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . },lcquad +What are some famous works of the writer of The Second Coming?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +List the program genres of the sister stations of 97.1 WASH FM?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Which team's players have played in the national hockey league?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Which associated band of the Teddy Riley is also the performer of the Before I Let You Go?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Where was James McClure born ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Who is the operator of AT&T Park ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Whose music composer is signed up with Sony Music Entertainment?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . },lcquad +In which company is Raymond Conner at an important position?, SELECT DISTINCT ?uri WHERE {?uri } ,lcquad +Who hold stocks in the bank which is located at 731 Lexington Avenue?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Which labels signs up progressive rock bands?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +"Where does the railway tracks start, which ends in Kazan?",SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Name the branch of Carroll E. Lanier ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +what are some devices made by asus?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +Which former team of Franois Beauchemin does the Nathan Dempsey played for ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +What is the colour of Red Marauder ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +What is the draft team of Dale Mitchell (ice hockey) ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +"Give me a count of schools in Reading, Berkshire?","SELECT DISTINCT COUNT(?uri) WHERE {?uri . ?uri }",lcquad +Who are some cofounders of record labels with Frank Rogers?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +By whom is the broadcaster network Bounce TV founded?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Who is the scientist whose doctoral student is Erich Bagge?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +Who appointed the successor of Thomas Bee?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Was Buzz Williams the headcoach of the Marquette Golden Eagles mens team?,ASK WHERE { },lcquad +List books authored by Miguel de Cervantes and published by Francisco de Robles ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +List down all notable works of Neil Cross ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +What is the local authority of the Buckhurst Hill County High School is also the birth palce of Sarah hampion ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +what awards have been giving to Muhammad Yunus?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Who is the meaning of the name Isa which was also one of the subject of play The Prodigal Son ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +"Who are the parent of the people that has POD as Redding, Connecticut ?","SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . }",lcquad +Was saddam hussein at the rank of Mushir ever?,ASK WHERE { },lcquad +What are the things Eric Schiller known for ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +List the parts of Greater San Antonio?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +What is the president whose lieutenants are Winston Bryant and Joe Purcell?,SELECT DISTINCT ?uri WHERE { ?uri . ?uri . ?uri },lcquad +Where is Temenos Group founded ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Name some leaders of the parent organisation of the Gestapo?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +How many venues are located in the US?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . ?uri },lcquad +What are some neighboring cities of cologny?,SELECT DISTINCT ?uri WHERE {?uri . },lcquad +What religion is Kabir Suman from?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Does Kirk Hammett play the Gibson Flying V?,ASK WHERE { },lcquad +Who are the people who died in a place architected by Jens Jensen,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },lcquad +Who has Kelly Osbourne and Ozzy Osbourne as relatives?,SELECT DISTINCT ?uri WHERE { ?uri . ?uri . },lcquad +Name the television show whose subsequent work is Frasier and opening theme is Where Everybody Knows Your Name?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +Name the television show whose company is HBO and Playtone?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +Name the cover artist of the adventure of Tom sawyer ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Who did Bruce Bochy play for ? , SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Name the company which provides Outlook.com as service and also has a product named Microsoft Azure ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +Name the company with product named Microsft Azure and provides OneDrive as a service ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +What is the deathplace of the Anatoly Kharlampiyev which is also the death place of Lyudmila Buldakova?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +What is the Band whose band member is Mark Middleton?, SELECT DISTINCT ?uri WHERE {?uri } ,lcquad +Is Tamera Mowry the former band member of Voices?,ASK WHERE { },lcquad +List the actors of Lucy Sullivan Is Getting Married?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +How many people have worked in the band one of whose current member is Hynief?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?uri },lcquad +Enumerate all those who are in the Board of companies founded in New York?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?uri ?x . },lcquad +Name the awards that have been given to the writer made famous for Creature Comforts?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Murray Gold has composed music for how many things?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . },lcquad +In which wars did Percy Fitzwallace fight?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +What other awards have Becket fund for religious liberty winners received?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Who was the vice president under which elizabeth alexander served?,SELECT DISTINCT ?uri WHERE { ?uri . },lcquad +How many people have been presenters for NBC shows?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?uri },lcquad +"Name the river whose source region is North-Western Province, Zambia and source location is Ikelenge District?","SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri }",lcquad +Who is the compiler of British Gazette whose prime minister is also Peter Thorneycroft ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Name the states which have been billed by the wrestlers who has also billed Georgia ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +List the outflows of the lake whose one of the outflows is Benu river ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Name the television show with opening theme as Te Deum and is composed by Marc-Antoine Charpentier?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +Is Grand Bahama lie in the achipelago of the bahamas?,ASK WHERE { },lcquad +Who produced wizards vs aliens?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Who is the distributer of Rev ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Which city was founded by George Washington and John Forbes (British Army officer)?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +Which is the city closest to both the Lodaiska site and the home of David w brown?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +Is Michael Schumacher the first driver of the 1994 grand prix?,ASK WHERE { },lcquad +What are the books written by authors who died in Madrid?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },lcquad +What is father's name who also served in military of Carlene Carter?,SELECT DISTINCT ?uri WHERE {?uri . },lcquad +Count the number of broadcast area of the TV stations which serves in Agalga ?, SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri },lcquad +"In which wars army men awarded with the Croix de Guerre, fought?",SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Where is the residence of the governor of Bangkok ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Name the scientist whose supervisor was Ernest Rutherford and had a doctoral students named Charles Drummond Ellis?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +What is the scientist whose PhD students are Erich Bagge and erban ieica?,SELECT DISTINCT ?uri WHERE { ?uri . ?uri . ?uri },lcquad +Name the movies writtten by the group Monty Python ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +Where is Lao Plaza Hotel located?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Was Walt Disney the cinematographer of Mickey's Mellerdrammer?,ASK WHERE { },lcquad +Which sitcom's company is Paramount Television and is located in Cheers Beacon hill ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +Which mainter of Pandaruan Bridge is also the land of Malaysia junior Hockey league ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Which Tv series led to Frasier?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +Which writer has childrens named Mother Mary Alphonsa and Julian Hawthorne?,SELECT DISTINCT ?uri WHERE { ?uri . ?uri . ?uri },lcquad +What is the profession of William Luther Hill ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Name all the hubs of the airlines whose one of the hubs is Selangir ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +How many other school are there of the rugby players whose school is Michaelhouse ?, SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri },lcquad +In which country can I find the State Academic Opera and Ballet Theater and Baku Puppet Theatre?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . ?uri },lcquad +What are the films whose atleast one cast member died due to Colorectal cancer?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },lcquad +Who is the President of United World College of Costa Rica ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Which city has it's landmark as Cheasty Boulevard South?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +List down the opponents of Frank Stilwell?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Name the movie whose director is Ridley Scott and it's music composer is Vangelis?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +Where is Bogobiri House located ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +What is the religion of the leader of South Korean legislative election of 1992 ?,"SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . }",lcquad +Who is the writer of Neverwhere (radio play) ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +How many other key people are there of the non-profit organisations whose key people is Hillary Clinton ?, SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri },lcquad +List the stadium of the teams which uses Nea Smyrni as one of the stadium ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +How many currencies are in used in places where people speak French?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?uri },lcquad +Which football managers managed Middlesbrough F.C.?, SELECT DISTINCT ?uri WHERE {?uri } ,lcquad +"Who are some american football players whose high school is Oktoc, Mississippi?","SELECT DISTINCT ?uri WHERE {?uri . ?uri }",lcquad +Name the company founded in US and created Visual Studio ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +How many factions were involved in the battles fought by Arthur St. Clair?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },lcquad +Count the number of ingredient of the foods which have one of the ingredient is Pork ?, SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri },lcquad +What is the television show whose opening theme is Te Deum (Charpentier)?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +List the ideologies of the party of Boonchu Rojanastien?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +To which country do gabriel paris gordillo and gustavo rojas pinilla owe their allegiance?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +Who were the narrators of the albums which had Ringo Starr as one of the narrator ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +How many people have played for the ones who own the stadium of Bankers Life Fieldhouse?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?uri ?x . },lcquad +List the newspapers whose headquarters's time zone is Central European Summer Time.,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },lcquad +Where does the river end which starts in Mazabuka?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Count all american football players whose former team owns Lucas Oil Stadium ?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?uri ?x . ?uri },lcquad +What are the academic interests of the advisor of Paul Demiville ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Which awards are presented by Swedish Academy?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +Name the university whose teams have been managed by Albertin Montoya?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +what are some journals of academic Philosophy, SELECT DISTINCT ?uri WHERE {?uri } ,lcquad +Who is the writer of the Cavalcade of America and The United States Steel Hour ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +Where did the conflict take place where Liu Mingchuan fought?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Which rivers originate from Dowra?, SELECT DISTINCT ?uri WHERE {?uri } ,lcquad +What is the official residence of the Lula J. Davis which is also the death location of the John McTaggart (jockey) ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +What is the military rank of the commanders of Regiment of Mounted Grenadiers?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +To which series does the character of Londo Mollari belong?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +What company's leader is Edwin Catmull?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +How many different layouts do cars designed by Oliver Boulay have?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },lcquad +Whihc state of Timothy J. Roemer is also the location city of Dad's Root Beer ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +What is the type of Naval Station Bremerton ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Name the borough of the Bordesley railway station which is also the route end of the Birmingham and Oxford Junction Railway?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +What are some movies written by British writers?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },lcquad +Which university is led by Jay Gogue?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +Was Michael Schumacher a pole driver in the 1999 GP?,ASK WHERE { },lcquad +Count the number of artists who trained at the San Francisco Art Institute?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . ?uri },lcquad +What tv shows were born out of a collaboration of playtone and dreamworks?,SELECT DISTINCT ?uri WHERE { ?uri . ?uri . ?uri },lcquad +What games can be played in schools founded by Fr. Orlando?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Is Ethics the main interests of Henry David Thoreau?,ASK WHERE { },lcquad +Was Elizabeth Ann Seton canonized by Pope Paul VI?,ASK WHERE { },lcquad +List the leaders of the government agencies whose jurisdiction was German-occupied Europe.,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +List the cast member of the movies whose producer is Mark Johnson.,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Which city was designed by saleen Pator which is also the birht location of Jimmy Diggs ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Name the company whose products's predecessor is Boeing Vertol CH-46 Sea Knight?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },lcquad +What is the birth place of music artists which were associated with Albert Ayler ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +What is the religious affiliation of Wickramabahu Central College (National School) ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Name the nearest city to Lake Victoria?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Where is the tombstone of Johannes Gerhardus Strijdom?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +What is the common award won by Charles LeMaire and Eric Roth, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Was Gareth Southgate a manager of Middlesbrough F.C.?,ASK WHERE { },lcquad +What is the total number of builder of the military structures whose builder is also United States?, SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri },lcquad +Tell me the total number of organizations who maintain the bridges made by the malaysian PWD?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?uri },lcquad +How many shows does HBO have?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . ?uri },lcquad +How many people have been canonized by Pope Benedict XVI?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . },lcquad +What party was in majority of Fourth Legislative Assembly of Delhi?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Bud Adams owns which american football team?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +Whose work is in the Musee d'orsay?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +For which team did both Butch Metzger and Brian Horwitz debuted ? ,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +Does the Sicklefin lemon shark belong in the animal kingdom?,ASK WHERE { },lcquad +Does the stylistic origins of Plena lie in the Caribbean?,ASK WHERE { },lcquad +What are the famous Uni Toronto scientists known for?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Who used to skate with the pupils of Laureano Ibarra?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +How many books have been penned by Miguel de Cervantes?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . ?uri },lcquad +Name the river flowing through Reading and source place as Gloucestershire ?,"SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri }",lcquad +Count the band members of Skull Gang?,SELECT DISTINCT COUNT(?uri) WHERE { ?uri . ?uri },lcquad +In which teams have league members of the Czech Extraliga played previously?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Which country's people have graduated from Ghana School of Law?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +"What does the river flow into, whose left tributary is Bukovica?",SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +For which team does hunter pence play for?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Name the ground of Al-Rayan SC ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +In which cities were the chess grand masters born?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Which city's governing body is led by Bruce Harrell?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . },lcquad +"What band was Afrika Baby Bam a part of, and often performed with Q Tip?", SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Which siler medalist of the Tennis at the 2012 Summer Olympics Men's singles was also the flagbearer of the Switzerland at the 2008 Summer Olympics, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Who is the prime minister of the successor of Kingsley Wood?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +List the common relegion affiliation of khadra Haji Ismail and Yasmin khatun ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Where was Thomy Bourdelle born?,SELECT DISTINCT ?uri WHERE { ?uri . },lcquad +How many bands are based in London?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . ?uri },lcquad +Name few TV shows aired by Prime Time Entertainment Network?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +Which president of Lance Adams-Schneider had nickname Daniel O'Regan ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +WHo gave the lyrcis of Doonesbury ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Which series are Lennier and Londo Mollari both from?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +Who coached the marquet golden eagels during 2013, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Give me a list of computers whose CPU is in the US.,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },lcquad +"What is that something which made Breann McGregor famous, and Frank Thorne received as an award?", SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +"Which things have been located, where governance is Houston City Council?",SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . },lcquad +What beverages originate in Leuven?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +Who are the parents of Charles Phelps Taft II and Robert A. Taft?,SELECT DISTINCT ?uri WHERE { ?uri . ?uri . },lcquad +What are the different religions followed by presidents whose prime minister was Surayud Chulanont?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +How many prime ministers did the predecessor of Duncan Sandys serve?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },lcquad +Name the city served by Juhu Aerodrome ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +What is the settlement whose neighboring municipalities is Lancy and mayor name is Esther Alder?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +List the notable works of the writer of The Tony Randall Show ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +How many cars succeed the cars assembled in Canada?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?uri },lcquad +Where has the employee of Columbia Records worked ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +What is the birth place of the cast of Lagnacha Dhumdhadaka?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Whci co founder of Sea gayle Music is also the artist of Brad Paisley Discography /, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Which wine region of Bogdanua is the mouth country of Upper Neretva ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Which television show's network is BBC HD and is related to Doctor Who Confidential?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +Name the products of Den norske Bank ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +In how many places have people canonized by John Paul II died?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?uri },lcquad +"Where does the river flow into, which starts at the Sierra Madre de Chiapas?",SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +From which country did the Mauritius bank and the national commerce bank emerge?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +Who are the shareholder of the broadcast networks whose owning company is Jamie Kellner?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +The Prime minister who worked in the Khmer Issarak follows which religion?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Which country does league of Nguendula Filipe belongs to?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Is the Bucyrus MT6300AC assembled in north america?,ASK WHERE { },lcquad +Which rivers flow into the lower manhatten?, SELECT DISTINCT ?uri WHERE {?uri } ,lcquad +Who is the founder of Pittsburgh ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +What are the airlines whose hub is San Francisco International Airport?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +Who rented the stadium where the UFC 152 take place?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Which appliance has cpu from Freescale Semiconductor and Marvell Technology Group?,SELECT DISTINCT ?uri WHERE { ?uri . ?uri . ?uri },lcquad +What is the place where the mayor's wife is Jean-Marc Germain?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },lcquad +Was 2658 Gingerich invented in Harvard?,ASK WHERE { },lcquad +Which religions' people fought in the Miao rebellion?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Which universities are alma mater to Charles Plosser?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +What is the constituency of Santo Versace?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Count all the shows whose music composers are in Oysterhead.,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?uri ?x . ?uri },lcquad +List the significant building of the architect who also designed Kiev?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +How many other architect are there of the historic places whose architect is also Stanford White ?, SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri },lcquad +What is the deathplace of the rugby player who is the relatives of Anton Oliver ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +What is the alma mater of the Marshall Fletcher McCallie and has affiliation with Vanderbilt University Medical Center ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Who has had been the tenant of the stadium built by PCL construction firm?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Does the Amazon River start in Arequipa Region?,ASK WHERE { },lcquad +Is San Salvador Island a part of the Bahamas?,ASK WHERE { },lcquad +"List the people educated at Harvard-Westlake School and has resting place as Palo Alto, California?","SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri }",lcquad +Which companies published Super Mario Adventures?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +What is the television show whose producer is Stephen E. Ambrose?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +Which artist of Madagascar: Operation Penguin is also the writer of He's a Pirate ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Name the software whose operating system is Mac OS and programming language is C++ ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +In which state does the valley bordering the Modoc plateau lie?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Where was the designer of REP Parasol born?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Which religion is followed by people in the family of Meadow Sopranos?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +What religion does roshan ranasinghe and nhiek tioulong follow?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +How many cars are the predecessor of cars similar to the Pontiac G8?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?x },lcquad +What are some shows whose voice actors play the piano?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },lcquad +What is the birth place of the successor of Ella T. Grasso ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +From how many different places have participants of Breeders's Cup Turf come?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },lcquad +How many movies were cinematographed by Jordan Cronenweth?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . ?uri },lcquad +South Side elevated railroad and twin cities 400 are operated by which city?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +Who is the famous relative of Kelly Osbourne?,SELECT DISTINCT ?uri WHERE {?uri . },lcquad +In how many different stadiums are the seasons of the 2015 NA Soccer league held?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?uri },lcquad +What teams have Avangard Omsk's players played for?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Who is the player who plays for the team that has the Michigan Stadium?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },lcquad +How many athletic associations are there in all of the private universities?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },lcquad +In which cities can i find drinks similar to the IBC root beer?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Is Queen Latifah associated with Afrika Baby Bam?,ASK WHERE { },lcquad +Which royal person married the successor of Darius I?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },lcquad +What are some products manufactured by Sony? ,SELECT DISTINCT ?uri WHERE {?uri . },lcquad +What is the producer of the television shows whose channel is CBBC?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +List all the movies whose music has been made up with someone under RCA records?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },lcquad +Is N. C. Wyeth the illustration by of The Mysterious Stranger?,ASK WHERE { },lcquad +What cities are around the valley bordering Lake Mead?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +List the magazines published by Playbow Enterprises ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +In which series do I find Minbari species' characters?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +"Did James brown make the song Killing is Out, School Is In?","ASK WHERE { }",lcquad +What is the style of architecture of South Loop Printing House District ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +What is the university whose campus are Indiana and Iowa?,SELECT DISTINCT ?uri WHERE { ?uri . ?uri . ?uri },lcquad +Name the ssignificant buildings of Ivan Fomin ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +What are all the religions in which Jacob and Abraham are important?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +Is Robert Boyle a chemist?,ASK WHERE { },lcquad +Where did the relatives of David Hume study?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Which state of Tendaho dam is the headquarters of Ethiopian People's revolutionary democratic Front located ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +What prizes have been awarded to the relatives of Linn Ullmann?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +What are the television shows of a company headquartered in Geneva?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },lcquad +Name the television show whose distributor is Comedy central and the character voice is given by Isaac hayes ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +Give me the count of newspaper whose language is Sweedish and headquartered at stockholm ?, SELECT DISTINCT COUNT(?uri) WHERE {?uri . ?uri } ,lcquad +What are the cities located on the sea into which the Aegean Sea flows?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +In which areas did the pupils of Sylvain Levi work?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Name the movie whose producer is Michael Deeley and music is given by Vangelis ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +How many people are in the band with Juelz Santana?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?uri },lcquad +Name the partners of the models whose one of the partner is Thom Evans ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Who owns the broadcast network founded by CNN?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +List the writers of Tales of Suspense ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Which magazine has publisher as Jann Wenner?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +List the academic discipline of the journals whose one of the discipline is neuro imaging ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Who has authored books published by the Perkins school for the Blind?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Semani languages are spoken in which countries?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +What kind of games does Blizzard games develop?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +"How many different pole drivers are there, of the GPs when Renault was the first team?",SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?uri },lcquad +What is the label of Double Diamond (album) ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +"Where is the VP buried, which was served by Frederick Cooke?",SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Name the person whose child is Irne Joliot-Curie?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +How many destinations are covered by the airlines which also serves Europe ?, SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri },lcquad +Where can i find companies which were started in Toronto?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Name few companies where don berlin and michael sears have worked together?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +Name the university with mascot as Aubie and president as jay Gogue ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +How many things belong to phylum of Chordate?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . },lcquad +Did Gwo Ka originate in Western Africa?,ASK WHERE { },lcquad +People from how many political parties exist in Maharashtra?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },lcquad +What would be the most important creation which involved both Neil Cross and Russel Davies ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +With which musical artist is the music group which sung Mind Blowin' related to ? ,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Where did the office holder died who also have faith in Episcopal Church ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Who are buried in Rome and Mausoleum of Augustus?,SELECT DISTINCT ?uri WHERE { ?uri . ?uri . },lcquad +To which branch Edwin F. Hunter belong ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +"Which university has affiliations to Graham Holdings and Kaplan, Inc.?","SELECT DISTINCT ?uri WHERE { ?uri . ?uri . ?uri }",lcquad +Which band's past member are Joe Jonas and Nick Jonas?,SELECT DISTINCT ?uri WHERE { ?uri . ?uri . ?uri },lcquad +Who are the children of Abigail Adams?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Which things are Breann McGregor known for ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +what are some common games played at both Fr Agnel Multipurpose School and Vishwajyot High School?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +Who have done their PhDs under a National Medal of Science winner?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . },lcquad +List the profession of senate whose one of the profession is United States Coast Guard ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Who is known for are Battle of the Thames and War of 1812?,SELECT DISTINCT ?uri WHERE { ?uri . ?uri . },lcquad +Where is the headquarters of the public transit system which operators Go-to-card ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +How many people are there who have relationship with Kennedy family?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . },lcquad +"Name the company founded by Jim Harris located in Harris County, Texas ?","SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri }",lcquad +What is the total number of fictional characters whose created by Greg Daniels and series is The Office (U.S. TV series)?, SELECT DISTINCT COUNT(?uri) WHERE {?uri . ?uri } ,lcquad +Which local authority of Buckhurst Hill County High School is the palce of burial of Elizabeth Rhuddlan ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +In which city where there is a headquarters of Orient News and also Feras Saied died?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +"Who were the opponents of employees of Henry Howard, the Northampton Earl?","SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . }",lcquad +What newspapers's owners is Schibsted,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +Who is the common parent of Gettv and hypnotize mind ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Name a fictional character whose relative is Uncle Henry and species is Human?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +Which river inflow of the Cahora Bassa is also Batoka Gorge Hydroelectric Power Station's river ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +"Which cities come in the course of the river, into which Big Creek around Texas flows too?",SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +What islands are there on the Greater Antilles archipelago?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Was Zachary taylor a major general?,ASK WHERE { },lcquad +Name the military units whose command structure's headquarters is The Pentagon?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },lcquad +Which TV show's setting is in Massachusetts and is the subsequent work of Fraiser ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +Which bands are associated to David Paton?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +In how many teams have people previously played who play as defencemen?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?uri },lcquad +What is the Team Name of St. Viator High School ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Give me the count of tenants of the stadia whose one of the tenants is Toronto Furies?, SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri },lcquad +Who is the headcoach of 2013-14 Marquette Golden Eagles men's basketball team ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +To what nation do Victor Gunasekara and Anuruddha Ratwatte owe their allegiance?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +Who is the musician of Before I let you Go ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Who developed the programming languages designed by Rob Pike?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +"Name the military unit whose garrison is Arlington County, Virginia and command structure is United States Department of Defense?","SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri }",lcquad +Which races has the horse bred by Jacques Van't Hart participated in?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Is the Journal of Cerebral Blood Flow and Metabolism about Brains?,ASK WHERE { },lcquad +What are all the countires where food related to tuna salad is consumed ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +What is the layout of the automobiles whose designer company is Olivier Boulay?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Is the Caterpullar 797F assembled in North America?,ASK WHERE { },lcquad +which band was Roger waters in?, SELECT DISTINCT ?uri WHERE {?uri } ,lcquad +In which places can we find the people won the Project Runaway Canada?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Who is the coach of England national under-21 football team ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +"Which rivers end in Old Saybrook, Connecticut?"," SELECT DISTINCT ?uri WHERE {?uri } ",lcquad +"Where does the river end, into which the Rakitnica flows?",SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +"What does the bridge go over, which is in Katima Mulilo?",SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +What are the baseball players who played for San Francisco Giants?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +How many airlines have a hub at an airport run by LA World Airports?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?uri ?x . ?uri },lcquad +where is the thorington train station located?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Who is the person whose parent is Ptolemy XII Auletes?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +"What are the schools whose city is Reading, Berkshire?"," SELECT DISTINCT ?uri WHERE {?uri } ",lcquad +List the television shows whose network's executive officer is Steve Burke.,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },lcquad +With whom were the engagements of Alpine Brigade Taurinense?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Find the total number of tenants of the stadium whose tenants was Toronto Marlies?, SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri },lcquad +Whose relatives are Uncle Henry (Oz) and Aunt Em?,SELECT DISTINCT ?uri WHERE { ?uri . ?uri . },lcquad +What genres of games are available on the Commodore 64?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Who gave the voice for Allen Walker ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Which companies have Kumho Asiana Group as their parent company?, SELECT DISTINCT ?uri WHERE {?uri } ,lcquad +How many buildings are located in Toronto ?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . ?uri },lcquad +"Where does the river flows into, which starts in Gredelj?",SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +"What is the country which lies on the European route E8, and where Ragnhild Jolson was born?", SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +How many people have been the head coach for Middlesbrough FC?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?uri },lcquad +"Where do the people, famous for the Panathinaikos FC reside?",SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Who is the office holder whose resting place is Monticello?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +What was founded by pina Records which has name of Geography of Puerto Rico ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Is The Universe in a Single Atom a book about buddhism?,ASK WHERE { },lcquad +"Where is the tunnel, which is operated by BNSF railways?",SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Is Frontaccounting licensed under GNU license?,ASK WHERE { },lcquad +Terminal Station at Chattanooga is made by architects from which University?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +How many producers have casted Michael Jackson?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },lcquad +"Who is married to a Miss Louisiana, USA?",SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . },lcquad +What sports are played by school which owns Fr. Agnel Stadium ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +What is the major shrine of Jacques-Dsir Laval ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +What fictional character's species is American Pekin duck, SELECT DISTINCT ?uri WHERE {?uri } ,lcquad +What is the television show whose subsequent work is Crusade (TV series) and developed by J. Michael Straczynski?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +What is the county of Saint Lucia national cricket team ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Who is the Pole driver of 1997 Canadian Grand Prix ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +What is the common region of the braod cast area of ITV and nationality of Ajahn Thate ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Who is the president of United World College of Costa Rica ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Things going to the mediterranean sea also go where?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },lcquad +Who is the distributor of Rev (drink) ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +In how many different places are Brown haired models living?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },lcquad +Mouse Morris' horses have raced in which races?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +What are the television shows telecasted on the network which has headquarters at Atlanta?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },lcquad +Name the award given in Norway and presented by Swedish Academy ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +Which producer of Boeing F/A has Dennis Muilenburg as an important person ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . },lcquad +"Where is the assembly of Plymouth Savoy, and where Special 26 was recorded?", SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +What is an airport inside ontario?,"SELECT DISTINCT ?uri WHERE {?uri . ?uri }",lcquad +Is Queen Latifah the narrator of Arctic Tale?,ASK WHERE { },lcquad +"What is the career of George Arceneaux, Jr. ?"," SELECT DISTINCT ?uri WHERE { ?uri } ",lcquad +What are some shows by Comedy Central?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +What are the party of the politicians whose deputy was Chaudhary Devi Lal?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Which movies' music is composed by people associated with the band Yes?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },lcquad +What came before PlayStation 4 and uses PlayStation 3 system software as OS?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . },lcquad +"List the affiliation of Indian general election, 2004 (Andhra Pradesh) ?"," SELECT DISTINCT ?uri WHERE { ?uri } ",lcquad +How many religion's commanders have served in the Royal Thai Army?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },lcquad +"Who are the people which were the influencer of the person, who influenced Costanzo Preve ?",SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +What is manufactured by Asus and Sony togather?,SELECT DISTINCT ?uri WHERE { ?uri . ?uri . },lcquad +Name the TV show with theme music by Primus and broadcasted on Comedy Central ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +Count all the games whose distributors are located in America,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?uri ?x . },lcquad +What is the location of the pope whose major shrine is St. Peter's Basilica ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +List all the faiths that British Columbian politicians follow?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +What is the birthplace of the Ferrel Harris which is also resting palce of Green Wix Unthank?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +What is the river one of whose left tributary's native name is Arabic?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . },lcquad +What work has been directed by Orson Welles and distributed by RKO Pictures?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +What is the alma mater of Andrew W. Lewis ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Who is the spouse of Daniel Gibson? ,SELECT DISTINCT ?uri WHERE {?uri . },lcquad +Spanish harlem incident and girl from the north country were originally composed by whom?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +"Name the nearest city to the historic place which has Englewood, Colorado as one of them ?","SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x }",lcquad +What are the movies directed by Joel Schumacher?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +Where did the music genre of Harry and the Potters originate?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +To which political party do the children of Sonia Gandhi belong?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Name some relatives of the people studied in Manurewa High School?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Name a TV show judged by Jennifier Lopez and presented by Brian Dunkleman ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +What is the draft team of Antoine Bibeau ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +What are a few molluscas whose family is Buccinidae?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +What is the television show whose vocals are performed by April Stewart and Mona Marshall?,SELECT DISTINCT ?uri WHERE { ?uri . ?uri . ?uri },lcquad +How many have family as Ape and order (taxonomy) is Primate ?, SELECT DISTINCT COUNT(?uri) WHERE {?uri . ?uri } ,lcquad +From which team did Marv McFadden played ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +"Who studied at Harvard-Westlake School and has Henry E. Catto, Jr. as predecessor ?","SELECT DISTINCT ?uri WHERE {?uri . ?uri . }",lcquad +Name the licensee of the WRVU who has the affiliation of Monroe Carell Jr. Children's Hospital at Vanderbilt ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Is Rajya Sabha a house of parliament in India?,ASK WHERE { },lcquad +Who are the trainersof Candice Michelle?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Which constructor's team won the 1967 Mexican Grand Prix ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Where is the main ground of soccer seasons whose chairman is Ronaldo?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Which person belongs to the board of Howard Hughes Medical Institute?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +Who is the stock holder of the bank where Peter Grauer works ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Does the asiana airlines fly into the Gimhae International Airport?,ASK WHERE { },lcquad +Where is the head quarters of the owner of Hamline Avenue?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Who is the co-founder of the city where Owen Dougherty died?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +For which teams did the Hawai graduated players play their first game?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +What is the title of Kakae ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Which broadcast area of Mauritius Broadcasting Corporation is also the nationality of Michael Medor ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +What is the county of the road whose route end is Pahang ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Who wrote Heroman?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Name the person who died in Fair Lane ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +List the religion of people in the Cambodian human rights party?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +What relegious affiliation of Josiah Idowu-Fearon was canonized by john of Damasucs ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Which draft team od Dale Mitchell is also the tenant of Master Card center /, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +"What cities does the river goes through, whose tributary is the little black river in Arkansas?",SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Where did the ultimate fighter: a champion will be crowned tonight and ultimate fighter: team rousey vs team tate take place?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +Is Roger Federer the flagbearer of Switzerland at the 2004 Summer Olympics?,ASK WHERE { },lcquad +What show has judge as Randy Jackson sculptors as Simon Fuller?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +Which nation's engineers have graduated in Poland?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Give me a count of movies whose music composer is Bernard Herrmann?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . ?uri },lcquad +"What awards have been given to the artists coming out of the university of Melbourne, faculty of VCA and MCM?",SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +List the destinations of Novair International Airways ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Name the state of Timothy J. Roemer ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +What are all the religions that have been followed by the Sir Lankan attorneys?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Which awards have been given to the horse who sired Triplicate ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Where did the spouse of pmare ii die?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +What killed John Thompson Mason and Martino Martini?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +Into which water bodies does Lake Uniamsi outflow?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Which river does Katima Mulilo Bridge cross?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Which office holder's successor is Adrian A. Basora and child named Lori Black?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +What is the debut team of Tom O'Malley ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +In which country is Bocas del toro a capital of some region?,"SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . }",lcquad +What is the political party to which Purnima Banerjee is a member of??, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Jimmie Fisher and Winston Bryant were governors under which president?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +What is the headquarters of the public transit system which is the section of Red Ahead ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +List the leaders of all the cities through which the Ganga river flows ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Did Christian Barnard study in the University of Minnesota?,ASK WHERE { },lcquad +Who has written works found in the Gangan comics?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +What is the currency of Republic of Montenegro (1992-2006) ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +What is the device whose successor's CPU is by AMD?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },lcquad +What is the club of Perianne Jones ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +What awards did the founder of Grameen Bank win?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +What television show is aired on channel Sirius XM Holdings?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +How many have order (taxonomy) as Bacillales and division as Firmicutes are there?, SELECT DISTINCT COUNT(?uri) WHERE {?uri . ?uri } ,lcquad +What is the movie whose producer is Michael Deeley and directed by Ridley Scott?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +Which manufacturer of Ford Y-block engine is the parent of Ford Air Transport Service ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Which governing body of the Oahu Railway and Land Company is also the military branch of the Jimmy Quillen ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Which arena of WPC Dynamo Moscow is the death palce of Mikhail Voronin ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Name the TV show with Simon Fuller as artist and Fox as the channel ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +list the software which works on both the OS - Microsoft Windows and Mac OS ?,SELECT DISTINCT ?uri WHERE { ?uri . ?uri . },lcquad +Who are the opponents of graduates of the Middle Temple?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +What religions are followed by economists?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +What are some important works of US citizens?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Name the rivers whose source country's capital is Lusaka?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },lcquad +Which sports are played typically in private schools?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +What is the state of the senator whose successor is Nathaniel P. Hill ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +How many shows is Russell Davies known for?,SELECT DISTINCT COUNT(?uri) WHERE { ?uri . ?uri },lcquad +"Who manages the operator of Norman Park Branch, CTA?",SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +What is the casting of the movie directed by Justin Zackham ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Name the island with archipelago as Society Islands and has the largest city named Faaa ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +List all the mmebers of Mekong River Commission?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Name the actors of the TV show which has an episode named The Five ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +How many religion's people have died in Malaysia?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },lcquad +Name the HBO TV show written by Erik jendresen ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +How many different currencies are used in the places governed by the president of France?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },lcquad +List the team for which Doug Acomb played ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Which architect of Marine Corps Air Station Kaneohe Bay was also tenant of New Sanno hotel /', SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Which sects people are part of local political parties which fall under the International Muslim Brotherhood?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +List common systems are developed by of the Google Videos and written by of the Google Web Toolkit ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +For which games are Sam Loyd and Eric Schiller both famous?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +Is Peter Piper Pizza in the pizza industry?,ASK WHERE { },lcquad +Name the artist who made Dream Dancing and is often associated with Joe Pass?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +Who is the office holder with deputies as Neil Brown and Andrew Peacock?,SELECT DISTINCT ?uri WHERE { ?uri . ?uri . ?uri },lcquad +Where did these popular aeroplanes - Focke Wulf 260 and Start+Flug H 101 originate?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +Which television show 's producer is Stephen E. Ambrose and written by Erik Jendresen?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +Who created the Women in the Garden and also the L'Enfant a la tasse ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +Which famous horserace has seen both Fergie sutherland and the illustrious War of Attrition?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +Tell me the name of the Prime Time Entertainment Network's TV show whose Artist is Christopher Franke ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +How many other battles have the military person fought whose one of the battles is World War II ?, SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri },lcquad +Whose network's parent organisation is Comcast?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . },lcquad +Is William H Blanchard buried in Colorado?,ASK WHERE { },lcquad +Which cport of Vishwajyot High School is also the genere of Battle chess , SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +In which state is the Channel district?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Who was in the missions of Apollo 11 and Gemini 8?,SELECT DISTINCT ?uri WHERE { ?uri . ?uri . },lcquad +What is the total number of other tenant of the stadia whose one of the tenant is Raptors 905?, SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri },lcquad +Where can one find the Dzogchen Ponolop Rinpoche?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Who is the stockholder of the road tunnels operated by the Massachusetts Department of Transportation?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +What are the awards won by the film director of Saraband ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +What is the almamater of the president whose vice president was Enrique Jos Varona?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +What is the route end of Birmingham and Oxford Junction Railway ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Where did the Vitis Vinifera grapes originate?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +How many people are there whose children died in Indiana?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?uri ?x . ?uri },lcquad +What is the military branch of the William French Smith which is also the branch of Pierre R. Graham ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +What is the river whose source is Lake Ontario?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +Whichlocation city of the Denver Broncos is the palce of birth of Steven Clark Cunningham ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +What is the religion of the person who founded the Emel magazine?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Give the name of the managers of England national under-20 football team and England national under-21 football team?,SELECT DISTINCT ?uri WHERE { ?uri . ?uri . },lcquad +How many cities are around the sea in which the the fig tree bay meets?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?x },lcquad +is blue lagoon island a part of the bahamas achipelago?,ASK WHERE { },lcquad +Name the movies distributed by RKO Pictures and has music composer as Bernard Herrmann?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +Did the New Way party merge in the One Israel party?,ASK WHERE { },lcquad +How many pole drivers have been there in grand prixes where first driver was Damon Hill?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?uri },lcquad +Where are jockeys in Dubai World Cup from?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Who owns the newspaper which was founded by Nehru?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +To which places do the flights go by airlines headquartered in the UK?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +What is the magazine which have been founded by Ralph J. Gleason?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +Is Seattle the Ship builder of USS Marmora (IX-189)?,ASK WHERE { },lcquad +Is Tirana the largest city of Albania?,ASK WHERE { },lcquad +In which cities can the beverage related to Barq's be found?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +What is the birth place of the astronaut whose mission was the Vostok programmer?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Count everyone who studied at an institute which are in Suburbs?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?uri ?x . },lcquad +Where did Whitney Wistert debut?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +What is the major shrine of the monarchs whose successor is Dragimir of Travunia and Zachlumia?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +How many television shows have Fox Broadcasting Company as their channel?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . ?uri },lcquad +What is the river whose mouth locations are Arctic Ocean and Laptev Sea?,SELECT DISTINCT ?uri WHERE { ?uri . ?uri . ?uri },lcquad +What are some wars fought when Chung Il Kwon as the country's prime minister?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },lcquad +Where was the person born who died in Bryn Mawr Hospital?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +What is the faith of the Ajith Perera and religious affiliation of the Neungin High School?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Who was in military unit which played the role of Air interdiction?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . },lcquad +Who are the current members of Insects vs Robots?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Is Ombla originate in Croatia?,ASK WHERE { },lcquad +Greater Napanee is the home town of what people?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +"What place did Edwin Adams die at, which gave birth to William A Purtell?",SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +Name the nationalteam of Trn Vit Hng ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Which designer of RENFE also owns Renaissance Center ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Whihc uni did Joshua A. Siegel attend ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +How many books are written by the author who is famous for Novelas Ejemplares?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?uri ?x . ?uri },lcquad +Name the rivers who originate from Essex?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +Companies founded in Taiwan have typically which divisions?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Did Timm Gunn guest in Sunrise (HIMYM)?,ASK WHERE { },lcquad +"to which university did both, the Stanford Cardinal and Gerald Reaven go?", SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Name the nearest city to David W. Brown House ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +where did Deion Sanders debut?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +What cities are nearer to Fuountain Lake Farm?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Who are the characters of Batman Live?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Which artists trained in San Francisco Art Institute?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +What is the owning organisation of the Ford Kansas City Assembly Plant and also the builder of the Ford Y-block engine?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Name the country with currency as Aureus ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +what awards have been given to A. Peter Dewey?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +How many shows belong to the network one of whose sister station is Cartoonite?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?uri ?x . ?uri },lcquad +what has been developed by John Fanning?, SELECT DISTINCT ?uri WHERE {?uri } ,lcquad +Muhammad Yunus has won how many awards?,SELECT DISTINCT COUNT(?uri) WHERE { ?uri . },lcquad +List the associates of bands which have a label by Motown ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Who wrote the musical whose composer is Emil Dean Zoghby?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +"Count the units garrisoned at Arlington County, Virginia.","SELECT DISTINCT COUNT(?uri) WHERE {?uri . ?uri }",lcquad +What is the faith of Kwai Chang Caine ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Who is related to Kelly Osbourne & Ozzy Osbourne?,SELECT DISTINCT ?uri WHERE { ?uri . ?uri . },lcquad +What are the houses of the legislature where the leader is called Pullaiahgaripalli ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Which serving railway line of the Daund Junction railway station was also the place where 99 (2009 film) was recorded ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +List the ethnicity of Riley Reid?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Which shows are from a company whose subsidiary is Viacom Productions?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },lcquad + Giuseppe Bertello and Pietro Parolin are leaders of which place ?,SELECT DISTINCT ?uri WHERE { ?uri . ?uri . ?uri },lcquad +What is the university whose campus is Mount Moosilauke?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +How many religions are followed by the group whose architectural style can be seen on Sanggar Agung?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?x },lcquad +How many things are written in C++?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . },lcquad +Name the garrison of the Western Naval Command and line of the Vadodara Junction railway station ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Who are the shareholder of the soccer club for whom Steve Holland plays?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Which city located on Mediterranean Sea is also the stadium of Panionios G.S.S. season ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Was Don't Bring Me Down recorded in West Germany?,ASK WHERE { },lcquad +Through which cities do the rivers starting at the Montauk State Park flow?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +How many ideologies do the political party of Boonchu Rojanastien hold?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?x },lcquad +"What are the hubs of PLUS Helicopter Services, a highway helicopter unit of PLUS Expressways?", SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Name the movies for which music was given by Geoffrey Burgon and distributed by Cinema International Corporation?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +Is Henry David Thoreau interested in Politics?,ASK WHERE { },lcquad +Among the companies who has product named Chinook who has a key person as Dennis Muilenburg ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +Which country's leader is Giuseppe Bertello?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +Who wrote the subsequent work of One Day at a Time (Em's Version) ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Name the TV shows with network as NBC and company as Paramount Television ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +Name the fictional character whose voice's animator is Hardie Gramatky?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },lcquad +Which license provider of MSX basic is also the designer of Language Integrated Query ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Who are the architect of the stadium whose one of the architect is louis D. Astorino ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Who are the astronauts associated with NASA?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +What is a common ingredient used in boyt Blodpalt and Kaszanka ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +Who is the partner of Rob Patterson?,SELECT DISTINCT ?uri WHERE {?uri . },lcquad +How many politicians are there from the city of Ganges?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },lcquad +To which american football teams does the Heinz Field serve as home stadium?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Which architect of the Marine Corps Air Station Kaneohe Bay is the branch of the Burnet R. Maybank?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Which movies's screenplay is written by Akiva Goldsman,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +How many TV shows are similar to the ones belonging to fantasy genre?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?uri ?x . ?uri },lcquad +"Give me all commanders which had an important role in both, the Battle of Fort Stephenson and Battle of the Thames?",SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +How many developers were involved in creating games whose score is composed by Gerard Marino?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },lcquad +Which sea is surrounded by Rostock and Kaliningrad?,SELECT DISTINCT ?uri WHERE { ?uri . ?uri . ?uri },lcquad +Which television show's developer is Brian Graden and voices to the character is by Isaac Hayes?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +How did the child of Stevens T. Mason die?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Does the Ontario International Airport serve the Inland Empire?,ASK WHERE { },lcquad +Is semnani one of the languages spoken in Iran?,ASK WHERE { },lcquad +What is the nickname of the home stadium of Angels Toru?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +What is the television show whose executive producer is Douglas Netter?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +List out the people who are related to the relatives of Jared Kushner ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +List all the doctoral student of the scientist who has advised john Bowlby ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +To which series does the book belong which came after the Blade Runner 2?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +In which city did The Ultimate Fighter: Team Rousey vs. Team Tate take place ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Where was Sino-French War fought ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Who did Daniel Gibson marry?,SELECT DISTINCT ?uri WHERE {?uri . },lcquad +What is the political party of the daughter of Jawaharlal Nehru ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Name the river with source as Shannon Pot and its mouth is located in Limerick?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +What is the organisation whose purposes are Environmentalism and Peace?,SELECT DISTINCT ?uri WHERE { ?uri . ?uri . ?uri },lcquad +Count the number of sports team members which have player named Matt Williams ?, SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri },lcquad +How many different people own the Timeform award winners?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?uri },lcquad +What religions do diplomats typically follow?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Guggenheim family is the cofounder of a company that invested stocks in which baseball teams?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },lcquad +Was John muir one of the first to ascend a mountain on Mt hoffmann?,ASK WHERE { },lcquad +Which city is known for the people working in the western penn hospital?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +In which country does the publishing house exist which was cofounded by Panos Loannides?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Name the team which is owned by Dafenham wind turbines and stood first in 1967 mexican Grand Prix ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Which education center Sidney Catlin Partrodge attended which was also the alma mater of Lisa Brummel ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +What sports can be played in Kharghar's schools,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Which ethinicity of Riley Reid is the state of origin of Holmes Colbert?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Was John Boehner the winner of the US House of Representatives elections in Ohio in 2010?,"ASK WHERE { }",lcquad +Which american football team has stadium as O.co Coliseum?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +How many subjects are covered in the publications of Doubleday?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },lcquad +In which city of Pittsburg Steelers was the Congress of Inductrial Organization founded ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +What is the hometown of the residents of Martha's vineyards?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Name the sea into which Danish Straits flows and has Kaliningrad as one of the city on the shore ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +Name the team manger of Middlebrough F.C season 2006-07 ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +What city has the football team in which Lee Robinson debuted?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Who is the owner of the bank which owns Bloomberg Radio?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Which companies were behind the renovation of McKechnie Field ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +"Who was the coach of marquette Golden Eagles men's basketball team-2012,13 season ?", SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Miluk and Cayuse are still spoken in which part of the world?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +Which governer of Winston bryant is also the president of Carl Stokes ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +List the sports of PATTS College of Aeronautics which are of interest of Jon Speelman ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +What is the home stadium of the club coached by Justine Omojong?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Which are the predecessors of the cars which are similar to the Oldsmobile 88?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Name a queen whose parent is Ptolemy XII Auletes and consort is Ptolemy XIII Theos Philopator?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +Which show's theme music was composed by Primus and voiced by Isaac Hayes?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +"Who is the chancellor of the university whose campus is in Woodlane, New Jersey ?","SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x }",lcquad +Name the mountain whose parent peak is located in Mexico.,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },lcquad +List the ingredient of Blodpalt ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +List the developers who has contributed to both GNOWSYS and GNU TeXmacs ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +List the served region of the organisations of Trade association.,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Is Hyundai Lavita assembled in Malaysia?,ASK WHERE { },lcquad +Who composed the music for Tonight's the Night ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +How many things are made by companies who produce mass media articles?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?uri ?x . },lcquad +What awards have been given to race horses bred by Bert Michell?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Whose mayors are affiliated with Christen-Democratisch en Vlaams?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . },lcquad +What is the common nationality of Viveka Babajee anad Ronny Vencatachellum ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Is the Hyundai Lavita assembled in Ulsan?,ASK WHERE { },lcquad +Which party won the elections when Y.S. Rajasekhara Reddy was in power?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Where does the river begin whose left tributary is Krapanski Potok?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +What are the notable commanders of the army whose one of the notable commanders is Paul Hausser?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Name the source of Raa ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Does Fa'a' International Airport serve tahiti too?,ASK WHERE { },lcquad +Who is the producer of Frampton's Camel ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Name the directors of Lennon Legend: The Very Best of John Lennon (DVD) ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +What is the political party of Arun Chandra Guha and Indira Gandhi?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +To which country is Svetlana Navasardyan from?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +What is the alma mater of the scientist who is known for Rational analysis ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Who is the owner of Chelsea F.C. ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +In how many places has Don R. Berlin worked?,SELECT DISTINCT COUNT(?uri) WHERE { ?uri . },lcquad +For how many movies are there whose musicians home town is in Volos ?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?uri ?x . ?uri },lcquad +"In all the places with a stagecoach, where is a Peetz Table Wind Energy Center located too?","SELECT DISTINCT ?uri WHERE { ?uri. ?uri . }",lcquad +"Name the fictional character whose relatives are Huey, Dewey, and Louie and is of species American Pekin duck?","SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri }",lcquad +Who is the owner of the website which has the label Seed Eight ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +In which country is Sierra del Merendin?,SELECT DISTINCT ?uri WHERE { ?uri . },lcquad +"What is on the border of the places which fall under crook county municipality, oregon?","SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . }",lcquad +Which is the university of Vanderbilt Commodores ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +"Whose relatives are Clan McDuck and Huey, Dewey, and Louie?","SELECT DISTINCT ?uri WHERE { ?uri . ?uri . }",lcquad +What musicians are signed up with colpix records?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +Who is the person that first ascented the Cathedral Peak and Mount Hoffmann?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +What currencies are used in the country whose capital is Podgorica?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +How many other home stadium are there of the soccer club whose home stadium is Luzhniki Stadium ?, SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri },lcquad +Where was William Anthony trained ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Which composer of Motorpsycho Nitemare has also composed The time are A-Changing ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +What river is it whose source is Dowra?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +"What is the religion of the president who won the Mongolian legislative election, 2004 ?","SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . }",lcquad +Give me everything owned by networks which is lead by Steve Burke?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?uri ?x . },lcquad +What is the municipality of Homestead Grays Bridge ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +"What religion do the politicians follow, who graduated from the Yokkohama Nationaal University?",SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +"Who is the narrator of The Incredible Hulk , 1982 TV series ?", SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +What sports are played in schools where Swahili is the official language?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Which interest of Philip Novak is the relegion of Vesak ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Count all the ethinic group who speaks language which belongs to Anglo-Frisian language family ?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?uri ?x . ?uri },lcquad +What is the area of the Tar Heel Sports Network which is official residence of the Michael Nichols (photographer) ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Cologny and Lancy are the neighboring municipalities of which place ?,SELECT DISTINCT ?uri WHERE { ?uri . ?uri . ?uri },lcquad +How many artists have their works in the Sao Paolo Museum of Art?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?uri },lcquad +VP-8 and VP-10 shares which command structure ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +What is used as money for French Southern and Antarctic Lands is also the product of the Karafarin Bank ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Give me the total number of membership of the organisations which have memebers as Azerbaijan?, SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri },lcquad +What is the content licence of MSX BASIC ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +What are the central characters in spy kids series?,SELECT DISTINCT ?uri WHERE {?uri . },lcquad +Which comic characters were created by Paul Dini?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +who owns the ship Victoria?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Where was the predecessor of Sevan Ross born?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Which city council owns the Ted Williams tunnel and Leonard Memorial ridge?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +Where is the school which is the rival of Somerset Berkley Regional High?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +How many soccer manager have been in the Spain nation football team?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . ?uri },lcquad +Name the common alma mater of the Henry Morton Dexter and Jack McGregor,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +What are some companies which are founded in Dallas Jurisdiction?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },lcquad +How many bands collaborated with artists who signed up with EMI?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?uri },lcquad +What is the purpose of New Zealand Chess Federation ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +How many TV shows are of the company which are of company which is a subsidiary of Big Ticket Entertainment ?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?uri ?x . ?uri },lcquad +Who operates twin Cities 400 ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +What is the city of the Maine School of Science and Mathematics is also the resting place of Charles A. Boutelle ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Give me a count of royalties buried in Rome ?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . ?uri },lcquad +In how many places are Marjas found?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?uri },lcquad +List the soccer players whose current team has the ground Stoke-on-Trent.,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },lcquad +Which are the countires where Pioneer Corporation has flourished?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Who is the president of Carl Stokes nad Wyche Fowler ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Is God Save the Queen the national anthem of United Kingdom?,ASK WHERE { },lcquad +List few Swedish language movies ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +Was christina crawford trained by Booker T?,ASK WHERE { },lcquad +What is the currency of Kerguelen Islands ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +What are the musicals whose musicians worked under Sony Music Entertainment?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },lcquad +Whose shrines are in a place governed by Justin Trudeau?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . },lcquad +What are the academic interests of the past members of Senser?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Who is the leader of Hackweiser ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +In which city is the sister station of KTXY located ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Where was the successor of Hank Brown born?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Name the constituency of Jonas Gahr where Sverre Krogh was born ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +What is the common battle fought by Stephen Urban and Ali Habib Mahmud ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +What is the relegious affiliations of Katyayana ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Where was the engineer born who manufactured EP R.E.P. 1?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +who all have been a manager of english under twenty one football team?, SELECT DISTINCT ?uri WHERE {?uri } ,lcquad +What is the military conflict whose commanders are John McEwen and Phm Vn ng?,SELECT DISTINCT ?uri WHERE { ?uri . ?uri . ?uri },lcquad +Which party has come in power in Mumbai North?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Name the tv show with judges Randy Jackson and Jennifer Lopez?,SELECT DISTINCT ?uri WHERE { ?uri . ?uri . ?uri },lcquad +What is the largest city of the country which hosted the 1951 Asian Games?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Which royalty was married to ptolemy XIII Theos Philopator and had mother named Cleopatra V ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +Whose theme music was composed by a band which collaborated with Phish?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . },lcquad +Is morrissey in the smiths?,ASK WHERE { },lcquad +Which administrative headquarters of the Pulau Ubin is also the resting place of the Nicole Lai, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Where did the beverages sold by Refriango originate?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Who built the stadium which was rented by Costa Rica national football team?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +In which country does the Auckland rugby union team play ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +"What is the serving railway line of Warwick railway station, Perth ?"," SELECT DISTINCT ?uri WHERE { ?uri } ",lcquad +"What is the radio show created by Timoteo Jeffries, about?",SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +"Where are all the protected areas near Bend, Oregon?","SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x }",lcquad +Was True Grit a novel of the western genre?,ASK WHERE { },lcquad +Which notable series of Russell T Davies is also the series of Short Trips: A day in the life ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Which battles were fought under the president when Chung Won Shik was the prime minister?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +"Which office holder's resting place is in Palo Alto, California and was succeeded by Adrian A. Basora ?","SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri }",lcquad +which movies have been published by Cinema International Corporation?, SELECT DISTINCT ?uri WHERE {?uri } ,lcquad +What is the total number of other destinations of the airlines whose one of the destinations is Mediterranean Sea?, SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri },lcquad +Count the total number of academic discipline of the journals whose one of the academic discipline is Neuroimaging ?, SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri },lcquad +List the award which have been won by both Charles LeMaire and Nick Park ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +What are some cities which have a Ferris wheel?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Name the movie who has screenplay by Akiva Goldsman and is edited by Mark Stevens ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +Count the movies in Swedish language?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . ?uri },lcquad +Give me the total number of television shows whose theme music composer is Julian Gingell and created by Simon Fuller?, SELECT DISTINCT COUNT(?uri) WHERE {?uri . ?uri } ,lcquad +Which cloud platform of Google cloud connect also provides services to 21Vianet ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Name the office holder whose constituency is Haight-Ashbury?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +Name the loocation of Lekh Castle which is also the location of SamurAbsheron channel ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Count the number of families of the Animal kingdom.,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },lcquad +What is the political party of the person succeeded by A.K. Singh?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Who is the head coach of the teams in Middlesbrough FC?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +To which uni. did sidney c patridge and cyril hume both once went?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +People in the royal Thai army follow which religion?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Was Lucrezia Tornabuoni the mother of Lorenzo de' Medici?,ASK WHERE { },lcquad +Who are the producers of the movies which has music by Gary Chang ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Where was Special 26 recorded ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +How many movies music composers are associated with Demis Roussos ?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?uri ?x . ?uri },lcquad +To which nation did David Animle Hanses owe his allegiance?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +What is the alma mater of the actors of The God Who Wasn't There ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +List some musicians associated with famous guitar players?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +What are the airlines whose hub airport is operated by the Los Angeles World Airports?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },lcquad +Which company's cars are assembled in Colombia?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Who directed The Haunted House ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Count all the different purposes followed by the different NGOs.,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },lcquad +"The players born in Bellaire, Ohio have played for which team?","SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . }",lcquad +What is the common ideology followed by Katyayana and Palang Dharma Party ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Count the tenants of MasterCard Centre?,SELECT DISTINCT COUNT(?uri) WHERE { ?uri . },lcquad +who are starring in the movies written by Mark Sandrich ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Count the number of religions followed by BJP members.,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },lcquad +What is the mascot of the rival school of Sullivan Central High?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +What award has been awarded to both Dion Beebe and Charles LeMaire?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +What is the birth name of Putri Raemawasti ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +What is the party of the politicians whose children is Sanjay Gandhi ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Name the tenants of MAsterCard center wich is also the draft team of Antoine Bibeau?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +"What is the number of occupation of the people who died in tampa bay, florida?","SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . }",lcquad +Who was the United States president who also served as a governor of Indiana Territory?, SELECT DISTINCT ?uri WHERE {?uri } ,lcquad +List the people who were born in Gelnhausen and graduated from Pepperdine University?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +Musical artists who are associated with Ren & Angela were born where ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +What religion do the Wickramabahu Centeral College and Neungin High School both follow?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +Who designed the language integrated query?,SELECT DISTINCT ?uri WHERE { ?uri . },lcquad +Name the debut team of Dan Otero ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Who started at the pole position in both 1997 canadian grand prix and the 94 spanish one?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +Who founded the Not on our Watch NGO?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +What is the name of the artist which worked on the subsequent work of Ella Loves Cole ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Which company owns Sony bank ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +"What state was Cyrus Mann born in, and has the famous Downriver ?",SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +Who is a religious figure titled superior general?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +"List the employments of people who died in Tampa, Florida.","SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . }",lcquad +What are some famous veterinary physicians known for?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +List the movies edited by Julian Doyle in which music was composed by Geoffrey Brugon ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +Name the children of the person who is the star of The Weathered Underground ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Which owner of Chelsea F.C also owns Evraz ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Did Umkhonto we Sizwe had Nelson Mandela as a commander?,ASK WHERE { },lcquad +Name the office holder with associate as Marcus Calpurnius Bibulus and has a kid named Augustus?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +What are the movies whose screenplay is done by Eric Roth?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +What is the total number of writers whose singles are recorded in Miami?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },lcquad +What religions are followed by members of the societies whose architectural influences can be seen on the Sanggar Agung ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Who is the producer of album which has the song Money?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +List the Sci-fi TV shows with theme music given by Ron Grainer?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +What is the company to which Fusajiro Yamauchi proprietor to ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +Who is the writer of mark twain Tonight ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +How many members are there in the European Go Federation?,SELECT DISTINCT COUNT(?uri) WHERE { ?uri . },lcquad +Was Kevin Rudd the PM of Julia Gillard?,ASK WHERE { },lcquad +Daniel L D Granger and Job Durfee have based their political career in which US state?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +What is the mascot of the handball teams in the Turkish Handball Super League?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +What city was recorded in Live in detroit which is also the official residence of ken Holland ?," SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ",lcquad +Marika Gombitov makes songs in which languages?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +What are some musical artists associated with the ones signed up with EMI?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Name the river which flows through the closest city of Mount Raimer ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Name the scientist whose supervisor also supervised Mary Ainsworth?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },lcquad +What are some relatives of armymen who died in Germany?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Deion sanders and Hinkey haines debuted their career with which common team?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +Which garrison of East Indies Station is also the route end of Mumbai Vadodara Express ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +To which political party does Virendra Kataria belongs ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Copley Medal has been awarded to which scientists?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +"What is the total number of awards whose presenter's headquarters is Beverly Hills, California?","SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?uri ?x . ?uri }",lcquad +Who is the narrator of The Price of Beauty ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Does Dan River flow into the Jordan Valley?,ASK WHERE { },lcquad +Who is the producer of the device which is the operating system of Now TV ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +How many artists have collaborated with famous guitar players?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?uri },lcquad +How many politicians live in India?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . ?uri },lcquad +What is the base currency of the country which operates the Marion Dufresne?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +What is the region served by the governor of Stephen L.R. McNichols ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Who operates Liverpool Playhouse ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Who has composed songs produced by Terry Melcher?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +To which series does Lost special belong to ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +How many albums did the maker of The Band produce?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?uri },lcquad +List few musical artist whose notable instruments are Ludwig Drums and Remo?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +How many rivers start in an English speaking country?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?uri ?x . ?uri },lcquad +For a position in which institution were both Jack Ryan and Robert sarvis both appointed?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . ?uri },lcquad +Where Everybody knows you is the theme album of which show ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Food in which countries has shallot in it?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +"Which rivers have source origins asnorth western, Zambia ?","SELECT DISTINCT ?uri WHERE {?uri . ?uri }",lcquad +Organization holding stocks of Galician and German wikipedias?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +"Name the river with Readin, Brekshire in its path and mouth place is Sothend-on-sea ?","SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri }",lcquad +"Alexander Magleby, a rugby player is alma mater to which university?", SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Is Amharic the official language of Ethiopia?,ASK WHERE { },lcquad +What sport played at Islamic azad uni employes Craig Van Tilbury?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +List the products of the company which published Tweenies: Game Time.,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +List the agencies located someplace lead by Alex Chalk.,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },lcquad +What religion are the characters of Absolutely Fabulous from?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +What are the movies whose music composer uses a Hammond organ?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },lcquad +Was Love Hurts in Short Cut Draw Blood?,ASK WHERE { },lcquad +"Janaka Thissakuttiarachchi follows what religion, which once employed Atisa Srijnana too?",SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +Whihc birthpalce of Svetlana Gounkina is also the largest city of Union State ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Name the TV show with artist Christopher Franke and cast member Jason Carter ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +Which artist married to Lee Krasner?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +What teams did the ex teamplayers of lighthouse boy club start their career with?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Where was the deadbody discovered of one of the alumni of General Educational Development?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Who designed the bridge in Oddamavadi?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +What is the leader name of the settlements whose governing body is Municipal council?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Name the co-founder of the record labels which have one of the founder as Chris DuBois ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +List the companies operating in Australia?, SELECT DISTINCT ?uri WHERE {?uri } ,lcquad +In which countries is coconut used as a food ingredient?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +How many people have worked for teams chaired by Patricia Amorim?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?uri },lcquad +How many kinds of games can be played on the Amiga?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },lcquad +Is the book The Buddha and his Dhamma a book about Buddhism?,ASK WHERE { },lcquad +How many relatives are there of people fought in the Battle of the Bulge?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },lcquad +How many genres of games can I find on the commodore CDTV?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },lcquad +Does Jevan Snead play as Quarterback?,ASK WHERE { },lcquad +Give me the sitcoms where Eliza Schneider and Isaac Hayes gave voice?,SELECT DISTINCT ?uri WHERE { ?uri . ?uri . ?uri },lcquad +Directors of which movies are buried in Ronda?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . },lcquad +List the debut team of the baseball player who born in Houston.,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Does Cascade Airways have a hub in Seattle?,ASK WHERE { },lcquad +Who edited British Gazette ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +List the things for which the relatives of Mrunalini Kunte are known?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +What acts and artists are associated with people who have worked with Divertis?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +What are the notableworks of Russell T Davies?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Which company has developed games whose music is done by Gerard Marino?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Who all have developed softwares for Unix Like OSes?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +What are some party leaders of the parties which have had a seat in Berlin?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Was James maker in the band Noko?,ASK WHERE { },lcquad +Was Nick Jonas a member of the Jonas Brothers?,ASK WHERE { },lcquad +Which tenant of New Sanno Hotel is the military branch of the Gary Holder-Winfield ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +List the director of The Adventures of mimi ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +List sports managers who managed Middlesbrough F.C. and England national under-21 football team?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +Name all the soccer players who played in a under 18 club for La Liga?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },lcquad +Which key perosn of the Elders is also the president of united World College ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Who are the players whose current clubs have Ferran Soriano as chairman?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },lcquad +What are some parties which have people from Mangalore as a member?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Which employer of Michael M. Sears is also the producer of Delta III ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Name the largest city in the county where there is a Cy-Fair High School.,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +How many bacterias are there whose division is Firmicutes?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . ?uri },lcquad +To which country does Peter Blay owe his allegiance?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Is jim harbaugh currently in the Michigan Wolverines?,ASK WHERE { },lcquad +Name the television show whose subsequent work is Crusade and Composer is Stewart Copeland?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +What are the current music bands of Chester Bennington?, SELECT DISTINCT ?uri WHERE {?uri } ,lcquad +Who was the prime minister under which the predecessor of Derick Heathcoat Amory served?,"SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . }",lcquad +Which person designed the cars which has been designed by ASC Creative Services?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +What are some orthonychidae birds?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +Which driver had the pole position in 1994 Spanish Grand Prix ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Does the US route 281 have a junction at San Antonio?,ASK WHERE { },lcquad +How many awards have been given to the founder of Grameen Bank?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },lcquad +Was Queen Latifah in the U.N.I.T.Y. group?,ASK WHERE { },lcquad +Count the number of important works done by the writers of The Second Coming?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },lcquad +Who all are known to play the Gibson Guitar Corporation?, SELECT DISTINCT ?uri WHERE {?uri } ,lcquad +Which child of Jack Ferguson became a Prime Minister?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Did Annie Leibovitz do the cover of The Road Ahead?,ASK WHERE { },lcquad +What are the things whose mascots are from the class Eutheria?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . },lcquad +For whom did Michael Springer palyed for which is also had a former student named Donald Brooks ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Name the common nationality of Georgina Theodora Wood and akwasi Oppong Fosu ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +Name the movie written by Monty Python and distributed by Cinema International Corporation ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +Is Pittsburgh Steelers the former team of Marv McFadden?,ASK WHERE { },lcquad +Which series was written by Eric Jendresen and John Orloff?,SELECT DISTINCT ?uri WHERE { ?uri . ?uri . ?uri },lcquad +In which city can I find both the office of Elasticsearch and the Yellow Claw DJ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +Name the partners of Kelly Brook?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +What is the area of the broadcast network which has the affiliation with 9TV?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Who is married to Gerard Piqu?,SELECT DISTINCT ?uri WHERE {?uri . },lcquad +Which sports are played in schools affiliated with the Harvest Christian Center?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Who debuted their career in a team coached by Chip Kelly?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . },lcquad +What are the nicknames given to the characters of The Wolves of the Mercy Falls?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +"Name the river with source country in Zambia and source region as North-Western Province, Zambia?","SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri }",lcquad +Members of how many political parties have died in Delhi?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },lcquad +What is the birthplace of Adugna Deyas and the place where Fiq is located?,"SELECT DISTINCT ?uri WHERE { ?uri. ?uri . }",lcquad +what is the headquarters of Juan Dalmau Ramerez?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +The president who was in office when Lee Hyun Jae was the PM followed which religion?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Who is the maker of the engine of Ford F-Series first generation ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +What is the religious affiliation of Neungin High School?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Is Maria Sharapova the silver medalist of Tennis at the 2012 Summer Olympics Women's singles?,ASK WHERE { },lcquad +Name the office holder with successor as Adrian A Basora and child as Lori Black ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +Who is the owner of the South end ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +What is the colour of Xocolatlite ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +For how many other teams have the members of Atlant Moscow Oblast played?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },lcquad +What is the state of origin of the president whose alma mater is Hellenic Naval Academy ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +What is the common ethnicity of the Maike Evers and Francisco Lachowski ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +In which places do companies founded in Newcastle operate?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Which senator served in military units VMF-155 and VMF-218?,SELECT DISTINCT ?uri WHERE { ?uri . ?uri . ?uri },lcquad +What kind of games are made by Interplay Entertainment?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Which producer of Purvis Eureka engine is also the owner of Ford Theatre ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +What developed EMMS?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +"Which music band made Take Me There, and to which Tedd Riley was associated?", SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +In which time zone is Pong Pha?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +How many fictional characters are there in a series in which Craig Robinson acted?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?uri ?x . ?uri },lcquad +Which political party of Chandra Shekhar is also the political party of Datl Satyanarayana Raju ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Who owns the airport in Paphos?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +What is the baseball team whose club manager is Chip Hale?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +Which bacteria's taxonomic class is Bacilli?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +What honours did Reigh Count receive?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +What are some products of the the company whose subsidiary is Sony Corp shareholders and subsidies?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . },lcquad +Who built the stadiums where 2014 FIFA under 17 woman's world cup took place?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Which area operataed by the South Side Elevated Railroad is also the palce of death of the Sakari Suzuki ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +What is the television show whose related with Doctor Who Confidential?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +In which city wasThe Triple Door (The Courage album) performed live?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Which nearest city of Jurgens Site is the death plce of Jimmie Heuga ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +List the battles fought by Ali Habib Mahmud ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +How many companies were started in the states?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . ?uri },lcquad +Is Charles Drummond Ellis a doctoral student of James Chadwick?,ASK WHERE { },lcquad +How many movies are distributed by Cinema International Corporation?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . ?uri },lcquad +"Name the local authority of Trinity School, Brentwood ?"," SELECT DISTINCT ?uri WHERE { ?uri } ",lcquad +Name the president of Wyche Fowler ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +In which fields have people born in Lausanne worked?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Which Texas based company was founded by Jim Harris ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +"Name a show hosted by Brian Dunkleman and judged by Harry Connick, Jr.?","SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri }",lcquad +To which educational institute does Cornell University Press belong to?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +"In which country's cuisine, ham is an important part?",SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +List the softwares which runs on Microsoft Windows and has license as Software as a service?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +Which ppolitical party of Yashpal Kapur is also the owner of National Herald ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Who all have been presenters on shows by the NBC?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Give me the list of cars which are the predecessor of Full Sized Cars?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +"List the people with final resting place as Plymouth, Vermont and has Samuel W. McCall as predecessor?","SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri }",lcquad +What disease led to the demise of Letitia MacTavish Hargrave and Martino Martini ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . ?uri },lcquad +What are some software which are written in languages that are run on Unix like OS?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },lcquad +"List all the movies whose directors were born in Kenosha, Wisconsin?","SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . }",lcquad +"Does the St lawrence river start in Kingston, Ontario?","ASK WHERE { }",lcquad +What stadium's operator is Stan Kroenke,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +Is Mike Babcock the head coach of Toronto Maple Leafs?,ASK WHERE { },lcquad +Whose commanders are John Mc Ewen and Park Chunghee?,SELECT DISTINCT ?uri WHERE { ?uri . ?uri . },lcquad +Who gave guest appearances on the show which is the next episode after the Bombshell one?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +What is manufactured by a company headed by Kazuo Hirai?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . },lcquad +Under which presidents have politicians from the Continental army served?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Philadelphia City Council is the governing body of which city?, SELECT DISTINCT ?uri WHERE {?uri } ,lcquad +What are the binomial authority of Menetries's warbler?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Name the movie which has music composed by Elliot Goldenthal and screenplay by Akiva Goldsman ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +Name the fictional character whose relative are Duck family and Clan McDuck?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +Which university with athletics department in NCAA Division I Football Bowl Subdivision has nickname Tulane Green Wave ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +Which state does Jerome B. Chaffee belong ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +"In which of the parties that have governed over Rishikesh, does Govinda belong too?", SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +What awards are won by the screenwriter of Lucky You?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Name the Pole driver of 1994 Spanish Grand Prix ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Where did Georges Wolinski and Judson Huss die/, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +What is the parent company of the airline whose hub is in Detroit?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +What is the appliance which uses the central processing unit manufactured by Marvell Technology Group?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +"Give me all magazines whose founder died in Berkeley, California?","SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri }",lcquad +Which technological products were manufactured by Foxconn?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +Is George Lucas the cinematographer of 6-18-67?,ASK WHERE { },lcquad +Whose predecessor had Jenny Macklin as a deputy ?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . },lcquad +How many cars are similar to the ones assembled in the Jefferson North Assembly?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },lcquad +Count the number of region of AN/FSQ-7 Combat Direction Central?,SELECT DISTINCT COUNT(?uri) WHERE { ?uri . },lcquad +What are the common houses of US Congress and the Kansas Legislature?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Was John Muir the first one to ascend one of the peaks in the cathedral peak?,ASK WHERE { },lcquad +From how many different places have people gone to the Harward Medical School?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },lcquad +Name the television show where Mona Marshall has given voice and is distributed by Comedy Central?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +What are Jerry Bock's musicals based upon?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Give me list of people who were the first to climb a peak in the Yosemite park?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +What is Naval Support Activity Naples a part of?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Who has allegiance is Colony of Virginia and buried in Montpelier?,"SELECT DISTINCT ?uri WHERE {?uri . ?uri . }",lcquad +Was Tim Gunn a guest on The Broken Code?,ASK WHERE { },lcquad +What is the successor of PlayStation 4,SELECT DISTINCT ?uri WHERE {?uri . },lcquad +What is the sovereign state of the Dafydd Benfras where Jasmine Lowson is also citizen of ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Who did their highschool from a school whose mascot was a fighting tiger?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . },lcquad +Which destination of Emerald Air is also the city served by houston Fort Bend Airport ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +name the region served by Jerusalem Institue of Justice which was also the conflict region in GazaIsrael ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Name the company whose key person is Raymond Conner and produces Boeing CH-47 Chinook?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +What is the total number of professions in which someone who has suicided worked?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },lcquad +How many golf players are there in Arizona State Sun Devils ?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . ?uri },lcquad +Count the number of characters in Batman Live?,SELECT DISTINCT COUNT(?uri) WHERE { ?uri . ?uri },lcquad +List the services provided by the company which provides Microsoft azure as one of the service ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +What are some team members of the team based in Camp Nou?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Which universities are also known as the Tulane Green wave?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +What is the branch of the politicians whose governor is Bill Clements?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Who composed the episode after which came Butter's Very own Episode?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +What is the location country of Teperberg 1870 ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +List the software developed by Shawn Fanning ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +What is the stylistic origin of the music genres where the Bass guitar is important?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +What are the other notable work of the executive producer of The Runaway Bride episode of Doctor Who?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Who was the voice actor of allen walker also gave voice to kimihiro watanuki?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +Name the office holder whose final resting place is North Bend and was part of Siege of fort recovery conflict ?,"SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri }",lcquad +What type of engines are utilised by Purvis Eureka?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Who edited Easy street ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Who were involved in the wars where Jonathan Haskell battled?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +In which city was the film star of Singhasan Battisi born ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +What are the reason served by Toll Global Express which is also the country of LPGA ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +List the territory of Tonkin Campaign ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +For which teams did Ryan Powell play for?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +What are the awards won by the person who wrote the screen play for Lost in Rio ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Total number of places where people drafted in the detroit pistons have died?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?uri },lcquad +What band made The trial and One of these days song?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +Name the club of Julie Hastings ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +From where does the river Upper Neretva start flowing?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +"Name the university located in Indiana and has affiliations with Kaplan, Inc.?","SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri }",lcquad +List the newspapers whose offices are situated in 1211 Avenue of the Americas?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +Was Morrissey a member of the Smiths?,ASK WHERE { },lcquad +Did Phillippe Cabot go to Columbia for studying?,ASK WHERE { },lcquad +What river originates in Kingston Ontario?,"SELECT DISTINCT ?uri WHERE {?uri . ?uri }",lcquad +"By what style was Providence Chapel, Charlwood made?"," SELECT DISTINCT ?uri WHERE { ?uri } ",lcquad +"For how many PMs did the politician work, whose successor was Kingsley Wood?",SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?x },lcquad +list some companies founded by Jim Harris., SELECT DISTINCT ?uri WHERE {?uri } ,lcquad +Give me the total number of employer of the engineers whose one of the employer is McDonnell Aircraft ?, SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri },lcquad +How many developers have games where I can hear Lightning McQueen?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },lcquad +"Which universit's affiliation is with Kalpan, Inc. and has campus at Iowa ?","SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri }",lcquad +How many record labels publish works of Jazz fusion?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },lcquad +What are the regions in which the distributor of Secrets and Lies serves ? ,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +List all the writers of the comics which has Robert Bernstein as one of the writer ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +What are the settlements whose neighboring municipalities is Lancy?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +Count the total number of hometown of the gymnasts whose one of the hometown in Russia ?, SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri },lcquad +In which states does the river flow whose left tributary is Toms Creek?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Name the river whose source mountain is Baikal Mountains and mouth location is Arctic Ocean?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +Count the PhD students whose thesis are supervised by National Medal of Science winners?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },lcquad +Which broadcast area of CFRX is also the palce of birth of Anthony Raymond ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Count the total number of cast member of the television shows whose actress is Joey McIntyre?, SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri },lcquad +List all the awards won by the artist who has won SIGGRAPH ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Where was david Scherman trained ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Count the battles fought by Raoul Magrin-Vernerey?,SELECT DISTINCT COUNT(?uri) WHERE { ?uri . ?uri },lcquad +Which athlete was the flag bearer for Switzerland in 2004 and 2008 summer Olympics ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +Which nationalist group was responsible for foundation of Young Lords?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +What award was won by the father of Angelina Jolie?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +What are the software whose programming language are Multilingual?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },lcquad +Was Marshall Arisman the cover artist in american psycho?,ASK WHERE { },lcquad +Which birthplace of Liliya Lobanova is also the location of the Snake Island ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Count all the stateless people,SELECT DISTINCT COUNT(?uri) WHERE {?uri . },lcquad +Josef Bhler belongs to which political party?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Where did the war take place where one of the commander was Zuo Zongtang?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +In which place is the company which is known for Barbara bestor located ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +What novels are belong to the genre of Utopian and dystopian fiction?, SELECT DISTINCT ?uri WHERE {?uri } ,lcquad +What are the movies written by Nick Castle?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +On which river are there things belonging to zambezi river authority?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Is Egyptian Arabic belong to the Central Semitic Languages family?,ASK WHERE { },lcquad +Who is the artist of Sings Kristofferson and also performed Milk Cow Blues atleast once?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +Who has fought in wars under commander Arthur St Clair?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Which Paramount TV show was produced by Glen and Les Charles ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +Name some basketball players who have played for chicago bulls?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +Which owner of the national Herald india is the leader of Kumta ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +"Was Francisco Pizarro of the monarch of Charles 5, of the roman empire?","ASK WHERE { }",lcquad +What is the largest city of Pulau Ubin ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +What is the origin of the musical artist of A Todo Romantic Style ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Horses sired by Karinga Bay have participated in which races?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +What is the alma mater of the scientists known for String theory?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +How many apes are there?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . },lcquad +What is a common nickname given to both Lyons Township high school and the wheaton college in massachusetts?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +Where do beauty queens with brown hair reside?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +List the television shows one of whose distributor's divisions is Warner Bros. Animation.,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },lcquad +Name the television show directed by Simon Fuller and judged by Jennifier Lopez ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +Name the appointer of William Clark ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +in which movies have momoki kochi acted, SELECT DISTINCT ?uri WHERE {?uri } ,lcquad +What is the base currency of the Benelux and is also used as money in Kerguelen Islands?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +List the mammals whose taxonomy is Diprotodontia and phylum is Chordate?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +Count the key people of the Clinton Foundation?,SELECT DISTINCT COUNT(?uri) WHERE { ?uri . },lcquad +Name the company founded in New Mexico and provides Outlook.com as services ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +Which tv show was preceded by The spirit of Christmas and voice to the character was given by Mona Marshall ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +"Under which common jurisdiction do Trinity School, Brentwood and Buckhurst Hill County High School fall?","SELECT DISTINCT ?uri WHERE { ?uri. ?uri . }",lcquad +Music of how many things has been given by Akira Ifukube?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . },lcquad +What made jo garcia and merritt cabal both famous?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +What was the career of some people who have committed suicide?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +In how many places are the tombs of people who died in Connecticut Colony?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?uri },lcquad +List the producer of the television shows distributed by FremantleMedia.,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Name the awards won by Elie Wiesel ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Who are the producers of Marie Sisters?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Who won the silver medal when the bronze was won by Yang Yilin?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +"List the successor of successor of Hayden, Stone & Co.","SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . }",lcquad +Count the number of battles fought by the military person involved in Morocco ?, SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri },lcquad +What is the origin of Xynisteri?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +How many important works have been done by Russel Davies?,SELECT DISTINCT COUNT(?uri) WHERE { ?uri . },lcquad +Who are currently playing for Barcelona FC?, SELECT DISTINCT ?uri WHERE {?uri } ,lcquad +Is Andrew Lincoln the narrator of Million Dollar Traders?,ASK WHERE { },lcquad +Who is the owner of Saumarez ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +What is telecasted on the network where Deborah Turness holds important position?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . },lcquad +Who is the fictional character whose relative is Vestigial Peter?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +"How many home stadium are there, of the soccer club seasons whose chairman is Merritt Paulson?",SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },lcquad +Name the alma mater of Ernest de Saisset ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +What magazine companies are of form Limited liability company?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +List the driver of SA MArino Grand Prix is also the Pole driver of Canadian Grand Proix ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Where does John A Danaher III work?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Name few movies directed by Tim Burton ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +"Where was Live in Detroit, MI recorded ?"," SELECT DISTINCT ?uri WHERE { ?uri } ",lcquad +Name all the bands which have members of QDT in them.,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Which footballers did their high school in west Sacramento california? ,"SELECT DISTINCT ?uri WHERE {?uri . ?uri }",lcquad +List the names of the soccer club seasons whose division is 2012 Campeonato Brasileiro Srie A.,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Which successor of Philippine Ports Authority is the state of origin of Ruben J. Villote ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +What awards have been won by the executive producer of Timmy Time ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Which american football team is owned by Mark davis and is located in O.co Colliseum ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +"The successor of Ulrich II, Count of East Frisia was born in what place?","SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . }",lcquad +Who is the prime minister of Michael Jeffery who is also the minister of Williuam Deane ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Who is the owner of the FC which owns the Cobham Training Centre?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Who is considered to be the deciding person when it comes to crustaceans from the Balanidae family?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +What have some US citizens died of?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +What are some apes?,SELECT DISTINCT ?uri WHERE {?uri . },lcquad +Who is buried at the place governed by National Park Service?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . },lcquad +Name the municipality of Roberto Clemente Bridge ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Which past members of the The Conglomerate (American group) also sang Take Me There (Blackstreet & Ma song)?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +List all the notable works of Russell T Davies?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +"Which military unit garrison is Arlington County, Virginia and The Pentagon?","SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri }",lcquad +Name all the products produced by the producer of United States dollar ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +What is the launch site of Aquarius (rocket) ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +What are the players whose former teams are Carolina Panthers and Indianapolis Colts?,SELECT DISTINCT ?uri WHERE { ?uri . ?uri . },lcquad +Count the total number of mammals whose phylum is Chordate and order (taxonomy) is Diprotodontia?, SELECT DISTINCT COUNT(?uri) WHERE {?uri . ?uri } ,lcquad +Who is the music composer of Kenny Dies ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +How many cities are around the sea into which the aegean sea flows?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?x },lcquad +Where did the office holder who is predecessor to Marco Aurelio Robles died ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Who is associated with the musical artists from Africa '70 (band) and Tony Allen ?,SELECT DISTINCT ?uri WHERE { ?uri . ?uri . ?uri },lcquad +Is the Hyundai Lavita assembled in Kulim?,ASK WHERE { },lcquad +What is the programme format of WWTR ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +list the founders of Bream Bay ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Is Essex the Ceremonial County of West Tilbury?,ASK WHERE { },lcquad +What is the total number of participant in conflict of SFOR?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },lcquad +Name the people whose academic advisor has also mentored the thesis of Alexius Meinong?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },lcquad +Where is Denver Broncos located ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Which serving railway line of the Daund Junction railway station is the home port of INS Viraat ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +"Which river flows through Hudson Highlands State park and also through Troy, New york ?"," SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ",lcquad +"What is the university to which Erica Frank went, and where Ivan Toplak was a club manager?", SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +How many movies have been directed by Orson Welles ?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . ?uri },lcquad +Which borough is common for Duddeston and Bordesley railway station ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +Does Mauritius follow a parliamentary republic?,ASK WHERE { },lcquad +Who is the performer of the album whose subsequent work is Willie Nelson and Family ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +What is the birthplace of Ludovic Boi which is also the residence of Fernando Augustin?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +"Who is the producer of album, which has the song Eclipse ?",SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +"Which parties have their members live in the PM House, Colombo?",SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },lcquad +Which awards have been given to scientists that graduated from NKU athens?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Ricky Gervais is the executive producer of the series having how many fictional characters?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?uri ?x . ?uri },lcquad +Did Jerry Rice study in Oktoc Mississippi?,"ASK WHERE { }",lcquad +Cable stayed bridges have been used to cross over how many things?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },lcquad +Is north caucasian emirate have an islamic government?,ASK WHERE { },lcquad +What are the television shows whose starting music is composed by Ron Grainer?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +Who influenced the author of The Shooting of Dan McGrew ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Raymond Johansen is the mayor of what city?,SELECT DISTINCT ?uri WHERE {?uri . },lcquad +"What region was Gloria Schaffer born in, which also contains Newington?","SELECT DISTINCT ?uri WHERE { ?uri. ?uri . }",lcquad +"List some teams for which someone who has played as a defender, now plays?",SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Which rivers start from the Provinces of Zambia?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },lcquad +Who are the scientists known for the Manhattan Project?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +What are some dishes from the family of dishes which primarily use flour?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },lcquad +"Which religion do the people follow, whose constituency is Jadavpur?",SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +"In which region is the rival school of Somerset, Massachusetts located?","SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x }",lcquad +Which key person of Clinton Foundation is also the president of Jim Sasser ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +"Where did the athlete start his career, who did his highschool in Red Lion Area School District?",SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Name a person who works in Open Society Foundation and has wife named Susan Weber Soros ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +How many things are crossed over by bridges which can carry cars?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },lcquad +Which fictional character sculpted by Josh Friedmann was portrayed in Terminator 3 ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +Which team won the American Football League?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Which currency can I use both in Kerguelen islands and French southern and antarctic lands?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +Who is the founder of the trade union which affiliates Amalgamated Association of Iron and Steel Workers?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Which leader of United States House of Representatives was the appinter of ohn Drayton ?," SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ",lcquad +Is fox belong to the phylum of Chordate?,ASK WHERE { },lcquad +Which researchers received fellowship from Royal Society?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +Which president of United States had vice president as John Adams?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +Where was James H. Fields buried ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Is Henry Knox a commander of Continental Artillery Regiment?,ASK WHERE { },lcquad +What is the commander of Battle of Brownstown ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Is Baker's Dozen Donuts in the coffee industry?,ASK WHERE { },lcquad +What is Jon Speelman famous for?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Who is the fictional character whose family member is Padme Amidala?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +What company is the one which wrote the google web toolkit and PlayN?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +How many different songwriters have had their songs recorded in London?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },lcquad +Which are the automobile platform whose one of the automobile platform is Dodge ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +What is the total number of other combatant of the military conflicts whose combatant is Choctaw?, SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri },lcquad +List some pupils of National Science Medal winning scientists?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Relatives of Moses used to follow which religions?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +"Where was Ne daj se, Nina first aired ?"," SELECT DISTINCT ?uri WHERE { ?uri } ",lcquad +Where did the 2015 MLS All-Star Game take place?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Is Nikolai Morozov the former coach of Stanislav Morozov?,ASK WHERE { },lcquad +Did Alexandre Tichonov study at the Moscow university?,ASK WHERE { },lcquad +What is the name of the homeground of football team Panionios G.S.S.?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +List presidents of the school whose one of the president is Charles. Prince of Wales ?,"SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x }",lcquad +Does Timothy Morton study Buddhism?,ASK WHERE { },lcquad +Brian Moriarty designed video games written by whom?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +What are some movies whose distributors are led by Kevin Tsujihara?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },lcquad +Name the common associate band of Blayse and Teddy Riley ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +What did Steven T Mason's father die from?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Whose military units are VMF-218 and VMF-155?,SELECT DISTINCT ?uri WHERE { ?uri . ?uri . },lcquad +What automobile engine's successor is BMW M40,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +Name the company which produces both Boeing F/A-18 E/F Hornet nad CH-46 Chinook ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +What is the district of Methodist Central Hall Westminster ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Who develops the computation platform of Microsoft Expression Encoder ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +"What is the official language of Ladonia, which is the target area of Probus Journal?", SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Where did the conflict take place where Louis Briere de I'Isle was a commander?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +"In which team was the person drafted who has studied at the Worcester college, Oxford?","SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x }",lcquad +How many people hold important positions alongwith Donna Shalala?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },lcquad +What other things are provided by the producer of Office 365?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Who owns the company that made the Edsel Villager?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Which collaborator of Nice and Smooth wrote Same Song ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +Who fought in the battle at Tupelo Mississippi?,"SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x }",lcquad +List the movies whose cast member were born in Scotland.,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },lcquad +List the other nicknames of city which has one of the nickname as City of Angels ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Count the writers whose work has been played in NY?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },lcquad +"Where did the graduates of Memphis, Tenessee continue their education?","SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . }",lcquad +What subsequent work of Moondog Matinee has the composer of Motorpsycho Nitemare ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +What was the language of the single which came before To Know Him Is to Love Him?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +What are the television shows whose company is owned by Viacom?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },lcquad +How many people used to play in the youthclub of FC Barcelona?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . },lcquad +Quebec born ice hockey players have stopped playing for which teams?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Who is the chancellor of Falmouth University ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +what kind of things play on WBIG FM?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Name the are where South side Elevated Railroad operate and has place of birth as Arthur A. Ross ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +"In which fields are the graduates of Worcester College, Oxford working?","SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . }",lcquad +List the places where the relatives of Mark Donaldson died ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +What famous politician died in the Petersen House?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +What are some artists on the show whose opening theme is Send It On?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +What is the citizenship of Saima Chowdhury?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +What are the musical performances whose label is Celluloid Records?,SELECT DISTINCT ?uri WHERE {?uri . },lcquad +What is the craft of the Ralph Flanders which is also the profession of Claiborne Pell ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +How many people have fought wars where Arthur St. Clair was a commander?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },lcquad +Does Chicago own the Monroe Station?,ASK WHERE { },lcquad +Which team has had both Martin prochzka and garry unger as its players ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +What are the awards received by spouse of Ellen Lundstrom?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Who all have succeeded the kings buried in Rome?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Through which states do the rivers flow which join in the republican river from the left?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Give me the home town of all musical artists who uses Guitar as instrument ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +How many religions are followed amongst the people who've worked in the Korean army?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },lcquad +Was andy warhol a part of Pop Art movement?,ASK WHERE { },lcquad +Count the number of musical work which were sold by Sony Music?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?uri ?x . ?uri },lcquad +"Who is the person whose home town is Fairmount, Indiana?","SELECT DISTINCT ?uri WHERE {?uri . ?uri }",lcquad +Name the movies directed by Stanley Kubrick and edited by Anthony Harvey?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +List all binomial authority of the insects whose one of the binomial authority is douard Mntries?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +"Who is the military general buried in St Mary's Church, Battersea?","SELECT DISTINCT ?uri WHERE {?uri . ?uri }",lcquad +What is the military unit whose command structures are United States Department of the Navy and United States Department of Defense?,SELECT DISTINCT ?uri WHERE { ?uri . ?uri . ?uri },lcquad +What are some other things developed by the company who made the remote desktop protocol?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Where was Al-Muzaffar Umar buried ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +List the guests of On Broadway ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +How many universities are there whose country's capital is Oslo?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?uri ?x . ?uri },lcquad +Did Bob Dylan write the lyrics of the times they are a changin'?,ASK WHERE { },lcquad +What is the religion of the ones in the Kampuchean Union of Salvation?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Where did the members of judge advocate general corps study?,"SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . }",lcquad +Name the airlines which have a hub in airport in SF?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },lcquad +Which executive producer of the ultimate merger is also an important person at Trump Productions?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +What is the official name of Colorado wine ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +In how many states can one find Burr Tuss kind of bridges?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?uri },lcquad +who developed google videos?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +"Who is the child of John Tyler, Sr.?"," SELECT DISTINCT ?uri WHERE { ?uri } ",lcquad +Is Brazilian jiu-jitsu the trainer of Nick Diaz?,ASK WHERE { },lcquad +Who is the owner of Latvian Wikipedia and Wiktionary ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +Name all those buried in a place governed by a city council.,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . },lcquad +What royalties's sepulchre is Mausoleum of Augustus?, SELECT DISTINCT ?uri WHERE {?uri } ,lcquad +Name the common university of the Cardinal and Jim Wylie?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +What is the automobile platform of Chiva bus ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Who are the animator of The Skeleton Dance?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +How many movies have a screenplay located in the States?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?uri ?x . ?uri },lcquad +"Which ceremonial County of the East Tilbury is also the local authority of the Trinity School, Brentwood?"," SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ",lcquad +What system is both a platform where Nord runs and also distributed The beauty inside?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +Name the country whose leader's deputy is Piotr Glinski?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },lcquad +Is Cologny a neighbouring city of Geneva?,ASK WHERE { },lcquad +Whose creators are Jerry Seinfeld and Larry David?,SELECT DISTINCT ?uri WHERE { ?uri . ?uri . },lcquad +Which TV show is related to The Sarah Jane Adventures and theme music is composed by Ron Grainer?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +Name the parent company of Ford Air Transport Service ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +"Who has these major shrines : Emmitsburg, Maryland and Shrine of St. Elizabeth Ann Bayley Seton?","SELECT DISTINCT ?uri WHERE { ?uri . ?uri . }",lcquad +Which region of Bannock is the origin od Spaghetti squash ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Where in the us military did pierre r graham and edwin f hunter work?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +Count everyone who lives in a place where Indian English is an official language ?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?uri ?x . },lcquad +Did Raymond Picard take birth in Paris?,ASK WHERE { },lcquad +How many religions are practiced by diplomats?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },lcquad +Was Elton John a chairman of a Watford FC Season?,ASK WHERE { },lcquad +Which publisher of Lucifer's hammer is also known for Jo Garcia ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +To whom was Tessa Dahl born to?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Which sport at Polytechnic University of the Philippines Taguig is the field of Jon speelman ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Count the number of things people who know linguistics are known for ?, SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri },lcquad +Where were sverre krogh sundbo and havard vad petersson born?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Was Cliff Burton in Metallica?,ASK WHERE { },lcquad +How many religions are followed by organizations which are internationally known as the muslim brotherhood?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },lcquad +What are some people born in NY known for?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Who is the developer of the software which is produced by Claris ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +What is the river whose source is Cowombat Flat and has it's mouth located in Murray Mouth?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +Where does the river flow into which begins in Lebrsnik?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +What is the government type of Ancient Rome ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Which director of On deadly Ground also released Mojo Priest ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +What is the television show whose channel's parent organisation is Fox Sports?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },lcquad +Who commanded the invasion of Buwat and made Fatima bint Sa'd famous?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +What is the home ground of the clubs managed by Ciao Zanardi?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +What is the country with native language as Languages of Ethiopia?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +What is the band with previous members Kevin Jonas and Joe Jonas?,SELECT DISTINCT ?uri WHERE { ?uri . ?uri . ?uri },lcquad +List the people with Scientology as their religious belief?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +How many fictional characters were humans?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . ?uri },lcquad +Where was Girls (The Prodigy song) recorded ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +How many TV shows' networks are headquarterd in NY?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?uri ?x . ?uri },lcquad +Does StandBy records distribute via Sony?,ASK WHERE { },lcquad +Give me some shows owned by BBC one and BBC hd?,SELECT DISTINCT ?uri WHERE { ?uri . ?uri . ?uri },lcquad +How many teams have rented stadiums in Canada?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },lcquad +List the awards won by the film director of Chicken Run?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +What territory of Sino French War was the battle of Raoul Magrin-Vernerey fought ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +List the outflow of Lake Uniamsi?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Did John Byrne create Emma Frost?,ASK WHERE { },lcquad +Was Heinrich Himmler ever a commanders of Army Group Oberrhein?,ASK WHERE { },lcquad +List the universities from a country where Norwegian language is officially accepted.,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },lcquad +Name the incumbent of Linda Jenness ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +"Which companies makes cars assembled in Karachi, Pakistan?",SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Which company founded by Fusajiro Yamauchi also provides services of Nintendo eShop ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +In which countries does the sea lie on whose shore is the city of Cumana?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Tirana is the largest city of which country?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +From which countries are the people from who are an academic authority of the Western pygmy blue species?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Where is the headquarters of Sigma TV, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Which scientist was advised by John Robert Woodyard?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +What is the launch site of the Juno I which was also the ground of 2016 Fort Lauderdale Strikers season ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Who has been married to both Penny Lancaster and Alana Stewart?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +Count the affiliations of International Union of Anarchists?,SELECT DISTINCT COUNT(?uri) WHERE { ?uri . },lcquad +What is the alma mater of the scientist whose PhD advisor is Jean-Claude Latombe ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +"List the people residing in Wilton, Connecticut?"," SELECT DISTINCT ?uri WHERE {?uri } ",lcquad +What is the Location of the Peetz Table Wind Energy Center which is also the state of Ben Nighthorse Campbell ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Count the water bodies that flow into the North Sea?,SELECT DISTINCT COUNT(?uri) WHERE { ?uri . },lcquad +Who was the First Driver of 1999 San Marino Grand Prix ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Bantam Spectra is the publisher of which series?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Where is the sister station of Al Arabiya 99 located?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Which common prime minister did Graham Richardson and Bon McMullan serve ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +How many things are produced by companies located in Tehran?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },lcquad +Which is the common past team of the Charlie Justice (American football player) and Bobby Hoppe ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +Name the officeholder who hasa child named Augustus and has an associate named Marcus Bibulus ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +Which party won both the general electoin and the andhra pradesh election in 2004?,"SELECT DISTINCT ?uri WHERE { ?uri. ?uri . }",lcquad +Give me someone on the board of trinity house?,SELECT DISTINCT ?uri WHERE {?uri . },lcquad +Whose leaders are Willem-Alexander and Fredis Refunjol?,SELECT DISTINCT ?uri WHERE { ?uri . ?uri . },lcquad +Horses grandsired by Sundridge have won which awards?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +"What is the river whose source region is North-Western Province, Zambia and river mouth is Indian Ocean?","SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri }",lcquad +"Who was on the first team in the GPs that were held at Watkins Glen, NY?","SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x }",lcquad +Name the movie whose screenplay is by Akiva Goldsman and directed by Joel Schumacher ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +What ethinicity of Linda Hogan is also the state of origin of Holmes Colbert ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +What are the track and field events of Jamiatu Muslim Mindanao?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +How many cities are close to Lake Victoria?,SELECT DISTINCT COUNT(?uri) WHERE { ?uri . },lcquad +Is greasy pop recording the distributor of festival records?,ASK WHERE { },lcquad +What is the baseball team whose club manager's debut team is Houston Astros?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },lcquad +What cities are near to Nihoa which is also known as Bird Island ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Is Sloth in the Chordate phylum?,ASK WHERE { },lcquad +Which shareholder of Naval Air facility Adak is also the operator of New Sanno Hotel ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +What other awards have been given to Golden Globe winners?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Which allegiance of the John Kotelawala is also the sovereign state of the Sanath Weerakoon ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +List the television shows whose network's sister names is N-tv.,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },lcquad +God Defend New Zealand is the national anthem of which country?, SELECT DISTINCT ?uri WHERE {?uri } ,lcquad +Where do the rivers starting from Zambia end?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +"Which political party of kumta had affiliation with Indian general election, 2004 (Andhra Pradesh) "," SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ",lcquad +Who was member of boards at Royal Society and Trinity House?,SELECT DISTINCT ?uri WHERE { ?uri . ?uri . },lcquad +Where is the king buried whose predecessor was Iyasu II?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +In how many different places have people beatified by Pope Pius X died?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?uri },lcquad +What faiths are followed by the relatives of Meadow Soprano?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +"Where is the headquarters of the public transit system which owns Target Field, a Metro Transit Station ?",SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +What is the nationality of Aishath Saffa ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +who was the president under whom winston bryant served as a lieutenant?, SELECT DISTINCT ?uri WHERE {?uri } ,lcquad +What are the bands associated with the artists of My Favorite Girl ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +On what subjects was Broca's Brain written?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Which parent organization of GetTV is also the label of next thing ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Which teams have used the stadium whose architect was Populous ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Name the route end of the North-South Transport Corridor and Mumbai Vadodara Expressway?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +Is Albert P Clark buried in Colorado?,ASK WHERE { },lcquad +Which hockey team is head coached by Bill Peters?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +Count the number of religions followed by the alumini of Ananda College.,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },lcquad +Which team did Wilfred McDonalds and Cam Plante play for?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +What are the television shows whose network's stockholder is Warner Bros. Television?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },lcquad +Name the Fox TV show judged by Rand Jackson ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +What is the total number of software whose programming language is C++ and operating system is Microsoft Windows?, SELECT DISTINCT COUNT(?uri) WHERE {?uri . ?uri } ,lcquad +Name the city of Phil-Ellena ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +how many companies are located in a spanish speaking region?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?uri ?x . ?uri },lcquad +What is the combatant of the Northwest Indian War and also the ethnic group of the Linda Hogan , SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Which airlines fly to Gimhae International Airport?, SELECT DISTINCT ?uri WHERE {?uri } ,lcquad +GetTV is owned by which organisation?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Name the islands that belong to the archipelago whose largest city is Papeete?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . },lcquad +In which team did Dave Bing and Ron Reed started their basketball career?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +List the settlements area whose province is Metropolitan City of Venice ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +"What was recorded by Live in Detroit, MI and also palce of birth of the Bodhin Kjolhede?"," SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ",lcquad +From how many different institutes have the members of Judge Advocate General's Corps graduated?,"SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?uri }",lcquad +Whos a famous relative of anne spielberg?,SELECT DISTINCT ?uri WHERE {?uri . },lcquad +To which city does Northeast Library belong?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +What are the airline hubs of Cascade Airways?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Who has manufactured vehicles designed originally by NASA?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +What is the order of the Henry Clay and profession of the William Luther Hill?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +What show has theme music composer as Ron Grainer and at the same time related to Class (2016 TV series)?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +What is the life stance of the ethnic groups related to Micronesia ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Name the river whose mouth mountain is Southend-on-Sea and mouth place is Essex?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +Which venue of indy PopCon is also the death palce of Louis Le Cocqq ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +What genre's softwares are released with a GNU GPL license?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Is Christchurch the largest city of South Island?,ASK WHERE { },lcquad +Who is the leader of Allgemeine SS ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Giorgos Kaminis is the mayor of what?, SELECT DISTINCT ?uri WHERE {?uri } ,lcquad +Where is the headquarters of Metro Transit (Minnesota) ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Give me the count of all the names of characters created by Frank Miller,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },lcquad +Which fictional character portrayed in Terminator 2: Judgment Day is painted by Josh Friedman?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +Where was the narrator of Spain on the Road Again born?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Does AMC Gremlin have the Volkswagen engine?,ASK WHERE { },lcquad +Name the movie with narrator as Trevor Peacock and music composer as Christophe Beck?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +Where did the scientist study whose doctoral thesis was supervised by Leonard Lerman?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Where can one find some quick bread in the world?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +What is the sea whose cities are Gdask and Oulu?,SELECT DISTINCT ?uri WHERE { ?uri . ?uri . ?uri },lcquad +What rivers originate from Australian Alps?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +Which venues are located at places governed by John Roberts?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },lcquad +What is the venue of San Diego Comic-Con International ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +"Which office holder owes its allegiance to a state whose capital town is Jamestown, Virginia?","SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri }",lcquad +"Which professional fighter, who is also a politician and was elected to House of Representatives of the Philippines?", SELECT DISTINCT ?uri WHERE {?uri } ,lcquad +List the comic characters created by Joe Shuster ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +"Which kind of conventions are held in Rosemont, Illinois?","SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x }",lcquad +What city is located on the mouth of Duwamish River?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Which governer of Winston Bryant is the president of Joseph Stiglitz ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +How many people have led agencies in German occupied Europe?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },lcquad +Where did the plays written by Robert Schenkkan take place?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Under which president did the predecessor of Simon Ferro work?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Name some ww1 veterans?,SELECT DISTINCT ?uri WHERE {?uri . },lcquad +Who appointed both John Drayton and William Clark to their respective offices?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +Which operator of New Sanno Hotel is also the governing body of the Oahu Railway and Land Company ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Which predecessor of Alexander Downer was deputy to Neil Brown ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . },lcquad +Which are the predecessor of Chevrolet Caprice?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Who wrote the album coming right before Dead Man's Chest's OST?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +What is the series of the book which is a subsequent work of Blade Runner 2: The Edge of Human ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +For how many cities's teams did David Bowens play?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?x },lcquad +Is Anne Hidalgo the mayor of Paris?,ASK WHERE { },lcquad +In which countries have models hanged themselves?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Is the Vadodara railway junction onwed by Indian Railway Ministry?,ASK WHERE { },lcquad +What city gave birth to Mishal Raheja and also houses New India Assurance?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +Which TV show whose theme is composed by someone signed up with ATO records?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },lcquad +Which models were featured in Playboy Playmates 1954?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +What currencies have been prevalent in the country whose national anthem is La Marseillaise?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Who is the relative of Jim Farley (businessman) ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Is Latin the official language of Sovereign Military Order of Malta?,ASK WHERE { },lcquad +"Where do the politicians, Blanche Bruce and John Franklin Miller work?",SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +Name an American football player whose debuted in Chicago Bears and former team is 1998 Baltimore Ravens season?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +Name a river with source country as Zambia and source location as Ikelenge District?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +Does Ford own the Ford Kansas Assembly plant?,ASK WHERE { },lcquad +Which fields of the Paul Demiville is also the faith of Koay Teng Hai ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Name the institute of Alton Ochsner ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +What movies have been written by authors of Monty Python ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +Who was the cover artist of The Adventure of Tom Sawyer also wrote mark Twain Tonight ?, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +Name the scientist whose academic advisor is Karl Ewald Hasse and supervisor is Georg Meissner?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +Where do current famous NatGeo photographers live?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +Georg Meissner was doctoral supervisor of which scientist ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },lcquad +Did Stanlee write the Tales of Suspense?,ASK WHERE { },lcquad +Name the common home port of the Trishna (yacht) and INS Viraat (R22)?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +does the US navy have the structure of command of us department of defence?,ASK WHERE { },lcquad +Name books with publisher as Francisco de Robles and writer as Miguel de Cervantes ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },lcquad +Who owns the schools which have a penguin as its mascot?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },lcquad +River which flows into the eugene mahoney state park pass through which states?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +"What nation is Hornito located in, where Jamie Bateman Cayn died too?","SELECT DISTINCT ?uri WHERE { ?uri. ?uri . }",lcquad +"Which TV show had a judge named Harry Connick, Jr. and was presented by Ryan Seacrest?","SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri }",lcquad +Name the resting place of Fazlur Rahman Khan ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Which arena of WPC Dynamo Moscow is death location of Tigran Petrosian >, SELECT DISTINCT ?uri WHERE { ?uri. ?uri} ,lcquad +what cities are close by LoDaisKa ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Which wars were fought when the commanders involved served under PM Choi Tu Son?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },lcquad +Who is the meaning of Isa ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Who is venerated in Judaism and Islam?,SELECT DISTINCT ?uri WHERE { ?uri . ?uri . },lcquad +Count the number teams which have former ice hockey players which also included American Hockey League ?, SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri },lcquad +Name the common editor of Easy Street (film) and Work (film)?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },lcquad +List all the schools of the rugby player whose went to school named Pietermaritzburg ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },lcquad +Name the office of Richard Coke ?, SELECT DISTINCT ?uri WHERE { ?uri } ,lcquad +Name the service region of Jerusalem Institue of Justice which was also the result region in Gaza Israel conflict?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +What disease led to the demise of Letitia MacTavish Hargrave and Martino Martini?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . ?uri },Orange(huggingface) +What are the movies produced by Michael Deeley?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +List the major shrines of Jovan Vladimir?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +What has Carl Sagan written his books about?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Who are all the people who used to figure skate with the current partner of Alexa Scimeca?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +How many first drivers have participated when Scuderia Ferrari was a first team?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },Orange(huggingface) +In how many different places were the people born who are members of National Museum of Racing and Hall of Fame?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?uri },Orange(huggingface) +Who are currently playing for Barcelona FC?,SELECT DISTINCT ?uri WHERE {?uri },Orange(huggingface) +Where is the office of P Elmo Futrell Jr?,"SELECT DISTINCT ?uri WHERE { ?uri . }",Orange(huggingface) +Enumerate all those who are in the Board of companies founded in New York?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?uri ?x . },Orange(huggingface) +List all the writers of the comics which has Robert Bernstein as one of the writer ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +"Which person won Screen actors Guild Life Time Achievement award and has resting palce in Palo Alto, California ?","SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri }",Orange(huggingface) +Which american football team is owned by Mark davis and is located in O.co Colliseum ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +Where is Dofinivka Estuary located ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Name the music artist which collaborated with the spouse of Jessi Colter?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },Orange(huggingface) +What artist was associated closely with the bare necessities and rock a doodle?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +Where is the building located whose architect was Francis Palmer Smith?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +In how many different places have ethics philosophers died?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?uri },Orange(huggingface) +Who are the parents of writers born and bred in Buckinghamshire?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Race horses whose grandsire is Wild Risk have taken part in which races?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Does Faaa International Airport serve tahiti too?,ASK WHERE { },Orange(huggingface) +Through which states do the rivers flow which join in the republican river from the left?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +List the things for which people of New Orleans are famous for?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +What is the province of Rouen Business School?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +What is the home town of the band which is the artist of Your Ice Cream's Dirty ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Who is the employer of Michael M. Sears ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +What are some bands originating in London?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +What are the baseball teams who belongs to Guggenheim Partners?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +Name some schools with a bison as their mascot?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +Which work institutions of Andrew Schally is the alma mater of Mara Eugenia Rojas Correa ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +What are the tenants of Mercedes-Benz Superdome?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +What is the route end of NorthSouth Transport Corridor ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +What city is it where Wayne Allard governs and Juli Ashton was born?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +What is that show whose theme was composed by Joel Goodman?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Which driver came first in the 1993 European Grand Prix ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +What is the scientist whose PhD students are Erich Bagge and Serban Titeica?,SELECT DISTINCT ?uri WHERE { ?uri . ?uri . ?uri },Orange(huggingface) +Is Nikolai Morozov the former coach of Stanislav Morozov?,ASK WHERE { },Orange(huggingface) +Name the movie written by Monty Python and has music composer as Geoffrey Burgon?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +How many total religions are followed by people whose hometown is somewhere in India?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },Orange(huggingface) +Where did john o conner study?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +The official residence of Sukhumbhand paribatra ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Name the tenants of O.co Coliseum ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Give me all the alma mater of the relatives of Samuek Moreno Rojas ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +Count the tenants of the stadiums designed by Populous?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },Orange(huggingface) +Who is the stock holder of the bank where Peter Grauer works ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +How many teams have used the stadiums which have been rented by the Canadian Hockey Association?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },Orange(huggingface) +"Who is the military general buried in St Mary's Church, Battersea?","SELECT DISTINCT ?uri WHERE {?uri . ?uri }",Orange(huggingface) +List the music played in television episode which came after The Colonel (The Americans)?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +In how many teams have people previously played who play as defencemen?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?uri },Orange(huggingface) +From where did Ben Wilson (American football) do his highscool?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +What awards have been won by the executive producer of Timmy Time ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +Name the office holder whose battle is Siege of Fort Recovery and belongs to the Indian territory branch?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +In how many places can I find people who were the architects of the Dundas Castle?,"SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . }",Orange(huggingface) +Name the borough of the Bordesley railway station which is also the route end of the Birmingham and Oxford Junction Railway?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +Who is the person whose opponent's father is Newman Haynes Clanton?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . },Orange(huggingface) +How many ships belong to states which has Unitary as government type?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?uri ?x . ?uri },Orange(huggingface) +List the awards won by the wife of Ingrid von Rosen.,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +What Orson Welles directed movie has photography director as Gregg Toland ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +Which city's teams have been coached by Gary Kubaik?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +What nation is the motherland of Ricardo Alfonso Cerna where Apostolic Vicariate of El Petn is located?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },Orange(huggingface) +List the mammals whose taxonomy is Diprotodontia and phylum is Chordate?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +"List all the hubs of the airline whose one of the hub is Subang, Indonesia ?","SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x }",Orange(huggingface) +Which venue of Indy PopCon is also the death palce of Louis LeCocq?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +Who is the owner of Chelsea F.C. ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Where is the hometown of A Bartlett Giamatti?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +On how many subjects has Random house publishers published books?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },Orange(huggingface) +Where did ed podolak go to high school,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Which companies have launched a rocket from Cape Canaveral Air Force station?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +What awards have been given to the anyone who raced in the Lawrence Realization Stakes?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +Colin Powell was the commander of which military conflict ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +List the software using C++ as programming language and licence is Software as a service?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +How many titles were given to people who engaged in the Operation Dragoon?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },Orange(huggingface) +"Name a military unit whose command structure is United States Department of the Navy and garrison is Arlington County, Virginia?","SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri }",Orange(huggingface) +What is the official residence of Fergus McMaster?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +What are the musicals whose musicians worked under Sony Music Entertainment?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },Orange(huggingface) +"How many people live in Wilton, Connecticut?","SELECT DISTINCT COUNT(?uri) WHERE {?uri . }",Orange(huggingface) +"How many major shrine are there, of the saints whose beatified by Pope Pius XI?",SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },Orange(huggingface) +What were robert sarvis and Jack Ryan nominated for ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Which scientist is known for writing Philosophi Naturalis Principia Mathematica?,SELECT DISTINCT ?uri WHERE {?uri },Orange(huggingface) +What is the outflow of Lake Uniamsi and the inflow of Cahora Bassa?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +How many states are in the Mediterranean Basketball Association?,SELECT DISTINCT COUNT(?uri) WHERE { ?uri . ?uri },Orange(huggingface) +Name the appliance produced by Foxconn and its OS is provided by PlayStation 3 system software?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +What are some rivers over which there is a box girder bridge?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +How many teams have LA kings players in them currently?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?uri },Orange(huggingface) +List the producer of the TV shows whose company is HBO.,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +What is the location country of Teperberg 1870 ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Name the software which has been developed by John Fanning?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +Which college of Luke List (golfer) is the alma mater of K. Terry Dornbush?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +What show has judge as Randy Jackson sculptors as Simon Fuller?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +Who has written works found in the Gangan comics?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +Name the agency of Election Commission of Thailand ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +What is the place of death of the royalties one of whose parents was Adam Ludwik Czartoryski?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Which producer of Boeing F/A-18E/F Super Hornet has a key person Dennis Muilenburg?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . },Orange(huggingface) +Which TV show's composer is Judy Hart Angelo and executive producer as Glen and Les Charles?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +Employees of Ottawa Citizen have come from which towns?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +Who was the president under which people won the United States House of Representatives elections in 1790?,"SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x }",Orange(huggingface) +Count the number of artist whose pone of the field is writing ?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri },Orange(huggingface) +Name the parent company of Ford Falcon Cobra?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Count the number of sports played by schools which play hockey ?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri },Orange(huggingface) +What are the different religions followed by presidents whose prime minister was Surayud Chulanont?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Whose military unit is 39th infantry regiment in 1812?,SELECT DISTINCT ?uri WHERE {?uri . },Orange(huggingface) +List the name of the soccer clubs whose chairman is Joan Laporta.,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +What was founded by Congress of Industrial Organizations?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Which TV show's producer is Stephen E. Ambrose and company is DreamWorks Television?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +Which rivers start in a country whose leader is Irene Mambilima?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },Orange(huggingface) +Where was Picasso's Last Words recorded?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +"What state was Cyrus Mann born in, and has the famous Downriver?",SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },Orange(huggingface) +List the former partner of the figure skaters whose former choreographer was Igor Shpillband.,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Which country has leaders Karu Jayasuriya and Ranil Wickremesinghe?,SELECT DISTINCT ?uri WHERE { ?uri . ?uri . ?uri },Orange(huggingface) +"Which river goes through cohoes, NY","SELECT DISTINCT ?uri WHERE { ?uri }",Orange(huggingface) +Name all those buried in a place governed by a city council.,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . },Orange(huggingface) +"Which school teams are there in schools of Arlington Heights, Illinois?","SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x }",Orange(huggingface) +"Which band made the song Take me There, and has collaborated with Blayse in the past?",SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +What are the political parties whose leaders have lived in the Prime Minister's House?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },Orange(huggingface) +List the doctoral students of Harry Harlow?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +What is the place of death of the gymnast who was the silver medalist at the 1956 Summer Olympics Men's rings ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +In which city is Arsenal Cider House located?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Which are the races in which Martin Molony participated?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Give me the number of home stadiums of teams managed by John Spencer.,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },Orange(huggingface) +What developed EMMS?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +What is the alma mater of the scientist whose PhD advisor is Jean-Claude Latombe ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Name the movie in which Vangelis gave the music and Jordan was the cinematographer?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +Who were the first drivers in Grand Prixes where the first team was Scuderia Ferrari?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +List the notable work of David Isaacs?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +To which nation did David Animle Hanses owe his allegiance?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Which executive producer of Into the Dalek also produced Wizards vs Aliens ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +What is the religion of the ones in the Kampuchean Union of Salvation?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +What is the purpose of some Maharashtran organizations?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Where is the headquarters of the public transit system which owns the American Boulevard (Metro Transit station) located ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +What genres of games are available on the Commodore 64?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +"Where did they debut their careers, those who have played for US men's national soccer team?",SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +Which magazine's editor is married to Crystal Harris?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },Orange(huggingface) +In which war did the units garrisoned at Turin fight?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +From which party is the politician who was selected in Barasat constituency?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },Orange(huggingface) +What show had NTSC format and theme music composed byRon Grainer?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +"Who is the performer of album which has the song ""To Where You Are"" ?",SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +Which broadcast area of Mauritius Broadcasting Corporation is also the nationality of Michael Medor?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +Name the office holder who has a child named Lori Black and resting place is Alta Mesa Memorial Park?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +What team did J P Paris was former team of Bert McCaffrey play for?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },Orange(huggingface) +"The successor of Ulrich II, Count of East Frisia was born in what place?","SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . }",Orange(huggingface) +What countries used Solidus as currency?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +What sport played in Polytechnic uni of San Juan has also made advocate nasiruddin famous?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +Who wrote the US steel hour?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +What company's leader is Edwin Catmull?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +Which technological products were manufactured by Foxconn?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +Name the artist of Brad Paisley discography ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +What is the river whose tributary is Zarqa River?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +"What is that something which made Breann McGregor famous, and Frank Thorne received as an award?",SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +In how many regions is the Baco Noir made?,SELECT DISTINCT COUNT(?uri) WHERE { ?uri . },Orange(huggingface) +How many cars can I find related to the cars which have a V8 engine?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },Orange(huggingface) +Which religion followers are in the Royal Thai Army?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +How many bands are signed up with labels which were founded in Japan?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?uri ?x . ?uri },Orange(huggingface) +Who is the manager of the club whose homeground is the riverside stadium?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },Orange(huggingface) +What is the profession of the children of Herbert Pell ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +Who are some people whose religion is headquartered in Gold Base?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . },Orange(huggingface) +How many athletic associations are there in all of the private universities?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },Orange(huggingface) +What is the Band whose band member is Mark Middleton?,SELECT DISTINCT ?uri WHERE {?uri },Orange(huggingface) +Who is the film star of On Air with Ryan Seacrest?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +What is the largest city in the country where the San Marcos River originates?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +To which family does korean fox belongs to ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Name the rivers in the hudson highlands state parts?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +"Who has these major shrines: Emmitsburg, Maryland and Shrine of St. Elizabeth Ann Bayley Seton?","SELECT DISTINCT ?uri WHERE { ?uri . ?uri . }",Orange(huggingface) +Name the constituency of Jonas Gahr Stre?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +What politician's partner is Diana Taylor?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +What did Steven T Mason's father die from?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +Under whom did Charles Drummond Ellis do his PhD?,SELECT DISTINCT ?uri WHERE {?uri },Orange(huggingface) +Name some TV shows whose theme is made by a band associated with Buckethead?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },Orange(huggingface) +"What genre isPyChess from, which employes Craig Van Tilbury?",SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +Give me some TV stations whose network's main language is American English?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },Orange(huggingface) +Which city was founded by George Washington and John Forbes (British Army officer)?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +Count the number of other product of the banks whose one of the product is Wealth management ?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri },Orange(huggingface) +Which associate musical artist of Carolyn Dennis is also the composer of Motorpsycho Nitemare ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +When was Dick Redding born?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +What is the settlement whose neighboring municipalities is Lancy and mayor name is Esther Alder?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +Who gave the voice to the characters sculpted by Clamp?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Muhammad Yunus has won how many awards?,SELECT DISTINCT COUNT(?uri) WHERE { ?uri . },Orange(huggingface) +Where does the Giannis Alafouzos originate?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +How many players are in the San Francisco Giants?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . ?uri },Orange(huggingface) +Where did the film director of Kala Pani die?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +From which team did Marv McFadden played?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +What is the alma mater of Alvin Bell and Charles Plosser?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +How many information appliance are manufactured by companies located in Taiwan?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?uri ?x . ?uri },Orange(huggingface) +Which company offer service of Outlook and OneDrive?,SELECT DISTINCT ?uri WHERE { ?uri . ?uri . ?uri },Orange(huggingface) +Name the person whose relation is Dee Dee Warwick?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +In how many districts there are stations with borough called tendring?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },Orange(huggingface) +How many causes of death have been associated with American citizens?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },Orange(huggingface) +What is the name of the artist which worked on the subsequent work of Ella Loves Cole ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +What are some TV shows similar to the one produced by Susie Liggat?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },Orange(huggingface) +Trevor Peacock has narrated in which movie?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +Which office holder's predecessor is Lucius Cornelius and his associate is Marcus Calpurnius Bibulus?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +Who is the music composer of Kenny Dies ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +List the launch site of the rockets whose one of the launch site has been Cape Canaveral Air Force Station Launch Complex 26 ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Name the office holder with predecessor as Samuel W. McCall and office in Massachusetts House of Representatives?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +"The people who did their high school in Palm City, Florida did their college where?","SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x }",Orange(huggingface) +What are some non fiction subjects dealt with in fantasy novels?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +What are some shows whose voice actors play the piano?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },Orange(huggingface) +Which movie produced by Michael Deeley was distributed by Warner Bros?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +List the websites which the authors of Tornado own ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +Which universities are alma mater to Charles Plosser?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Give me a count of movies whose film editor is Anthony Harvey?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . ?uri },Orange(huggingface) +Which governer of Winston bryant is also the president of Carl Stokes ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +Name the office holder with associate as Marcus Calpurnius Bibulus and has a kid named Augustus?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +What is the venerated in of Edwin of Northumbria ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Which builder of Edwin Andrews Air Base is also place of birth of the Akinoumi Setsuo ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +"What is the state of the administrative region where Oscoda, Michigan is located?","SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x }",Orange(huggingface) +What are the houses of Parliament Security Services?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Horses grandsired by Sundridge have won which awards?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +"Name the university whose affiliations's foundation is in Washington, D.C.?","SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri }",Orange(huggingface) +Miguel de Cervantes wrote the musical extended from which book?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Who has composed songs produced by Terry Melcher?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +"Name the office holder whose constituency is Noe Valley, San Francisco and belongs to military unit USS Kittiwake (ASR-13)?","SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri }",Orange(huggingface) +"Which is county seat of the King County, Washington and PLACE OF DEATH of the Phil Lumpkin ?","SELECT DISTINCT ?uri WHERE { ?uri. ?uri}",Orange(huggingface) +"To how many places does the airlines fly, whose head office is located at the Gatwick Airport?",SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?uri },Orange(huggingface) +List the newspapers which has headquarters in Stockholm?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +With what company is the service OneDrive associated?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +What is the religion of the governors whose office is the Bank of Thailand?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +What is the political party to which Purnima Banerjee is a member of??,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Which state does Jerome B. Chaffee belong ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Give me a count of all ice hockey players whose teams are headcoached by John Tortorella?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?uri ?x . ?uri },Orange(huggingface) +Where is Denver Broncos located?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +How many home stadiums are there of the seasons whose chairman in Merritt Paulson?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },Orange(huggingface) +List the developers who has contributed to both GNOWSYS and GNU TeXmacs?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },Orange(huggingface) +What is the field of the Jon Speelman and occupation of the Karen Grigorian?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +Artists trained at art students league NY are buried where?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +How many things are written in C++?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . },Orange(huggingface) +Which parent organization of Get TV also owns the Galleria ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +To which political party does the successor of Radhabinod Koijam belong?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +Name the common associate band of Blayse and Teddy Riley?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },Orange(huggingface) +What is the Location of the Peetz Table Wind Energy Center which is also the state of Ben Nighthorse Campbell?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +Which educational institution of Jack Mcgregor is also the alma mater of Donn barber?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },Orange(huggingface) +List the major shrines of the saints whose one of the shrine is St. Takla Haymanot's Church?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +How many non-fiction subjects are there of the books whose one of the non-fiction subject is Ankh-Morpork City Watch ?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri },Orange(huggingface) +Which astronauts went on the Gemini 8 mission?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +What are the notable works of the person who produced Queer as Folk?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +In which city of Pittsburg Steelers was the Congress of Inductrial Organization founded ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +Who was the writer of the novel Maniac Magee?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +"Who is the narrator of The Incredible Hulk , 1982 TV series ?",SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +What are the non-fiction topics in the books whose authors is Terry Pratchett?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +What is the county of the road whose route end is Pahang ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +In which country is the Baku puppet Theater located which is also the birth palce of Anar Salmanov ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +What is the layout of the automobiles whose designer company is Olivier Boulay?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Which river flows through both eastern and central washington?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },Orange(huggingface) +Name a office holder whose predecessor is Edward Douglass White and has son named Charles Phelps Taft II?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +What is the route start of Capitol 400 ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Which genre of books does the writer of The Many Hands write?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +What is the birth place of the cast of Lagnacha Dhumdhadaka?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +What is the state whose largest city is Denver?,SELECT DISTINCT ?uri WHERE {?uri . },Orange(huggingface) +Who produced the Pixar Image Computer?,SELECT DISTINCT ?uri WHERE {?uri . },Orange(huggingface) +What are the television shows whose network is BBC HD?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +Name the ground of Al-Rayan SC?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Name the university of Alexandre Tichonov?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Count the number of tenants whose one of the tenant is Toronto Phantoms ?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri },Orange(huggingface) +How many other genre are there of the radio stations whose one of the genre is Classic rock?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri },Orange(huggingface) +Name the licensee of the TV station whose one of the licensee is Incorporation ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +What is the river whose source is Lake Ontario?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +"What sport has made Eric Schiller famous, and has employed Craig Van Tibury?",SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +How many record labels publish works of Jazz fusion?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },Orange(huggingface) +Giuseppe Bertello and Pietro Parolin are leaders of which place ?,SELECT DISTINCT ?uri WHERE { ?uri . ?uri . ?uri },Orange(huggingface) +Which fictional character's relatives were made by Ted Osborne?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },Orange(huggingface) +Name the broadcast area of ITV (Thailand) ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +How many cars succeeded the cars which were similar to Cadillac Fleetwood?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +The successor of Ellsworth Bunker belongs to which region?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +What subjects does the subsequent work of The Dragons of Eden deals with?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +Name the sports played by Jamiatu Muslim Mindanao?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Who wrote a streetcar named desire?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +What currencies are prevalent in the countries governed by the President of France?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Peanuts Motion Comics and The Peanuts Movie are the voice of whom?,SELECT DISTINCT ?uri WHERE { ?uri . ?uri . },Orange(huggingface) +Give me a list of computers whose CPU is in the US.,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },Orange(huggingface) +What are the school mascots in Blytheville school district?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Which producer of Wizards and the aliens is also the notable work of russell T Davies ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +What is the official residence of the senator who is the deputy of Everett Dirksen?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Where is the arena of WPC Dynamo Moscow situated?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Which manufacturer of Ford Y-block engine is the parent of Ford Air Transport Service ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +Name the home town of Cline Buckens ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Which office's people have died on the US Route 165?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Which show's theme music was composed by Primus and voiced by Isaac Hayes?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +Which hockey teams have had people playing as Defenceman?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Which city do both Arthur Ross and Edward Niesen come from?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +Count all the universities who participated in the tournament won by Alabama Crimson Tides in 2015 ?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?uri ?x . ?uri },Orange(huggingface) +"to which university did both, the Stanford Cardinal and Gerald Reaven go?",SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +Which is the largest city of Union State ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Where was Special 26 recorded ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Who is the fictional character who portrayed in Terminator 2: Judgment Day?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +"To which party does the politician belong, who was born in Nandurbar?",SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +List the main ingredient of Pizza-ghetti ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +List all the teams which have someone who played their first game for the Yankees?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +How many organizations work for Environmentalism?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . },Orange(huggingface) +What faiths are followed by the relatives of Meadow Soprano?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +Foxy Brown was associated with which band?,SELECT DISTINCT ?uri WHERE {?uri },Orange(huggingface) +Who has produced movies that have a James Horner score?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Where is the gold coast football club located?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Who is the developer of Dart (programming language) ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Name the part of Liverpool city region ,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +What is the common product of the Apple Productivity Experience Group and services of the 21Vianet ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +How many awards have been given to the ones who died of lung cancer?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?uri },Orange(huggingface) +List the profession of senate whose one of the profession is United States Coast Guard ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Which university attended by Donn Barber and education institute of Jack McGregor ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +Which company was founded by Fusajiro Yamauchi?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +What are the software whose programming language is Multilingual?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },Orange(huggingface) +Which railway line goes through the stations which are a part of the North Caucasus railway?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Count the different origins of members of the Vitis Vinifera species.,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?uri },Orange(huggingface) +Name the battle fought by the military persons who also fought in Algeria ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +In which mountain range does the Rochers De Naye lie?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +By which member of parliament was Provisional Government of Saskatchewan led?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +How many areas are led by Willem Alexander?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . },Orange(huggingface) +How many things are produced by companies located in Tehran?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },Orange(huggingface) +Who created the world series of Poker?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Greater Napanee is the home town of what people?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +Which appointer of William Clark is the successor of Levi Lincoln Sr ?,"SELECT DISTINCT ?uri WHERE { ?uri. ?uri}",Orange(huggingface) +Name the company with product named Microsft Azure and provides OneDrive as a service ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +"How many people live in the Beverly Hills, California?","SELECT DISTINCT COUNT(?uri) WHERE {?uri . ?uri }",Orange(huggingface) +List the architect of the buildings whose one of the architect is Philip Webb?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +How many companies have launched their rockets from the Vandenerg Air base?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?uri },Orange(huggingface) +Which show's network is Prime time Entertainment and has Douglas Netter as executive producer ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +Where did the beverage sold by Refriango originate?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Who built the stadium which was rented by Costa Rica national football team?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +What units are garrisoned in the Pentagon?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +Is Ian Thorpe the bronze medalist of Swimming at the 2004 Summer Olympics Men's 100 metre freestyle?,ASK WHERE { },Orange(huggingface) +What is the result of the GazaIsrael conflict is also the place of the Qaqun?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +Which baseball team is managed by Bruce Bochy?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +"Whose children died in North Bend, Ohio?","SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . }",Orange(huggingface) +Malaysian highway authority has designed bridges over what things?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Which band was left by Kevin Jonas?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +Count the total number of software whose programming language is C++ and operating system is Microsoft Windows?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . ?uri },Orange(huggingface) +What is the homeport of INS Viraat (R22) ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Give me everything owned by networks which is lead by Steve Burke?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?uri ?x . },Orange(huggingface) +Which games publishers are located in California?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . },Orange(huggingface) +Which newspapers are owned by Oslo citizens?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },Orange(huggingface) +Which office holder's constituency is Haight-Ashbury and has military unit as USS Kittiwake ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +Who is the mayor of the city under which is the constituency of Zora Singh Maan?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +List down the commanders of Battle of Fort stephenson?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Count all those whose youth club was managed by Luis Enrique.,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?uri ?x . },Orange(huggingface) +How many party leaders are there whose parties are headquartered in Berlin?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?uri },Orange(huggingface) +Who is the common distributer of Bombay Sapphire and Rev ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +Give me the total number of lines owned by owner of Metro-Noth Railroad ?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri },Orange(huggingface) +Which New Mexico company provides One Drive as a service ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +Which are the previous broadcast networks of sister channels of WGBC?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +Which producer of Purvis Eureka engine is also the owner of Ford Theatre ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +In which areas can I find wine made of Vitis vinifera grapes?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Count the different religions practiced by people who are in the Malaysian and Chinese association.,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },Orange(huggingface) +President of Ghana is the leader title of which country?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +What is the venue of San Diego Comic-Con International ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Who edited Easy street ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +How many people are buried in the Mausoleum of Augustus?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . },Orange(huggingface) +In which teams have league members of the Czech Extraliga played previously?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +Which major shrine of Tekle haymanot is the palce of death of Haile Selassie Gugsa?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +Which distributer of Bombay Sapphire also makes Grewy goose ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +Which rivers start in Wyoming?,SELECT DISTINCT ?uri WHERE {?uri },Orange(huggingface) +What is the district of Methodist Central Hall Westminster ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Which district of Robert William Wilcox is the place of birth of Kamaloohua ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +Who were in the youth clubs that were in season of 2015 Argentine Primera Division?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . },Orange(huggingface) +How many subjects have been covered in fantasy novels?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },Orange(huggingface) +Which company has developed games whose music is done by Gerard Marino?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +"Fairfield, Connecticut is hometown to which persons?","SELECT DISTINCT ?uri WHERE {?uri . ?uri }",Orange(huggingface) +Was Yabanc Damat first aired in UAE?,ASK WHERE { },Orange(huggingface) +Where is the head quarters of the owner of Hamline Avenue?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +Where does the river end on whose border we find in Bjelasnica?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +Name the serving line of Daund Junction railway station?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +What are the movies whose editor is Robert Wise?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +Martin AN/GSG-5 is a part of the building in which city?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +What are the airline hubs of Cascade Airways?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Which sports are played in the alma mater of Amitava Datta?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +Give me a count of companies located in Texas ?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . ?uri },Orange(huggingface) +What are the countries for which History of Trier principal to?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +What are some seas inside europe ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +What is common between genre of battle chess and purpose of New Zealand Chess ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +Count the number of artists who trained at the San Francisco Art Institute?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . ?uri },Orange(huggingface) +What are the largest cities in each of the destinations of TranStar Airlines?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +How many sports are played at the university whose president is Emanuel de Guzman?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?uri },Orange(huggingface) +Name the musician who gave the music in Tonight's the night and is also wedded to Alana Stewart ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +List all the artist of the TV shows which has McClain as one of the artist ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +What is the resting place of the children of Bruce Lee ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +How many producers have casted Michael Jackson?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },Orange(huggingface) +In which branch of the government does James L. McConaughy belong?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +Count everything garrisoned at the pentagon?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . },Orange(huggingface) +What is the automobile platform of Chiva bus ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Who had Joe Purcell and Winston Bryant as lieutenants?,SELECT DISTINCT ?uri WHERE { ?uri . ?uri . },Orange(huggingface) +Name the city served by Juhu Aerodrome?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Wringer (novel) and Maniac Magee is the notable work of which author?,SELECT DISTINCT ?uri WHERE { ?uri . ?uri . ?uri },Orange(huggingface) +From where did the son of Gustavo Rojas Pinilla graduate?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +Where is the stadium of Philadelphia Rage ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +List all binomial authorities of the insects whose one of the binomial authority is douard Mntries?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +How many people have been presenters for NBC shows?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?uri },Orange(huggingface) +To which educational institutions did Lesli Sanchez go for her studies?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +List all those whose relatives' nationality is United States.,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . },Orange(huggingface) +What is the magazine which have been founded by Ralph J. Gleason?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +List TV shows with producer as Erik Bork and company is DreamWorks Television ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +Where can one find the Dzogchen Ponolop Rinpoche?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Mota Engil built bridges over which rivers?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Name someone known for a project involved in the Occupation of Japan?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . },Orange(huggingface) +Who edited British Gazette ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Who studied in universities located in suburbs?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . },Orange(huggingface) +Which show's theme music composer's label is MapleMusic Recordings?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },Orange(huggingface) +Who is the office holder whose deputy was Andrew Peacock and predecessor was Alexander Downer?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +List bacterias whose order is Bacillales and division is Firmicutes?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +Who are some US colonels?,SELECT DISTINCT ?uri WHERE {?uri . },Orange(huggingface) +Which companies are founded in the city of which Collin County Texas is a part?,"SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri }",Orange(huggingface) +Name the driver who had a pole finish in 1989 Portuguese Grand Prix?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +By which university is the literary magazine named Stone Canoe published?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +How many factions have fought in wars where Francois Marie Le Marchand de Lignery was involved?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +What is the former team of the american football players whose position is Running back?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Who is the author of Karakuri Dji Ultimo?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Which college of the Luke List (golfer) is the alma mater of the Park Trammell ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +Is greasy pop records distributed by festival records?,ASK WHERE { },Orange(huggingface) +Who wrote the album coming right before Dead Man's Chest's OST?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +What are some scientists who have stateless citizenship?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +What is the military branch of John Tower?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Who is the person whose child performed with Tony Bennett?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . },Orange(huggingface) +"Give me a count of everything under the archipelago, where Papeete is the biggest town.",SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?uri ?x . },Orange(huggingface) +Give me the count of all the names of characters created by Frank Miller,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },Orange(huggingface) +Which religions are practiced in India?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +Players from how many teams have participated in the National Hockey League?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?uri },Orange(huggingface) +"What is the hub airport of Pawan Hans, and is also the largest city of India?",SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +Who is the co-founder of the city where Owen Dougherty died?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Who were the opponents of the people buried in the tower of London?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Where is Emmett Hughes from?,SELECT DISTINCT ?uri WHERE { ?uri . },Orange(huggingface) +What is the parent company of company which owns Sony Bank?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +What is the base currency of Benelux?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Who owns a bridge in Boston?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Give me the list of people who scaled mountains in Sierra Nevada?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +"Which educational institution has Kaplan, Inc as it's affiliation?","SELECT DISTINCT ?uri WHERE {?uri . ?uri }",Orange(huggingface) +How many bacterias are there whose division is Firmicutes?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . ?uri },Orange(huggingface) +"Which awards did the creator of A Barrel of Laughs, a Vale of Tears won ?","SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x }",Orange(huggingface) +List the settlements area whose province is Metropolitan City of Venice?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +"Count all those who've played for the youth club which owns the Rosario, Santa Fe stadium.","SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?uri ?x . }",Orange(huggingface) +What is the mountain whose parent mountain peak is Nevado de Toluca?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +Which are the predecessors of the cars which are similar to the Oldsmobile 88?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +Name the kingdom with currency Solidus (coin) and administrative headquarters in Nicomedia?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . },Orange(huggingface) +Which route junction of the Rhode Island Route 15 is the place of birth of the Michael Poulin?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +Which type of building is Qun Thnh Temple ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Who are the chancellors of universities which is affiliated with Plymouth University?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Who are the people who played for San Francisco 49ers?,SELECT DISTINCT ?uri WHERE {?uri . },Orange(huggingface) +"Which ceremonial County of the East Tilbury is also the local authority of the Trinity School, Brentwood?","SELECT DISTINCT ?uri WHERE { ?uri. ?uri}",Orange(huggingface) +"Where is the assembly of Plymouth Savoy, and where Special 26 was recorded?",SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +Which sport at Polytechnic University of the Philippines Taguig is the field of Jon speelman ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +What sports are played by school which owns Fr. Agnel Stadium?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Which office holder's resting place is William Henry Harrison Tomb State Memorial and has governor named Charles Willing Byrd?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +How many developers have games where I can hear Lightning McQueen?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },Orange(huggingface) +Give me some organizations working for Environmentalism?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +How many factions were involved in the battles fought by Arthur St. Clair?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },Orange(huggingface) +Sentinel High School team is known as?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Where did the employees of American College of Surgeons study?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +In which races did the horses of Mon Capitaine take part?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Where is the tombstone of Johannes Gerhardus Strijdom?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +List the ideologies of the party of Boonchu Rojanastien?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +How many tenants are there in the Mercedes Benz Superdome?,SELECT DISTINCT COUNT(?uri) WHERE { ?uri . },Orange(huggingface) +"Which office holder's governor is Charles Willing Byrd and has final resting place in North Bend, Ohio?","SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri }",Orange(huggingface) +What is the total number of other nearest countries to the lakes whose nearest countries is Uganda?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri },Orange(huggingface) +Who are the people whose phD advisor was Harry Harlow?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +Name the river with mouth place Essex and source place as Gloucestershire ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +"List the people with final resting place as Plymouth, Vermont and has Samuel W. McCall as predecessor?","SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri }",Orange(huggingface) +Name a river with source country as Zambia and source location as Ikelenge District?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +What are some team members of the team based in Camp Nou?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +"Which rivers have source origins asnorth western, Zambia ?","SELECT DISTINCT ?uri WHERE {?uri . ?uri }",Orange(huggingface) +Name the team which is the owner of Dafenham wind turbines and stood first in 1967 mexican Grand Prix?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +Under which scientist did doctoral students erban ieica and Erich Bagge study?,SELECT DISTINCT ?uri WHERE { ?uri . ?uri . ?uri },Orange(huggingface) +"Name a show hosted by Brian Dunkleman and judged by Harry Connick, Jr.?","SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri }",Orange(huggingface) +"Which river starts from the county seat of Heathsville, Virginia?","SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri }",Orange(huggingface) +Which distributer of Glover is also the stockholder of Seattle Mariners ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +For which country did Alexander Lippisch design airplanes?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Who directed The Haunted House ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Which non fictional subject of Thud is the athletics of PATTS College of Aeronautics ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +Name the show formed by J. Michael Stroczynski and had network as TNT ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +which astronaut's mission was Apollo 11?,SELECT DISTINCT ?uri WHERE {?uri },Orange(huggingface) +Producers of what have died in Mississippi?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . },Orange(huggingface) +In how many places are the tombs of people who died in Connecticut Colony?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?uri },Orange(huggingface) +What are the relatives of the parliament member whose successor is Peter Thorneycroft?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Name the partners of the models whose one of the partner is Thom Evans ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +"For how many movies have the music composer composed music, who have collaborated with Yes?",SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?uri ?x . ?uri },Orange(huggingface) +What is the military rank of the important commander of Peruvian Army?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +How many companies were started in the states?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . ?uri },Orange(huggingface) +What are some movies whose score is composed by relatives of Bodhi Elfman?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },Orange(huggingface) +Titus software publishes which genre of games?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +how many companies are located in a spanish speaking region?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?uri ?x . ?uri },Orange(huggingface) +What awards have the alumni of Academy of Fine Arts in Lodz achieved?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +Who are in the liang chow club?,SELECT DISTINCT ?uri WHERE {?uri },Orange(huggingface) +What is the common award won by geoffrey Rush and Laemmle Theatres?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +Which state's largest city is Omaha?,"SELECT DISTINCT ?uri WHERE {?uri . ?uri }",Orange(huggingface) +What is the owning organisation of the Ford Kansas City Assembly Plant and also the builder of the Ford Y-block engine?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +What is the rank of Julius C. Burrows politically?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Where was Thomy Bourdelle born?,SELECT DISTINCT ?uri WHERE { ?uri . },Orange(huggingface) +Which party has come in power in Mumbai North?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +Name some politicians buried in a place near Orange Virginia?,"SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri }",Orange(huggingface) +What is the person known for who is the movie director of Sleepy-Time Squirrel?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Which rivers start at the Brower's Spring?,SELECT DISTINCT ?uri WHERE {?uri },Orange(huggingface) +In which time zone is Pong Pha?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Which sects people are part of local political parties which fall under the International Muslim Brotherhood?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +List the outflow of Lake Uniamsi?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Which famous writer was married to Jill Krementz and had a son named Edith Vonnegut?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +How many people have worked for teams chaired by Patricia Amorim?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?uri },Orange(huggingface) +Which city which owns Boundary Dam and was the place for Soccer Bowl '76?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +Name the university whose athletic department is called National Collegiate Athletic Association and has a chancellor named Nicholas S. Zeppos?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +Where do the rivers starting from Zambia end?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +What is the state of Umatilla language which is also the state of James K. Kelly ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +Which former team of the Harry Parker (baseball) is the debut team of the Carl Sitton?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +"Which office holder's military unit is USS Kittiwake and constituency is Castro District, San Francisco ?","SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri }",Orange(huggingface) +Count the tenants of the stadiums owned by toronto.,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },Orange(huggingface) +What is the award won of the scientists known for Cubic Hermite spline?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Where was the deadbody discovered of one of the alumni of General Educational Development?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +People born in Saint-Amand-en-Puisaye are famous for what things ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +Who is related to Kelly Osbourne & Ozzy Osbourne?,SELECT DISTINCT ?uri WHERE { ?uri . ?uri . },Orange(huggingface) +Which current Michigan Wolverines team member debuted in Chicago Bears ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . },Orange(huggingface) +"What is the largest city of the country to whom, the battle honours of 65th Regiment of Foot were given?","SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . }",Orange(huggingface) +What are the movies whose director is Orson Welles?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +Name some ww1 veterans?,SELECT DISTINCT ?uri WHERE {?uri . },Orange(huggingface) +Which award is presented by Downtown Athletic Club?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +Which planet was discovered by Johann Gottfired and Urbain Le Verrier ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +What is the predecessor of BMW M40?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +How many people currently play for Stoke City F.C.?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . },Orange(huggingface) +What is the alma mater of the scientists known for String theory?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +CN Atletic-Barceloneta has a stadium in Barcelona?,ASK WHERE { },Orange(huggingface) +List all crafts of the people whose one of the profession is Kingdom of Naples ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +List all the home stadium of the soccer clubs which has one of the home stadium as Nairobi?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +To what companies is Dennis Muilenburg important?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +What are some software which are written in languages that are run on Unix like OS?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },Orange(huggingface) +Which company owns Sony bank ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Name the awards won by Elie Wiesel ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +List out the people who are related to the relatives of Jared Kushner?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +Which currency is primarily used by the company which is the distributing label of VDE-Gallo Records?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +What are the movies whose music composer is Akira Ifukube?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +What is the territory of the conflict whose commander is Feng Zicai?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Give the distinct number of other party of the people which have one of the party as Janata Party?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri },Orange(huggingface) +What are the television shows whose network's successor is BBC Two?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },Orange(huggingface) +How many television shows are broadcasted on Fox Broadcasting Company?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . ?uri },Orange(huggingface) +"Over how many cities did the Bellaton MMA, Season 11 take place?",SELECT DISTINCT COUNT(?uri) WHERE { ?uri . },Orange(huggingface) +Which companies published Super Mario Adventures?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Name the first driver of 1999 San Marino Grand Prix ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +List down all the bands to which the writers of 03 Bonnie & Clyde are associated?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +From how many countries did the aeroplanes designed by Alexander Lippisch originate?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?uri },Orange(huggingface) +What magazine is Marritt Cabal known for and is the publisher of Lucifer's Hammer?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +"In which city was the company founded, which owns Grasim Bhiwani Textiles?",SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +what are some famous people out of the Filipinos?,SELECT DISTINCT ?uri WHERE {?uri },Orange(huggingface) +What is the major shrine of the monarchs whose successor is Dragimir of Travunia and Zachlumia?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Who is the President of the United World College of Costa Rica and United World Colleges?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },Orange(huggingface) +Count the tenants of MasterCard Centre?,SELECT DISTINCT COUNT(?uri) WHERE { ?uri . },Orange(huggingface) +Which education institute of Duncan U. Fletcher is also the university of Vanderbilt Commodores?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +How many people are known for Dragons' Den?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . },Orange(huggingface) +What is the common nationality of Viveka Babajee anad Ronny Vencatachellum ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +Which colonel has allegiance to Colony of Virginia ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +Where are the tombstones of the successors of Edward Wolcott?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +Which president of William Eustus also married to Dolley Madison ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +How many owners are there of things located in Alabama?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },Orange(huggingface) +"In which other places are there companies which are in Ontario, too?",SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +Where did the Vitis Vinifera grapes originate?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +List the software which uses Microsoft Windows as their operating system ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +Which fields' academic journals are found in the US?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +In which races does Coneygree compete?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +List all the school of the rugby player whose one of the school is Michael House ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Which military commander fought his battle at Fort Gadsen?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +In which country did the planes designed by Ursula Hanle originate?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +List the guest of the show The Other Side (The Outer Limits)?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +List the authors of the musicals whose songwriter is Richard M. Sherman.,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +List all the developers of the Oddworld series?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +Which city is the route start of the Moscow-Kazan high-speed railway and birth place of the Ilya Savelev ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +what region is governed by Mario Olivero?,SELECT DISTINCT ?uri WHERE {?uri },Orange(huggingface) +What is the title of the Kakae and also the district of the Robert William Wilcox?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +What have been made in the state whose capital is Boston?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . },Orange(huggingface) +which award has been won by Claudia Moro?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Who is the owner of the website which has the label Seed Eight ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +In how many places have Irishmen died?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?uri },Orange(huggingface) +Where do current famous NatGeo photographers live?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Count the number of religions followed by the alumini of Ananda College.,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },Orange(huggingface) +Which organisation has superintendent as Lieutenant general (United States)?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +What is the total number of other non-fiction subject of the books whose one of the subject is Racism?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri },Orange(huggingface) +Which idelogy of the Palang Dharma Party is also the faith of Miao people ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +What is the mascot of the military unit whose commander is Herbert Bautista ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +"Give me all magazines whose founder died in Berkeley, California?","SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri }",Orange(huggingface) +Name the movie whose director of photography is Gregg Toland and Bernard Herrmann was the music composer?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +Who owns the railway line which goes through the Newark Station?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +Name the river on Batoka Gorge Hydroelectric Power Station ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Which office holder's military branch is Continental Army and vice president is John Adams?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +In which country is the Chapelle Saint-Louis de Carthage located?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +Which scientist's academic advisor is Georg Meissner and is known for invention of Anthrax ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +What is the common country of Ganz UV and Balaton wine region?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +What is the common ideology followed by Katyayana and Palang Dharma Party ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +Who is the headcoach of 2014-15 Virginia Tech Hokies men's basketball team ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +List the honorary title given to the spouse of Lillian Disney ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +How many players participated in the 2004-05 FC Barcelona season?,SELECT DISTINCT COUNT(?uri) WHERE { ?uri . ?uri },Orange(huggingface) +Who was the coach of marquette Golden Eagles men's basketball team 2012-13 season ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +"Who is the producer of album, which has the song Eclipse ?",SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +What is the content license of Darcs?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +List the cities which share the same water body as that of Florida ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +For how many things are americans famous for?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },Orange(huggingface) +What is the mascot of Celal Bayar University ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +What is the nationality of the economist who is one of the important people in the Foundation for Economic Education?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +In which city wasthe Live at The Triple Door (The Courage album) performed?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +What is the debut team of the american football player who studied in North Fort Myers High School?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +What came before PlayStation 4 and uses PlayStation 3 system software as OS?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . },Orange(huggingface) +Who composed songs in the Mr Tambourine Man album?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +What games are played in Protestant schools?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Name the notable work by Russell T Davis which is also the series of Doctor Who:Destiny of the Doctors ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +Give me list of people who were the first to climb a peak in the Yosemite park?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +What is the service of the Laemmle Theatres and is also the award of the Jos Rivera (playwright)?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +Count the writers whose work has been played in NY?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },Orange(huggingface) +What is the location of Dad's Root Beer on Google maps?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Humes High School is alma mater to which person?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +"Who were the commanders during the events which took place in Sandusky County, Ohio?","SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x }",Orange(huggingface) +Which architect of the Marine Corps Air Station Kaneohe Bay is the branch of the Burnet R. Maybank?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +Which set of researchers won the Gold Medal of the Royal Astronomical Society award?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +Name the television show with opening theme as Te Deum and is composed by Marc-Antoine Charpentier?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +Who is married to Tony Ramo?,SELECT DISTINCT ?uri WHERE {?uri . },Orange(huggingface) +Which river's source country is Zambia and mouth country is Mozambique?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +Name the directors of Lennon Legend: The Very Best of John Lennon (DVD)?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Name the constituency of Domenico Modugno?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +In how many different stadiums are the seasons of the 2015 NA Soccer league held?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?uri },Orange(huggingface) +What is the settlement whose neighboring municipalities is Lancy and mayor name is Esther Alder?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +"Name the office holder whose Governor is Charles Willing Byrd and has resting place as North Bend, Ohio?","SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri }",Orange(huggingface) +Which fields of the Paul Demiville is also the faith of Koay Teng Hai?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +List the broadcast area of the TV stations which also serves in Agalga?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +What is the political party of the Bengalis?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +Tirana is the largest city of which country?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +Name the airlines which have a hub in airport in San Francisco?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },Orange(huggingface) +In which countries is coconut used as a food ingredient?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +What is the mascot of the army unit whose commander is Peter Cosgrove ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Which musical artists have collaborated with Waylon Jennings?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +With whom were the engagements of Alpine Brigade Taurinense?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +To which destinations does Air 2000 fly?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +What political party has governed both in Baraily and Jowai?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },Orange(huggingface) +what is the headquarters of Juan Dalmau Ramerez?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Give me some software which run on mac os.,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +What games are played at universities in Lanao Del Sur?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Count all those who previously played for a team which ownes Varsity Stadium ?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?uri ?x . },Orange(huggingface) +List the maintainers of Pandaruan Bridge?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Give the name of the managers of England national under-20 football team and England national under-21 football team?,SELECT DISTINCT ?uri WHERE { ?uri . ?uri . },Orange(huggingface) +Who are the producers of the movies which has music by Gary Chang ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +How many things belong to a division of plant kingdom?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?uri ?x . },Orange(huggingface) +List the show related to the which was followed by Doctor Who Extra?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },Orange(huggingface) +What are the universities where athletics is regulated by National Collegiate Athletic Association?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +Which awards has Puerto Ricons won?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +Where did the conflict take place in which Henri Putz fought?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +Where did the genres originate which can be found in The Mudbloods?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +What cities are near to Nihoa which is also known as Bird Island?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +"Where was Live in Detroit, MI recorded and was also palce of birth of the Bodhin Kjolhede?","SELECT DISTINCT ?uri WHERE { ?uri. ?uri}",Orange(huggingface) +List the ceremonial county of East Tilbury?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Which TV show's setting is in Massachusetts and is the subsequent work of Fraiser ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +List some writers which speak one of the Germanic languages.,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },Orange(huggingface) +Who all held a position when Gough Whitlam was the prime minister?,SELECT DISTINCT ?uri WHERE {?uri },Orange(huggingface) +Where has the employee of Columbia Records worked ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +Which operating system provider of LG Optimus Vu is also the employer of Manu Cornet?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +Count the number of sports played by the universities which also plays Volleyball?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri },Orange(huggingface) +what are some units udner the US department of navy?,SELECT DISTINCT ?uri WHERE {?uri },Orange(huggingface) +How many universities are in the National Collegiate Athletic Association?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . },Orange(huggingface) +Music of how many things has been given by Akira Ifukube?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . },Orange(huggingface) +To which political party do the children of Sonia Gandhi belong?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +What are some other children of the father of Marvin Bush?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +What is that river whose source gets water from the Shannon cave?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },Orange(huggingface) +Which university of Alexandre Tichonov is the place of death of Valentin Muratov?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +Where are ethnic group located which speak Nebraskan?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +List the American MEditerranean Sea city is also the place of death of Laszlo Bellak?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +What is the total number of other tenant of the stadia whose one of the tenant is Raptors 905?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri },Orange(huggingface) +What was the result of Operation Autumn Clouds?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +How many items belong to the Science Fiction genre?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . },Orange(huggingface) +Where did the fashion designer study who died at the Stony Brook University Hospital?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Count everyone who was in a youthclub chaired by Josep Maria Bartomeu?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?uri ?x . },Orange(huggingface) +Who is the meaning of Isa ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Where was WiZeefa founded?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Who was buried at St. Mary's Church and fought the battle of Benedict Arnold's expedition to Quebec ?,"SELECT DISTINCT ?uri WHERE {?uri . ?uri . }",Orange(huggingface) +List the products of Playboy Enterprises?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +Count the number of fields of the scientists whose one of the fields is Sanskrit?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri },Orange(huggingface) +What awards have been given to the artists coming out of the University of Melbourne Faculty of VCA and MCM?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +"What is the career of George Arceneaux, Jr. ?","SELECT DISTINCT ?uri WHERE { ?uri }",Orange(huggingface) +Was Queen Latifah in the UNITY group?,ASK WHERE { },Orange(huggingface) +Who debuted their career in a team coached by Chip Kelly?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . },Orange(huggingface) +"What is the name of the river whose mouth country is Mozambique and source region is North-Western Province, Zambia?","SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri }",Orange(huggingface) +Where was William anthony trained ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +What famous politician died in the Petersen House?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +"Which relative of George Madison was the leader of United States House of Representatives elections, 1788 and 1789 ?","SELECT DISTINCT ?uri WHERE { ?uri. ?uri}",Orange(huggingface) +Which colonel consort is Dolley Madison?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . },Orange(huggingface) +For which clubs do the players of Azam F.C. play for?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +What is the nationality of the golf player who won the 2002 Players Championship ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +What is the state of origin of Thomas Pfyl ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +What is the debut team of people born in Vargas?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +Name the mouth country of Upper Neretva?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +What is the producer of the television shows whose channel is CBBC?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +What is the political party of the person succeeded by A.K. Singh?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Who was the president under which a tennis player held office before John W. Weeks?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +"Alexander Magleby, a rugby player is alma mater to which university?",SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +"To what did the parliament member swore her oath to, whose son is Lohan Ratwatte?",SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Who wrote a rose for emily?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +What is the ideology of Palang Dharma Party?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Which cities are located around the sea into which the ionian flows?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +How many people have headed organizations headquartered at Niederkirchnerstrae?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },Orange(huggingface) +Which band produced the album Aida?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Count the awards received by the ones who fought the battle of france?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },Orange(huggingface) +Which writer is famous for works written by Neil Gaiman?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . },Orange(huggingface) +What automobile engine's successor is BMW M40?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +Which key person of the Clinton Foundation is also the president of Edward J. Perkins ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +List the destinations of Novair International Airways ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +What are the other band members of the band one of whose current member is Robert De Niro?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +List the newspapers whose headquarters's time zone is Central European Summer Time.,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },Orange(huggingface) +Count the number of places where alumini of Edinburgh university have died?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },Orange(huggingface) +What is the military branch of the William French Smith which is also the branch of Pierre R. Graham ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +Where was Liliya Lobanova born?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +List all discipline of the journals whose one of the discipline is Cerebral blood flow ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Which fictional character sculpted by Josh Friedmann was portrayed in Terminator 3 ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +Which ppolitical party of Yashpal Kapur is also the owner of National Herald ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +Which team won the American Football League?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Which fields are covered by academic journals in the US?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Who succeeded Lucius Crus as an office holder?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +Grey goose and eristoff is produced by which company?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },Orange(huggingface) +Name the river flowing through Reading and source place as Gloucestershire?,"SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri }",Orange(huggingface) +What is the birthplace of the office holder who is the predecessor of Brian Peddle ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Where is the T.I. Ahmadiyya Girls Senior High School?,"SELECT DISTINCT ?uri WHERE { ?uri }",Orange(huggingface) +Name the college of the Allama Matthews which also has affiliation with Monroe Carell Jr. Children's Hospital at Vanderbilt,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +Name the city of Duwamish River ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +How many movies have a screenplay located in the States?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?uri ?x . ?uri },Orange(huggingface) +"What is common between sports played at Fr Agnel School and Jr college, and the genre of Virtual Kasparov?",SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +Games on amiga are typically of what kind?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +"What sport amongst the one Lagos Preparatory School practices, did Willian Garne play for?",SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +List borders of the admin region bordering Arctic ocean ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +Which teams have used the stadium whose architect was Populous ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +How many game series exist for iOS?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },Orange(huggingface) +What are the things whose leader was a monarch Willem-Alexander of the Netherlands?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . },Orange(huggingface) +What is the citizenship of the Sarah Kazemy and land of the Cervelle de canut,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +In which countries can i find some feminist writers?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Companies founded in Taiwan have typically which divisions?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Where was the narrator of Spain on the Road Again born?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +Which labels signs up progressive rock bands?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Who are some cofounders of record labels with Frank Rogers?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +In which nation does the league take place where C.D. Primeiro de Agosto play?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Who is the author of Heroman is also the author of Karakuri Dji Ultimo ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +List the director of The Adventures of mimi?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Who designed the bridge over the Valaichchenai lagoon?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Which company founded in New Mexico manufactures Visual Studio?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +In which wars did Percy Fitzwallace fight?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Who have been the manager of national team of Spain?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +Name the television show created by CE Webber and also has actor named Companion?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +Who is the predecessor of Voere ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +What is the alma mater of K. Terry Dornbush?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Which domain's journals did Willard Fiske edit?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Name a company with one of the key person as Edwin Catmull and produces RenderMan?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +"Which parties have their members live in the PM House, Colombo?",SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },Orange(huggingface) +Name the chairman of the soccer club for which Mike Salmon currently plays?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +What is the state of the senator whose successor is Nathaniel P. Hill?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Name the stock holders of soccer club whose one of the stockholder is Carl Sanders ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +"Which companies makes cars assembled in Karachi, Pakistan?",SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Name the commander of Battle of the Thames ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +What is the stylistic origin of the music genres where the Bass guitar is important?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Where did the office holder died who is successor to Elmer Burkett ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Which source country of SamurAbsheron channel is the birth place of Anar Salmanov?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +Name the company whose key person is Raymond Conner and produces Boeing CH-47 Chinook?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +Who wrote The Times They Are a-Changin?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +What are other famous works of the writer who created the Sarah Jane Adventures?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +"Where was Ne daj se, Nina first aired ?","SELECT DISTINCT ?uri WHERE { ?uri }",Orange(huggingface) +What are the houses of the legislature where the leader is called Pullaiahgaripalli ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Give me an estimate of the number of manufacturers whose products are managed by MTR?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },Orange(huggingface) +Who developed the programming languages designed by Rob Pike?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Who composed the music for Tonight's the Night ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +list the founders of Bream Bay ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Which royalty's spouse is Ptolemy XIV of Egypt?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +Which city has radio stations which are Religious ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +What is the government type of Ancient Rome?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Whose mam is Bertrada of Laon?,SELECT DISTINCT ?uri WHERE {?uri },Orange(huggingface) +"Which river flows through Hudson Highlands State park and also through Troy, New york ?","SELECT DISTINCT ?uri WHERE { ?uri. ?uri}",Orange(huggingface) +"Which company is located in Harris County, Texas?","SELECT DISTINCT ?uri WHERE {?uri . ?uri }",Orange(huggingface) +Which is the common prospect team of Mikhail Pashnin and Robin kovacs ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +Where was pina Records founded which has also the name of Geography of Puerto Rico?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +Who is a famous relative of Aaround Van Heemstra?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +Tell me the total number of organizations who maintain the bridges made by the malaysian PWD?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?uri },Orange(huggingface) +What is the famous relative of Mrunalini Kunte known for?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +"Amongst the winner of Lovelace medal, who has John Robert as doctoral supervisor ?",SELECT DISTINCT ?uri WHERE {?uri . ?uri . },Orange(huggingface) +What famous work is derived from the one whose lyrics are written by Inma Gonzales?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +Where is the football team located in which Josh Bell did his debut?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +"List all the locations of the companies whose are also located in Rancho Cucamonga, California ?","SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x }",Orange(huggingface) +"Who is the architect of Red House, London?","SELECT DISTINCT ?uri WHERE { ?uri }",Orange(huggingface) +What games can be played in schools founded by Fr. Orlando?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +List few authors whose education took place in Saint Petersburg ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +who are the managers of england national under 20 football team?,SELECT DISTINCT ?uri WHERE {?uri },Orange(huggingface) +What are the albums whose artists have performed with the Tangerine Dream?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },Orange(huggingface) +Which countries militaries fought the SFOR battle?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +What are all the prizes won by the writer of A Grand Day Out?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +What are some rivers in Zambia which have a dam on them?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Name few television shows's anchored by Ryan Seacrest?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +What is the place of birth of the badminton player who is the bronze medalist of Badminton at the 2012 Summer Olympics Women's doubles ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Bantam Spectra is the publisher of which series?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +What is the county of Saint Lucia national cricket team ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +How many people have written for Gangan Comics?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },Orange(huggingface) +Name some local authorities of schools which have a mixed gender education system?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +List the language of Kunsten Museum of moder art Aalborg ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Which artists trained in San Francisco Art Institute?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +How many members are there of the organization headquartered at Amstelveen?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },Orange(huggingface) +Name the TV show broadcasted by Fox and presented by Ryan Seacrest ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +Count the number of religions followed by BJP members.,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },Orange(huggingface) +What common relegion affiliation exists for udit Raj and Wickramabahu Central College ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +Name some shows whose company is owned by the CBS Corporation?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },Orange(huggingface) +Which scientist is known for anthrax and has Karl Ewald Hasse as his academic advisor ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +Which video game's artist is Hiroji Kiyotake and computing platform is Virtual Console?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +With which musical artist is the music group which sung Mind Blowin' related to ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +In which movies has momoko kochi acted,SELECT DISTINCT ?uri WHERE {?uri },Orange(huggingface) +Through how many labels has Katy B released her singles?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },Orange(huggingface) +Tell me the name of the Prime Time Entertainment Network's TV show whose Artist is Christopher Franke ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +What is the area of the Tar Heel Sports Network which is official residence of Michael Nichols (photographer)?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +Give me a count of movies distributed by Warner Bros?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . },Orange(huggingface) +Who have done their PhDs under a National Medal of Science winner?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . },Orange(huggingface) +In how many places are Marjas found?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?uri },Orange(huggingface) +Who are the people whose alumna is a part of the National Collegiate Athletic Association?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . },Orange(huggingface) +"In which team was the person drafted who has studied at the Worcester college, Oxford?","SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x }",Orange(huggingface) +What are some dishes from the family of dishes which primarily use flour?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },Orange(huggingface) +Which sitcoms are made by a company headquartered in NYC?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },Orange(huggingface) +Name the are where South side Elevated Railroad operate and has place of birth as Arthur A. Ross ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +"Which religion do the people follow, whose constituency is Jadavpur?",SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Name the regions served by Toll Global Express ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +How many shows are made by Larry David?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . ?uri },Orange(huggingface) +Name the sharehoders of The National Herald?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Which city near to Elliott Bay was the death place of George F. Moore?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +List the state of the universities whose nation is United States ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +"List the television shows whose distributors are located at Burbank, California.","SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri }",Orange(huggingface) +What is the political party of the daughter of Jawaharlal Nehru ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +How many producers have worked for FremantleMedia productions?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },Orange(huggingface) +Which former team of Franois Beauchemin does the Nathan Dempsey played for?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +Who are the associated musical artist of Carolyn Dennis?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +What are the films where at least one cast member died due to colorectal cancer?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },Orange(huggingface) +"What is the country whose administrative centre is Hagta, Guam?","SELECT DISTINCT ?uri WHERE {?uri . ?uri }",Orange(huggingface) +What are some famous artists who rocked a Les Paul?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +Give me the count of artist in the company whose Artist is Jean- François Coté ?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri },Orange(huggingface) +Who is associated with the musical artists from Africa '70 (band) and Tony Allen ?,SELECT DISTINCT ?uri WHERE { ?uri . ?uri . ?uri },Orange(huggingface) +Into what military organizations is the United States Department of Defense divided?,SELECT DISTINCT ?uri WHERE {?uri },Orange(huggingface) +where did Alfred Tarnowski die?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Where do the CNN employees typically graduate from?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +What is the region served by the governor of Stephen L.R. McNichols ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +What are some shareholders of the bridge maintained by the Massachusetts department of transportation?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +What is the source country of reg Lake ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Where can I find things run by the maritime museum of San Diego?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +How many shows belong to the network one of whose sister station is Cartoonite?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?uri ?x . ?uri },Orange(huggingface) +What is the largest city of the country which have an assembly of Plymouth Savoy?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +"Which officer's final resting place is North Bend, ohio and belongs to Indiana Territory branch?","SELECT DISTINCT ?uri WHERE {?uri . ?uri . }",Orange(huggingface) +List all the wine regions of the grapes whose one of the wine region is Mississippi ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +How many people played for Newell's Old Boys?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . },Orange(huggingface) +"After the death of which political figure, did the Coalition Provisional Authority came into power?",SELECT DISTINCT ?uri WHERE {?uri . },Orange(huggingface) +List the home town of the people who have Ontario as one of it ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Where were some people associated with Steve Winwood employed at?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Which writer has childrens named Mother Mary Alphonsa and Julian Hawthorne?,SELECT DISTINCT ?uri WHERE { ?uri . ?uri . ?uri },Orange(huggingface) +Name the other wine region of the grapes whose one of the wine region is Michigan?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +What are some developers which use Emacs Lisp in their projects?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +"List the base currency of the country whose anthem is Oj, svijetla majska zoro.","SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . }",Orange(huggingface) +"By what style was Providence Chapel, Charlwood made?","SELECT DISTINCT ?uri WHERE { ?uri }",Orange(huggingface) +How many honorary title are there of the scientists who has Australian of the Year award?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri },Orange(huggingface) +Which nearest city of LoDaisKa Site is also the location of Oskar Blues Brewery ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +How many artists are signed up with Celluloid Records?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . },Orange(huggingface) +Which home town of PAvel Moroz is the death location of the Yakov Estrin?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +In how many different teams have all those who have played as a defenceman been?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?uri },Orange(huggingface) +which politician is currently ruling over Rishkiesh?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +"WHich region of the Providence Chapel, Charlwood is also the region of the Joseph Case High School","SELECT DISTINCT ?uri WHERE { ?uri. ?uri}",Orange(huggingface) +Name the company whose products is Boeing F/A-18E/F Super Hornet and key person is Raymond Conner?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +What is the leading party in Baraily which Chandra Shekhar too is associated with?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +What are the movies whose director of photography is Jordan Cronenweth?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +Which political party got elected in First Legislative Assembly of Uttar Pradesh?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Which televion show's theme music was given by Ron Grainer and is broadcasted by BBC HD?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +List the governors of Jimmie Lou Fisher?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +What is the birthplace of Liudmila Privivkova and Qadir Huseynov?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },Orange(huggingface) +Count the number of books whose author's were born in Alcal de Henares ?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?uri ?x . ?uri },Orange(huggingface) +In which races have Tillingdale's horses participated?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Count all the things licensed as Software as a service.,SELECT DISTINCT COUNT(?uri) WHERE {?uri . },Orange(huggingface) +Who founded the sister stations of Discovery Communications?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +What are the last two studio albums of Moondog Matinee?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Count the movies in Swedish language?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . ?uri },Orange(huggingface) +Which company owns Evraz?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +What are some games availible on nintendo's virtual console?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +Where Everybody knows you is the theme album of which show ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +What are some important works of US citizens?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +What is the parent company of the airline whose hub is in Detroit?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +What are the books written by the the person who made the Novelas ejemplares?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },Orange(huggingface) +Which researchers received fellowship from Royal Society?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +WHo gave the lyrcis of Doonesbury ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +What games are played at institutions affiliated with the international association of universities?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +"What are the movies whose editor died in Westwood, Los Angeles?","SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . }",Orange(huggingface) +Of what all has David Ian Salter been an editor of?,SELECT DISTINCT ?uri WHERE {?uri },Orange(huggingface) +To which branch Edwin F. Hunter belong ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +What television shows are distributed by Broadcast syndication?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +What was the language of the single which came before To Know Him Is to Love Him?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +How many TV shows has distributor located in Burbank California ?,"SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?uri ?x . ?uri }",Orange(huggingface) +Name the TV show distributed by Broadcast Syndication and is broadcasted by comedy central?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +What are some things people born in Louisiana are famous for?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },Orange(huggingface) +In how many places did Julian Leow Beng Kim study?,SELECT DISTINCT COUNT(?uri) WHERE { ?uri . ?uri },Orange(huggingface) +What is the common affiliation of the Monroe Carell Jr. Children's Hospital at Vanderbilt and alma mater of the Duncan U. Fletcher?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +which president was served by Joseph Stiglitz?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +where is the thorington train station located?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Name the office holder with successor as Adrian A Basora and child as Lori Black ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +How many books have been penned by Miguel de Cervantes?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . ?uri },Orange(huggingface) +What are the musicals of the people died in California?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },Orange(huggingface) +Who hold stocks in the bank which is located at 731 Lexington Avenue?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +"Who is the founder of Hohenau, Paraguay?","SELECT DISTINCT ?uri WHERE { ?uri }",Orange(huggingface) +What is the district of Fort Heath radar station?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +How many religion's commanders have served in the Royal Thai Army?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },Orange(huggingface) +How many books are there whose author's tomb is in Madrid?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?uri ?x . ?uri },Orange(huggingface) +Which hockey team is head coached by Bill Peters?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +What is the common party of Chandra Shekhar and Govinda?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +Which magazines were founded by ann Wenner ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +"What people were born in Ridgewood, New Jersey?","SELECT DISTINCT ?uri WHERE {?uri . ?uri }",Orange(huggingface) +In which city is the sister station of WCSE-LP located?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +"Which university's affiliation is with Kalpan, Inc. and has campus at Iowa ?","SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri }",Orange(huggingface) +Name few companies founded in Texas?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +Which religion is followed by people in the family of Meadow Sopranos?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +"In which country's cuisine, ham is an important part?",SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +Name the TV show whose company is Playtone and written by Graham Yost?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +What is the university whose affiliations is Graham Holdings Company?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +Name the company which produces Marionette and has key person as Edwin catmull?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +Which appliance's CPU is Cell (microprocessor) and predecessor is PlayStation 2?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +What are the professions of Ralph flanders?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +"Janaka Thissakuttiarachchi follows what religion, which once employed Atisa Srijnana too?",SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },Orange(huggingface) +Name the scientist who was the winner of Royal Society award and had Georg Meissner as his doctoral advisor ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +What is the draft team of Gene Conley?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +List the common relegion affiliation of khadra Haji Ismail and Yasmin khatun ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +Name the home ground of 2015 Fort Lauderdale Strikers season ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +In how many different places have US people died?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?uri },Orange(huggingface) +What awards did the cast members of Gods of Egypt win?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +Name all the products produced by the producer of United States dollar ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +Name the person who was educated at Harvard-Westlake and won the Screen Actor Guild Life Achievement Award ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +What is the religion of the academic authority on Ceratosoma tenue?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +Name the city with leader as Esther Alder and neighboring municipality as Pregny-Chambsy?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +How many people have coached the players of Middlesbrough FC?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?uri },Orange(huggingface) +Which cities were in the TV Show which came after The Ultimate Fighter: Brazil 2?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +What are the nearest city to the historic places whose one of the nearest city is Wisconsin?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +What are the teams for which Wilfred McDonald played for?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +What relegious affiliation of Josiah Idowu-Fearon was canonized by john of Damasucs ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +"Name the office holder whose predecessor is Henry E. Catto, Jr. and successor is Adrian A. Basora?","SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri }",Orange(huggingface) +Give me the count of tenants of the stadia whose one of the tenants is Toronto Furies?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri },Orange(huggingface) +Graduates of Somerville College have been in how many political parties?,"SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . }",Orange(huggingface) +Stockholm is the HQ of how many things?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . },Orange(huggingface) +Which birthplace of Svetlana Gounkina is also the largest city of Union State?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +What currencies are used in the country whose capital is Podgorica?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +Count the different genres of music made by Argentinian bands?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?uri },Orange(huggingface) +Chestnut colored horses have won which races?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +"Who is the person whose home town is Fairmount, Indiana?","SELECT DISTINCT ?uri WHERE {?uri . ?uri }",Orange(huggingface) +Where was the Temptation Waits recorded?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +What is the Team Name of St Viator High School ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Where did Rheinmetall MG 60 originated ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Count all the books written by an author buried in the Convent of Barefoot Trinitarians?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?uri ?x . ?uri },Orange(huggingface) +List down the opponents of Frank Stilwell?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Who were the narrators of the albums which had Ringo Starr as one of the narrator ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +How many have family as Ape and order (taxonomy) is Primate ?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . ?uri },Orange(huggingface) +How many people are buried in the Winchester Cathedral?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . },Orange(huggingface) +What are the type of Greenup County High School?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +List the television shows whose network's executive officer is Steve Burke.,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },Orange(huggingface) +What writers have nationality as Statelessness?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +Where is the headquarters of the company which runs the Metro Blue Line in minnesota?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Which saints were the messengers of Islam?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +"Which office holder's resting place is in Palo Alto, California and was succeeded by Adrian A. Basora ?","SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri }",Orange(huggingface) +What are the movies whose musicians's home town is Volos?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },Orange(huggingface) +In which country was Gumus first aired which is also the mouth country of Upper Neretva?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +Which animator of Tommy Tucker's Tooth is also the film director of Alice's Wonderland ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +Who discovered Callisto ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Which city's foundeer is John Forbes?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +What are the mascots of the teams participating in the Turkish Handball Super League?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +In which countries does the sea lie on whose shore is the city of Cumana?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +List the resting place of the people who served in Norwalk Trainband.,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +"What are some licensees of the stations playing in Nashville, Tennessee?","SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x }",Orange(huggingface) +Name some comic characters created by Bruce Timm?,SELECT DISTINCT ?uri WHERE {?uri . },Orange(huggingface) +Where did the office holder who has predecessor Marco Aurelio Robles died?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +What band had Nick Jonas and Kevin Jonas as former members?,SELECT DISTINCT ?uri WHERE { ?uri . ?uri . ?uri },Orange(huggingface) +"List the significant buildings of the architect whose one of the important work is Government Building, Kiev ?","SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x }",Orange(huggingface) +Name the island with archipelago as Society Islands and has the largest city named Faaa ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +Who acted in the movies whose music is composed by Walter Scharf?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +List all the parents of writers coming from the Great Missenden ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +What is the political party to which Purnima Banerjee is a member of??,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Why did Letita McTavish Hargrave and Sextus Barbour die?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +How many different genres led to other genres where drums are important?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?uri },Orange(huggingface) +Which mascot of Seneca Academy is also the species of The Fox and the Cat ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +How many scientist became famous for the battle of Occupation of Japan?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?uri ?x . ?uri },Orange(huggingface) +Which company owns instagram?,SELECT DISTINCT ?uri WHERE {?uri },Orange(huggingface) +Members of how many political parties have died in Delhi?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },Orange(huggingface) +What is the faith of the Ajith Perera and religious affiliation of the Neungin High School?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +Which country's national motto is Truth prevails?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +Total number of places where people drafted by the detroit pistons have died?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?uri },Orange(huggingface) +Which books were published by Thomas Egerton?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +Name the composer of motorpsycho Nitemare ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Who was succeeded by Arthur Gegei as the office holder ?,SELECT DISTINCT ?uri WHERE {?uri . },Orange(huggingface) +Whose famous works are Maniac Magee and Wringer ?,SELECT DISTINCT ?uri WHERE { ?uri . ?uri . },Orange(huggingface) +What is the former team of the Athens borned basketball players?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Who built the Ford Y-block engine?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Count the wars in which people awarded with the Croix de guerre fought.,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?uri },Orange(huggingface) +Waddy wachtel did the music for what movies?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +Where can I find companies which originated in Canada?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +What is the workplace of Christopher S. Stewart ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +What is the religion of the person who founded the Emel magazine?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Which animator of The Skeleton Dance is also the animator of the Tommy Tucker's Tooth ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +List the ingredient of Blodpalt?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Which office holder allegiance is Colony of Virginia and has a wife named Dolley Madison?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +What is the total number of participants in the conflict of SFOR and other conflicts?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },Orange(huggingface) +What is the alma mater of Julian Leow Beng Kim?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +What is the resting place of the person who is the successor of James W. Hyatt?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Name the river with source as Columbia Lake and river mouth is located in Clatsop Country ?,"SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri }",Orange(huggingface) +What is the location of the pope whose major shrine is St. Peter's Basilica ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +"What is the location town of First Church of Christ, Scientist (Pittsburgh)?","SELECT DISTINCT ?uri WHERE { ?uri }",Orange(huggingface) +What religion does roshan ranasinghe and nhiek tioulong follow?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +What are some other products of the banks which makes Postbanken?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +What movies have been written by authors of Monty Python ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +What is the country with native language as Languages of Ethiopia?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +Name the commanders of military conflicts where Roundhead was one of the commander ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +How many have been venerated in Islam and Judaism?,SELECT DISTINCT COUNT(?uri) WHERE { ?uri . ?uri },Orange(huggingface) +What country did the successor of William Ofori Atta swear his oath to?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +How many companies have developed cross platformed software?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },Orange(huggingface) +What are Jerry Bock's musicals based upon?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +What are the mammals whose phylum is Chordate?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +Whose deputy is Neil Brown?,SELECT DISTINCT ?uri WHERE {?uri . },Orange(huggingface) +What is the county seat of Moscow Governorate ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +List all the doctoral student of the scientist who has advised john Bowlby?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Which source of broad creek is the Audenried tunnel located?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +What is the citizenship of Erastus Wiman?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Who has authored books published by the Perkins school for the Blind?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Name the office holder whose child is Lori Black and predecessor is Henry E Catto Jr?,"SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri }",Orange(huggingface) +What is the origin of the musical artist whose associated band is Ziggi Recado?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +What award was won by the father of Angelina Jolie?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +How many relatives are there of veterans of operation Barbarossa?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },Orange(huggingface) +Name all the soccer players who played in an under 18 club for La Liga?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },Orange(huggingface) +In which religions are both Pope Gregory 1 and Edwin of Northumbria revered?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },Orange(huggingface) +Give me a count of bridges located in California ?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . ?uri },Orange(huggingface) +What was the stadium of Panionios G.S.S. in 2014-15 season ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Which serving railway line of the Rostov-Glavny is also the place of birth of Nina Vislova?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +Name the Fox TV show judged by Rand Jackson?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +What is the subject of The Prodigal son ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Where does the river flow into which begins in Lebrsnik?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +Which person belongs to the board of Howard Hughes Medical Institute?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +Who is the headcoach of 2008-09 Marquette Golden Eagles men's basketball team ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +What are some primates?,SELECT DISTINCT ?uri WHERE {?uri . },Orange(huggingface) +What awards have been given to Screenwriters?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +What is the operating system of the LG Optimus Vu and also the developer of the Dart (programming language),SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +Who was the architect of the stadium currently run by Brandenton?,"SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x }",Orange(huggingface) +Which river flows through Central Washington?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Which maintainer of Cheasty Boulevard South is also the city of Soccer Bowl' 76 ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +Which company released the software RenderMan?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +Count the battles fought by Raoul Magrin-Vernerey?,SELECT DISTINCT COUNT(?uri) WHERE { ?uri . ?uri },Orange(huggingface) +What sports are played at institutes affiliated by the Association of Southeast Asian Institutes of Higher Learning?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Who is the maker of Eristoff?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +To which series does the book belong which came after the Blade Runner 2?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +Who are the associated musical artist of the artists of band Shorty Rogers?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +To which label did The Producers and I pray on Christmas sign up?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +Where is the station whose sister channel is the Channel 3 in Thailand?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Which sports are played at both the Polytech uni of Bataan and Taguig?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },Orange(huggingface) +Where is the headquarters of Sigma TV,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Who was the vice president under which elizabeth alexander served?,SELECT DISTINCT ?uri WHERE { ?uri . },Orange(huggingface) +What is the state of origin of the president whose alma mater is Hellenic Naval Academy ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Who is the starring of the movies such that music is by Raamlaxman?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Count the number of members of the organization which have Austria as one of the member ?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri },Orange(huggingface) +What is the city nearest to the islands in the Northwestern Hawaiian Islands?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Who is married to Gerard Pique?,SELECT DISTINCT ?uri WHERE {?uri . },Orange(huggingface) +Name the nearest city to David W. Brown House ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +What products are made by Tehran based companies?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Was Elton John a chairman of a Watford FC Season?,ASK WHERE { },Orange(huggingface) +Who all have been a president of educational institutes in Paud?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Who is the former partner of the pupil of Dalilah Sappenfield?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +What is the river whose source is Cowombat Flat and has it's mouth located in Murray Mouth?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +What sports team's arena is The Palace of Auburn Hills,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +Which official residence of hugh Scott is also the origin of Long Rifle ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +Which writer of A literary Nightmare also extended the work of The Apple tree ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +How many movies did Joel Schumacher direct?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . ?uri },Orange(huggingface) +Among the scientist known for Manhattan Project who had a doctoral student named Charles Ellis ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +What is the birth city of trainer of Leallah?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +List the area of radio stations whose sister station is WBCQ-FM?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +Who does Cam PLante plays for ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +What is the draft team of the Antoine Bibeau and also had player named Nathan Dempsey?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +How many different people hold authority over the members of Balanidae family?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },Orange(huggingface) +Name the musical artists whose label is given by Kobalt Label Services?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +What is manufactured by a company founded by Akio Morita?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . },Orange(huggingface) +Give me a list of all the buildings which are located in districts governed by John Tory.,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },Orange(huggingface) +List the first drivers of Grand Prixes where Mika Hakkinen was a pole driver.,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Which video game composed by Hirokazu Tanaka can be played on virtual Console ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +Which institution of the Alton Ochsner is also the alma mater of John Michael Seabright ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +where are the sister stations of CFRB broadcasted?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +"Which award that has been given to James F Obrien, had used Laemmle Theatres for some service?",SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +Where has Garbage recorded its singles?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +How many movies music composers are associated with Demis Roussos ?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?uri ?x . ?uri },Orange(huggingface) +Who has fought in wars under commander Arthur St Clair?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +Which are the predecessor of Chevrolet Caprice?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Who is the producer of the device which is the operating system of Now TV ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +What is the name of the television show whose company is Paramount Television and theme music composer is Gary Portnoy?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +What is the draft team of Dale Mitchell (ice hockey) ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +What currencies are circulated in the countries where people speak French?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Name the shows whose theme was composed by a band in which Jay Lane used to be?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },Orange(huggingface) +Count the number of fileds of the scientist whose one of the interest is Chinese poetry?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri },Orange(huggingface) +Murray Gold has composed music for how many things?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . },Orange(huggingface) +What is the mascot of the alma mater of Deborah Crombie?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +List the current members of Metro Station (band) ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +In which cities were the chess grand masters born?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +How many famous people are born in Long Island?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . },Orange(huggingface) +What is the launch site of the Juno I which was also the ground of 2016 Fort Lauderdale Strikers season ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +How many veterans are buried in the US?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . ?uri },Orange(huggingface) +Who was the First Driver of 1999 San Marino Grand Prix ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +How many other important things has the painter of Sarah Jane Adventures done?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },Orange(huggingface) +"To what other locations does the airlines have flights, who also fly to Birmingham?",SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +How many people are in the band with Juelz Santana?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?uri },Orange(huggingface) +What is the layout of the automobiles designed by Olivier Boulay?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Name the products of Den norske Bank?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +what are some players of England national football team?,SELECT DISTINCT ?uri WHERE {?uri },Orange(huggingface) +How many other battles have the military person fought whose one of the battles is World War II ?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri },Orange(huggingface) +Name the country with currency as Aureus ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +Who developed games based on the Cars series?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +List the houses of Parliament of India ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Name the Chris Marve's school ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Who is the developer of the software which serves the platform for King's Quest VI?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Name the TV show whose network is NBC and is the subsequent work of Fraiser?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +tell me the school to which Cyril Hume went?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Joe Hahn is the member of what band?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +Who founded a company which served Mid Wales ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +Where was founded the trade union with whom Amalgamated Clothing Workers of America is affiliated?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +"Who studied at Harvard-Westlake School and has Henry E. Catto, Jr. as predecessor ?","SELECT DISTINCT ?uri WHERE {?uri . ?uri . }",Orange(huggingface) +Who is the prime minister of the successor of Kingsley Wood?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +What sports are played in schools in the capital region?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Ontario's ice hockey players have been a part of which teams?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Name the television show developed by J. Michael Straczynski and distributed by Warner Bros. Television?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +Name some basketball players who have played for chicago bulls?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +List all the narrators of the albums which had Alan Barzman as one of the narrator ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Who is the author of Karakuri Dji Ultimo?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Who made the singles on the famous album Aida?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +AH141 highway is a part of which country?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +In how many places were the albums of King Crimson recorded?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },Orange(huggingface) +List the home stadiums of the teams in the Russian Premier League?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +Which place is Penobscot Island Air founded and is also the birthplace of Ellei Johndro?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +What are some devices whose manufacturers are in taiwan?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },Orange(huggingface) +Give me the count of all people who ascended a peak in California?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?uri },Orange(huggingface) +How many people have written stuff broadcasted on the Tokyo Broadcasting System?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?uri },Orange(huggingface) +What software is developed by GNOWSYS and is licensed by Frontaccounting?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +What is the area of the broadcast network which has the affiliation with 9TV?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +What is the basketball team whose President's college is Brockport Golden Eagles?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },Orange(huggingface) +"Which sucessor of George Madison is the sucessor of levi Lincoln, Sr. ?","SELECT DISTINCT ?uri WHERE { ?uri. ?uri}",Orange(huggingface) +"Where are the philosophers from, whose main work is on the matter of feminism in Canada?",SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +How many religions are followed by the group whose architectural style can be seen on Sanggar Agung?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Who were some governmental heads in Nazi Germany?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +What is father's name who also served in military of Carlene Carter?,SELECT DISTINCT ?uri WHERE {?uri . },Orange(huggingface) +Who is the fictional character whose relative is Vestigial Peter?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +List the companies operating in Australia?,SELECT DISTINCT ?uri WHERE {?uri },Orange(huggingface) +What is the birth city of the Salford City F.C players?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +For which teams did the Hawai graduated players play their first game?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +What is the television show whose previous work is The Spirit of Christmas (short film)?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +Whose band members are known to play a PRS guitar?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . },Orange(huggingface) +How many sitcoms are there whose theme music is composed by a New Yorker?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?uri ?x . ?uri },Orange(huggingface) +Where is Tahual located which is also the country of Ren Romano ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +"Give the name of the river with source place as Australian Alps and has mouth place as Goolwa , a place in Siyuth Australia ?","SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri }",Orange(huggingface) +Name everyone working for a company owned by Roman Abramovich.,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . },Orange(huggingface) +Name the writer of South Park: The Stick of Truth ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +What magazines are form the Limited liability company?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +Which footballers did their high school in west Sacramento california?,"SELECT DISTINCT ?uri WHERE {?uri . ?uri }",Orange(huggingface) +Where did Whitney Wistert debut?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Which employer of Michael M. Sears is also the producer of Delta III ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +Name the tenants of MAsterCard center wich is also the draft team of Antoine Bibeau?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +What is the origin of Xynisteri?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +What is the highschool of the american football player who joined the Robert Morris Colonials program?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +What are some orthonychidae birds?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +what awards have been given to A. Peter Dewey?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Which president was served by someone whose lieutenant is Lewis Stuyvesant Chanler?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +Whose theme music is composed by the band one of whose member is Les Claypool?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . },Orange(huggingface) +What religions do politicians in the Korean Minjoo Party follow?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +What is the venerated in of the Abraham and religion of the Saima Chowdhury?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +Name the common record label of I pray on Christmas and Next Thing ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +What is the place of birth of Lauren Briggs?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Who wrote the singles on the Main Course?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +"Where is the county seat of King County, Washington?","SELECT DISTINCT ?uri WHERE { ?uri }",Orange(huggingface) +What is the television show whose opening theme is Te Deum (Charpentier)?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +Which team of Dan Shamash is also the debut team of John Estes?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +List the scientists whose doctoral advisor is Ernest Rutherford and are known for Manhattan Project?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +List the producers who produced movies starring Michael Jackson.,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +How many politicians reside in Cape Town?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . ?uri },Orange(huggingface) +Which successor of McDonnell Douglas was built by Delta 3 ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +Who is the appointer of William Cushing?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +What is the alma mater of the author of Letter to a Christian Nation?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +Which manufacturer of the Boeing B-17 Flying fortress is the manager of burro Flats Painted Caves ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +Who is the producer of the single which was the subsequent work of He's a Liar?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +How many artists have collaborated with famous guitar players?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?uri },Orange(huggingface) +what kind of things play on WBIG FM?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +"Which location of INKAS is also the location of T.I. Ahmadiyya Senior High School, Kumasi ?","SELECT DISTINCT ?uri WHERE { ?uri. ?uri}",Orange(huggingface) +Where was MacKenzie Miller born?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +In how many countries does the Zurich Affoltern am Albis Zug line go?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?uri },Orange(huggingface) +List the movies whose cast member were born in Scotland.,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },Orange(huggingface) +How many bands collaborated with artists who signed up with EMI?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?uri },Orange(huggingface) +Where is the tomb of son of Bruce Lee?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +Whose music composer is signed up with Sony Music Entertainment?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . },Orange(huggingface) +What genre's software are released with a GNU GPL license?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },Orange(huggingface) +How many people have played for the ones who own the stadium of Bankers Life Fieldhouse?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?uri ?x . },Orange(huggingface) +List the stadium of the teams which uses Nea Smyrni as one of the stadium?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +How many things are aired on BBC HD?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . },Orange(huggingface) +Where was david Scherman trained ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +What is the label of the singles whose group is Outlawz?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +How many people hold important positions alongwith Donna Shalala?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },Orange(huggingface) +What are the outflow of the lakes which also has one of the outflow as Congo River?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +List down all the associcated musical artist of the artist of In a Word or 2?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +Who created the Women in the Garden and also the L'Enfant a la tasse?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },Orange(huggingface) +Where is the residence of the governor of Bangkok?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +Name the rivers which originate from within Pittsburg?,"SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri }",Orange(huggingface) +Which universities are also known as the Tulane Green wave?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +What do typically NGOs work for?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +Where is the senator from whose successor was James belford?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Name the company which provides Outlook.com as service and also has a product named Microsoft Azure?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +In how many different places can I fnd Modern Architectural buildings?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },Orange(huggingface) +Which sports are played in schools founded by Fr Almeida?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +To which persons is Ron Cyrus a relative?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +"Where were the sportsmen born, who started their careers with Homestead Grays?",SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +List the relatives of the governor of Gabriel Slaughter?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +What are the nicknames of the schools whose color is royal blue?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +"What all is produced by companies in Douglas, Isle of Man?","SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x }",Orange(huggingface) +What are the bands associated with the artists of My Favorite Girl?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +Name the resting place of Charles Edward Magoon?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Give me some administrators of bridges over which cars can go?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Which president of the United States had vice president as John Adams?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +Name the rive whose mouth is located in Limerick and location is Dowra?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +Was Finding Nemo released before The Incredibles?,ASK WHERE { },Orange(huggingface) +Which city is known for the people working in the western penn hospital?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +What is the constituency of Santo Versace?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +List the party of the office holder which also has the affiliation with Congress Socialist party ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Who is the person that first ascentded the Cathedral Peak and Mount Hoffmann?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },Orange(huggingface) +Who is the designer of Saleen S5S Raptor?,SELECT DISTINCT ?uri WHERE { ?uri . },Orange(huggingface) +Into which water bodies does Lake Uniamsi outflow?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +"What nation is Hornito located in, where Jamie Bateman Cayn died too?","SELECT DISTINCT ?uri WHERE { ?uri. ?uri . }",Orange(huggingface) +Name some sports played in institutions of Maharashtra?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +What are the other band member of the Bands whose current members is Hynief?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Who is the singer of the album which has a song Me and My arrow ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Who all have been presenters on shows by the NBC?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +"Of all the teams that Andrew Economos played for, which one did Jerrel Jackson play his first game for?",SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +What is the game platform of Google Cloud Connect?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +List some musicians associated with famous guitar players?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +What is the affiliation of Lumbini Bauddha University ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Where was Al-Muzaffar Umar buried ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +How many shows are made by Playtone?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . ?uri },Orange(huggingface) +For how many different teams have the players debuted in Houston Astros played?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?uri },Orange(huggingface) +In which city was the film star of Singhasan Battisi born ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +Which countries came together to serve a greater purpose and founded South Asia Subregional Economic Cooperation?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Which television shows have been produced by Erik Bork?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +How many parties have come in power in elections where Y. S. Rajasekhara Reddy won?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },Orange(huggingface) +Count the number of sports played by university which also plays Taekwondo ?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri },Orange(huggingface) +Name the person who died in Fair Lane ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +Name the resting place of Fazlur Rahman Khan ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Who are the writers of the singles whose music genre is Rhythm and blues ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Which country's largest city is Lima?,SELECT DISTINCT ?uri WHERE {?uri },Orange(huggingface) +Which Tim Birton's movie has a screenplay by Daniel Waters ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . },Orange(huggingface) +What is the city of the television station whose affiliations is LATV?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +What are the awards won by the spouse of Liv Ullmann?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +Which gadgets are made by companies of New Taipei City?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . },Orange(huggingface) +In how many different wars have people graduated from the Army Command and General staff college fought?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },Orange(huggingface) +Who is the president of United World College of Costa Rica ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Name the office holder who has a child named lori Black and Harvard Westlake school as one of the educational institute ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +Who were the founders of Sea Gayle Music?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Who founded the league which was won by Joe McKeehen?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Which team did Dough Acomb played for which is also the draft team of Dale Mitchell ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +where did Deion Sanders debut?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Who develops the Lao Plaza Hotel?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +What acts and artists are associated with people who have worked with Divertis?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +Which home stadium of 2011-12 FC Spartak Moscow season is also the location of birth of the Svetlana Gounkina ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +What religions are followed by members of the societies whose architectural influences can be seen on the Sanggar Agung ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +How many units follow the US Navy Department's command structure?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . ?uri },Orange(huggingface) +Which baseball team is owned by Robert Nutting?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +List the television shows whose network's owning company is Turner Broadcasting System?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },Orange(huggingface) +List all the houses of United States Congress ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Where all does the sister station of virgin radio play?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +Who are the children of Abigail Adams?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +"How many things are located in Ridgewood, New Jersey?","SELECT DISTINCT COUNT(?uri) WHERE {?uri . }",Orange(huggingface) +How many people are there whose children died in Indiana?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?uri ?x . ?uri },Orange(huggingface) +Which country are the players of the Atletico Petroleos de Luanda from?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Which comic characters are painted by Bill Finger?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +"For which reasons have the ones born in Edinburgh, died?",SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +What is the nickname of the city where Tuba Dei lives?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +Which employer of Manu Cornet has also written Google.by ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +List the relatives of the children of Jon Voight ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +Name the constituency of Jonas Gahr where Sverre Krogh was born ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +Which mountains are contained in Inyo National Forest?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +Who are the employer of Don R. Berlin?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Who is the stockholder of the road tunnels operated by the Massachusetts Department of Transportation?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Which governor of Charles Willing byrd fought the battle of Siege of Fort Recovery?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . },Orange(huggingface) +How many different people have been in any political seat in places which are under the Indian Standard timezone?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },Orange(huggingface) +Name the hockey team which has head coach as Mike babcock and is based in Toronto ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +Who is the owner of the South end?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +What is the religion of the political party which is an international party of Hamas?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +How many owners owned the clubs participating in the Premier leagues of '14?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },Orange(huggingface) +To which educational institutes is Samuel Isham associated to?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Which musical artist associated with Tony Allen has label with Celluloid Records ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +Who had headed the governmental agencies whose admin HQ was in Niederkirchnerstrasse?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Who was the coach of marquette Golden Eagles men's basketball team 2012-13 season ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +"Name the river whose source is located in Itasca State Park and mouth is located in Pilottown, Louisiana?","SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri }",Orange(huggingface) +What is the profession of the William Luther Hill and also the office of the Richard Coke ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +In which cities are there american football teams where Matt Snorton played?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +What are the central characters in spy kids series?,SELECT DISTINCT ?uri WHERE {?uri . },Orange(huggingface) +How many religion's people have died in Malaysia?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },Orange(huggingface) +List the mountains of the range Sierra Nevada (U.S.) located in California?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +Name the emplyer for which Manu cornet has worked and also written in Google Web Toolkit ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +What are the broadcast areas of Mauritius Broadcasting Corporation?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +How many cars are the predecessor of cars similar to the Pontiac G8?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Which person naratted The Incredible Hulk and also the writer of Tales of Suspense?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +EU Broadcasting Union is the owner of the distributor of what?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . },Orange(huggingface) +What are some islands in the bahamas?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +Name the river whose source location is Nevado Mismi and region is Arequipa Region?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +Who are the cast members of The Simpsons Ride?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Where is the origin of Filbert's Old Time Root Beer?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +What type of engines are utilised by Purvis Eureka?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +"List the people residing in Wilton, Connecticut?","SELECT DISTINCT ?uri WHERE {?uri }",Orange(huggingface) +How many sitcoms were produced by the company whose predecessor was the Desilu Productions?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?uri ?x . ?uri },Orange(huggingface) +To which US states does the roads belong which meet at the East Whiteland Township in Pennsylvania?,"SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x }",Orange(huggingface) +Whose network's parent organisation is Comcast?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . },Orange(huggingface) +Name the TV show whose producer is Stephen E. Ambrose and company is HBO ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +Name the district of Robert William Wilcox?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Which division of Serbia national team is also the region of Dobinsk Ice Cave?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +In how many places has Garbage recorded their songs?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },Orange(huggingface) +Which vice president of Warren G. Harsing is also the president of Evans Hughes ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +How many religions are followed amongst the people who've worked in the Korean army?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },Orange(huggingface) +who manufactures the SHO V8?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +How many things are crossed over by bridges which can carry cars?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },Orange(huggingface) +What is the religious affiliation of Wickramabahu Central College (National School)?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +How many people were opponents of the ones buried in the tower of London?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?uri },Orange(huggingface) +"Which are the cities on the river which also flows in Tukwila, Washington ?","SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x }",Orange(huggingface) +Who was the director of photography of Mickey's Mellerdrammer and the animator of Tommy Tucker's Tooth?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +Was Buzz Williams the headcoach of the Marquette Golden Eagles mens team?,ASK WHERE { },Orange(huggingface) +How many other schools are there of the rugby players whose school is Michaelhouse ?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri },Orange(huggingface) +How many people have played for a club whose coach is Fred Hoiberg?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?uri ?x . },Orange(huggingface) +Which artist married to Lee Krasner?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +What layout can be found in cars similar to the Subaru Outback?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Who was the designer of john madden Football '92 ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Count the number teams which have former ice hockey players which also included American Hockey League?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri },Orange(huggingface) +"What team were the people drafted to, which are in the National Hockey League?",SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Which philosophy journal has compiler as Stephen Law ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +How many have order (taxonomy) as Bacillales and division as Firmicutes are there?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . ?uri },Orange(huggingface) +Name the stadiums of 2015 Pro Duta FC season?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Name the largest city in the county where there is a Cy-Fair High School.,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +"Which things have been located, where governance is Houston City Council?",SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . },Orange(huggingface) +Which american football players currently plays for Michigan Wolverines?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +"Name the team for which Hensley Meulens played, which was also the debut team of Steve Ontiveros ?",SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +What are some products of the company whose parent is BBC?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +What is the alma mater of Andrew W. Lewis ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Which writer of A streetcar Named Desire is also the author of The Catastrophe of Success?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +What are the notable commanders of the army whose one of the notable commanders is Paul Hausser?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +"For how many PMs did the politician work, whose successor was Kingsley Wood?",SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Which race is the Best Mate is also the race of the Martin Molony?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +Is Michael Schumacher the first driver of the 1994 Hungarian grand prix?,ASK WHERE { },Orange(huggingface) +What killed John Thompson Mason and Martino Martini?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },Orange(huggingface) +Which moto of american Classical League is also the academic discipline of Probus?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +Who fought in the battle at Tupelo Mississippi?,"SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x }",Orange(huggingface) +What are the books written by authors who died in Madrid?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },Orange(huggingface) +By which companies is RENFE Class 333 designed?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Gregg Toland cinematographed how many things?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . },Orange(huggingface) +What are some countries where companies headquartered in the Klang Valley operate?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +What are some languages in the italic family of languages?,SELECT DISTINCT ?uri WHERE {?uri },Orange(huggingface) +How many cities are close to Lake Victoria?,SELECT DISTINCT COUNT(?uri) WHERE { ?uri . },Orange(huggingface) +What is the birthplace of the netball player who is the relative of Rachel Rasmussen ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +List the academic discipline of the journals whose one of the discipline is neuro imaging ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +What is the place of death of the lieutenant of Frank Steunenberg?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +name the home stadium of FC Spartak Moscow season 2011-12,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Does the white river flow into the connecticut river?,ASK WHERE { },Orange(huggingface) +Which artist was taught by Jos Ruiz y Blasco?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +Which education center Sidney Catlin Partrodge attended which was also the alma mater of Lisa Brummel ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +List the bacterias whose division is Firmicutes and domain is bacteria?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +Which composer of Motorpsycho Nitemare has also composed The time are A-Changing?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +What is the nationality of the J. T. Krogh which is also the sovereign state of the Camilla Martin?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +Name the river whose source place is Gloucestershire and mouth place is Southend-on-Sea ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +Who has built the stadiums which were rented by the Central american games of 2013?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +How many cities are around the sea in which the the fig tree bay meets?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Who all were venerated in Islam?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . },Orange(huggingface) +List down the cinematographers of Mickey's Mellerdrammer?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Who appointed the successor of Thomas Bee?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +"Where is the ground of the soccer club, which has Alan Kusov as a team member?",SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Which shows have voices from people signed up with ABC Records?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },Orange(huggingface) +"How many licensees are there, of the radio stations whose area is Nashville, Tennessee?","SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . }",Orange(huggingface) +Who was the architect of the stadium currently run by the Pittsburgh Pirates?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +"What is the country where Sergei Ovchinnikov the volleyball player died, and Gumus was first aired ?",SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +Who are the spouse of the actors of Wrongfully Accused?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +What is the county seat of the county which has an Evergreen High School?,"SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . }",Orange(huggingface) +List the important people of Maryland Jockey Club ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Who founded the Not on our Watch?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Who all have written songs that were then recorded in the Criteria Studios?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +"For how many things are people famous, who were born in Nebraska?",SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },Orange(huggingface) +"Who is the chancellor of the university whose campus is in Woodlane, New Jersey ?","SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x }",Orange(huggingface) +What is the place of birth of the Michael Marder which is also the place of death of the Tigran Petrosian,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +What is the hometown of John Speraw ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Which borough of the Corringham railway station is also the local authority of Buckhurst Hill County High School ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +Name the rivers originating from an English speaking nation?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },Orange(huggingface) +Who are the spouse of the parents of Kimberly Stewart?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +What are some movies whose distributor's CEO is Ted Hartley?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },Orange(huggingface) +Where do the sister stations of Al Khaleejiya 100.9 play?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +Which company manufactures cars like the Opel Karl ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +What shows are aired on sister channels of BBC Parliaments?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },Orange(huggingface) +Who are the players whose current clubs have Ferran Soriano as chairman?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },Orange(huggingface) +Who designed the stadiums which have been rented by Oakland athletics?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Who was the silver medalist of Gymnastics at the 2008 Summer Olympics Women's artistic individual all-around?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Where did Goran Cengic die?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +To which educational institute does Cornell University Press belong to?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +"Which company assembles its cars in Broadmeadows, Victoria?","SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x }",Orange(huggingface) +Which university attended by Franklin W. Olin was also the alma mater of Patty Lin ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +Name the sitcom with theme music composer as Julian Gingell and channel as Fox Broadcasting Company?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +What is the place of birth of the jockey who breeded De La Rose ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +What is the local authority of Liverpool Institute High School for Boys?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +What city has the football team in which Lee Robinson debuted?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +How many venues are located in the US?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . ?uri },Orange(huggingface) +List the Swedish newspaper headquarted in Stockholm ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +Who is the leader of Panki block?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Name the royalty whose mother was Cleopatra V and was married to Ptolemy XIV of Egypt?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +What is the device whose successor's CPU is by AMD?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },Orange(huggingface) +Which companies have Kumho Asiana Group as their parent company?,SELECT DISTINCT ?uri WHERE {?uri },Orange(huggingface) +Where does John A Danaher III work?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +List the subjects of the books whose one of the topics is Pau Broca ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Where is the south shore plaza located?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Who first ascended a mountain of Cathedral Peak (California)?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Which famous philosopher died on island Euboea?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +List sports managers who managed Middlesbrough F.C. and England national under-21 football team?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +Which religion is followed by the PM who was served by Chea Sim?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +Which cover artist of the The Adventures of Tom Sawyer is also the source of inspiration of The Appple Tree ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +Whose work is in the Musee d'orsay?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +"Name the university whose affiliations's foundation place is Washington, D.C.?","SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri }",Orange(huggingface) +What is the home town of the Band which is the previous work of Sammy Hagar & Friends ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +What is the debut team of Tom O'Malley ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +"What is the almamater of the successor of F. A. Little, Jr.?","SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . }",Orange(huggingface) +Name the mascot of the military branch of William Harper.,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +Which team has had both Martin prochzka and garry unger as its players ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },Orange(huggingface) +Which publisher of Lucifer's hammer is also known for Jo Garcia ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +"What is the residence of the person, who starred in Men Will Be Men ?",SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +"From how many works is the musical derived, whose lyrics are written by Sheldon Harnick?",SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },Orange(huggingface) +How many other people are in a band with Robert de Niro?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?uri },Orange(huggingface) +Name the movie with narrator as Trevor Peacock and music composer as Christophe Beck?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +How many people play for the Dallas Cowboys?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . },Orange(huggingface) +What are some famous works of the writer of The Second Coming?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +What is the debut team of ngel Escobar?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +What stadium's operator is Stan Kroenke?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +"From how many coutries do companies come, which are headquartered in the Klang Valley?",SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?uri },Orange(huggingface) +List the books by the authors buried in the Convent of the Barefoot Trinitarians?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },Orange(huggingface) +Who works at the American Magazine and New York Post?,SELECT DISTINCT ?uri WHERE { ?uri . ?uri . },Orange(huggingface) +Where can i find companies which were started in Toronto?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +For how many different presidents have people in the Continental Army served?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },Orange(huggingface) +What is the name of the characters created by Frank Miller?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +What television shows's distributor is Eurovision?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +Which company produced the car which was a new version of Daewoo's Tico?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +To how many different species does the members of the Animal Kingdom belong?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?uri },Orange(huggingface) +Where does the successor of Thongsuk Samdaengpan reside?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +What non fiction subjects are covered in books by Doubleday publishers?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +List the software developed by Shawn Fanning ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +How many nations' volleyball players have played for the Russian women volleyball team?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?uri },Orange(huggingface) +In what movies did Akira Ifukube compose the music?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +Which HBO's television series was produced by Erik Bork?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +Organization holding stocks of Galician and German wikipedias?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },Orange(huggingface) +Where was Sino-French War fought ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Which expertise of the Menetries's warbler is the nationality of the Jeyhun Abiyev ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +Name the movie which has music composed by Elliot Goldenthal and screenplay by Akiva Goldsman ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +What is the location town of Seattle Great Wheel ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +What territory of Sino French War was the battle of Raoul Magrin-Vernerey fought?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +which band was Roger waters in?,SELECT DISTINCT ?uri WHERE {?uri },Orange(huggingface) +Who was the coach of 1972 Oakland Raiders season ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +List the origin of the weapons which were used in the American Revolutionary War.,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Which statesman is married to Dolley Madison?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +What kind of music is produced at the record label founded by Andre Bourgeois?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Which television show's theme music composer is Gary Portnoy and subsequent work is Frasier?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +In which fields have people born in Lausanne worked?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +To which country does Peter Blay owe his allegiance?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +List the pole drivers in the grand prixes where Williams Grand Prix Engineering was a first team?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +How many people are in the militia?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . },Orange(huggingface) +List the sports played in private universities.,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +Which hub of Cascade Airways is also the resting place of Brandon Lee ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +Which key person of maryland jockey club is the appointer of Joseph Clay ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +Which battle of Khalid bin Sultan was also the conflict of Steve Buyer?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +Count the number of different religions that field marshals have followed?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },Orange(huggingface) +What is the operator of SR class 3Sub ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +"Which awards did the writer, who is the creator of Creature Comforts, won ?",SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Name the co-founder of the record labels which have one of the founder as Chris DuBois?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Which European sea has Oulu as one of the shore city ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +Name an airline with hub airports as Los Angeles International Airport and San Francisco International Airport?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +Count the number of software which runs on Microsoft Windows and mac OS ?,SELECT DISTINCT COUNT(?uri) WHERE { ?uri . ?uri },Orange(huggingface) +What made Jon Speelman and Eric Schiller famous?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +Which sitcom's company is Paramount Television and is located in Cheers Beacon hill?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +What is the location city of Burnside Distribution Corporation ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +"What were the major actions taken by the politicians living in Gales Ferry, Connecticut?","SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x }",Orange(huggingface) +Greek writers have won which award?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +List things developed by Autoconf ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +What is the name of the movie whose director of photography was Jordan Cronenweth and music composer was Vangelis?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +Who is the common manager of Aston Villa 2000-01 season and also the manager of Middlesbrough F.C. season 2009-10,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +What are some districts in the Tendring borough?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +How many people have played for the NBA?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . },Orange(huggingface) +Which river ends at Thames Estuary and North Sea?,SELECT DISTINCT ?uri WHERE { ?uri . ?uri . ?uri },Orange(huggingface) +who are all the people who have managed the England's under 20 soccer team?,SELECT DISTINCT ?uri WHERE {?uri },Orange(huggingface) +Is Maldives a member of South Asia Subregional Economic Cooperation?,ASK WHERE { },Orange(huggingface) +List the movies directed by Stanley Kubrick?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +What religion is Kabir Suman from?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +List the people died in Hyderabad and are a member of political party?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +Which work of Craig van Tilbury is close to the area of The Chess Monthyl?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +Name the cover artist of the adventure of Tom sawyer?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +What water bodies have primary inflows as Kemijoki?,SELECT DISTINCT ?uri WHERE {?uri },Orange(huggingface) +What is the mascot of the military unit in which Ronald Wilson served?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +What is the common branch of military of Edward Joseph Schwartz and John Tower ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +Count the number of sports team members which have player named Matt Williams ?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri },Orange(huggingface) +How many pole drivers have been there in grand prixes where first driver was Damon Hill?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?uri },Orange(huggingface) +Which shows are voiced by US citizens?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },Orange(huggingface) +What did other artists associated with the Shirelles make?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Which info. appliance is manufactured by Asus and is the successor of PS 2?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +What are some US citizens famous for?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +Name the appointer of William Clark ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Count the origin of the beverages which have been originated in england?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri },Orange(huggingface) +What are the movies directed by Joel Schumacher?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +Count the total number of conflicts people who were part of conflict in afghanisthan ?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri },Orange(huggingface) +What party was in majority of Fourth Legislative Assembly of Delhi?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +which awards have been given to people who fought in the Battle of France?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +List the relatives of Lyubov Dostoyevskaya ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Where was the designer of REP Parasol born?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +Rivers from which countries flow into the Caspian?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Which players have represented Los Angeles Angels of Anaheim?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +In which areas can we find the networks owned by the govt of Mauritius?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +List the work edited by Mark Stevens and directed by Joel Schumacher?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +"What is the number of occupation of the people who died in Tampa, Florida?","SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . }",Orange(huggingface) +Where do the railroads owned by the Chicago and Northwestern Transportation company begin?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +List the significant building of the architect who also designed Kiev?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Which boarder country of Korean Peninsula was the state of Sodagreen?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +What is the route end of Birmingham and Oxford Junction Railway ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Name the driver who was at pole in 1997 Canadian Grand Prix and also 1994 Spanish Grand Prix ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +List the schools of the athlete with Balgowan as one of the school?,"SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x }",Orange(huggingface) +Who was the bronze medalist of Swimming at the 2008 Summer Olympics Men's 400 metre individual medley?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +What is the television show whose related with Doctor Who Confidential?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +How many wars took place in Israel?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . ?uri },Orange(huggingface) +Which TV show's theme was composed by a band in which Todd Huth used to perform?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },Orange(huggingface) +From which countries are the people from who are an academic authority of the Western pygmy blue species?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Which builder has made concrete bridges?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +"List the affiliation of Indian general election, 2004 (Andhra Pradesh) ?","SELECT DISTINCT ?uri WHERE { ?uri }",Orange(huggingface) +Who designed the bridge in Oddamavadi?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Which countries led by Elizabeth II?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +In which company is Raymond Conner at an important position?,SELECT DISTINCT ?uri WHERE {?uri },Orange(huggingface) +How many things are made by companies who produce mass media articles?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?uri ?x . },Orange(huggingface) +Who all have been a manager of England under-21 football team?,SELECT DISTINCT ?uri WHERE {?uri },Orange(huggingface) +Which founder of sea Gayle Music is also the judge of Rising Star ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +"Which founder of European School, Karlsruhe is also the jurisdiction of the European Border of Coast guard?","SELECT DISTINCT ?uri WHERE { ?uri. ?uri}",Orange(huggingface) +What subsequent work of Moondog Matinee has the composer of Motorpsycho Nitemare ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +List the primary subjects of A Christian Turn'd Turk?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Name the TV shows related to Babylon 5: The Lost Tales and is aired on Prime TIme Entertainment Networks ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +"In which teams did anyone who played as a defencemen, play previously?",SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +What is the parent company of the airline whose hub is in Detroit?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +How many religions are followed by organizations which are internationally known as the muslim brotherhood?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },Orange(huggingface) +"What all are in the states whose anthem is Ja, vi esker dette landet?","SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . }",Orange(huggingface) +Name the Pole driver of 1994 Spanish Grand Prix ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Who are the managers of clubs participating in the 2014-2015 Football League Championship?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . },Orange(huggingface) +Where is the king buried whose predecessor was Iyasu II?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +"Name the military unit whose garrison is Arlington County, Virginia and command structure is United States Department of Defense?","SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri }",Orange(huggingface) +Charles Willing Byrd was the governor under which politician?,SELECT DISTINCT ?uri WHERE {?uri },Orange(huggingface) +Name some shows similar to the one whose theme song is made by Murray Gold.,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },Orange(huggingface) +What are the cities located on the sea into which the Aegean Sea flows?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +Where is the lake located into which the Winnipeg River flows?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +Name the TV show whose opening theme is Gary Portnoy and the subsequent work is Frasier?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +Which awards have been given to the horse who sired Triplicate?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +What city was recorded in Live in detroit which is also the official residence of ken Holland ?,"SELECT DISTINCT ?uri WHERE { ?uri. ?uri}",Orange(huggingface) +List the Stanley Kubrick's movies which has music by Laurie Johnson ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +Who is the builder of Estadio Nacional de Costa Rica (2011) ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Name a fictional character whose relative is Uncle Henry and species is Human?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +Give me all magazines whose editors live in Chicago?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },Orange(huggingface) +Starwood operates in which places?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +what are some neighboring cities of Pregny Chambsy?,SELECT DISTINCT ?uri WHERE {?uri },Orange(huggingface) +Kendall Jenner has how many relatives?,SELECT DISTINCT COUNT(?uri) WHERE { ?uri . },Orange(huggingface) +The Other Side has hosted how many guests?,SELECT DISTINCT COUNT(?uri) WHERE { ?uri . },Orange(huggingface) +"Where is the fictional character from, whose last appearance was in the Avengers, 1998?",SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +What are some products manufactured by Sony?,SELECT DISTINCT ?uri WHERE {?uri . },Orange(huggingface) +Name the series of Doctor Who: Evacuation Earth ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +What is the total number of regions served by the companies which also serve Australia?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri },Orange(huggingface) +Mouse Morris' horses have raced in which races?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +The president served by Haqqi al-Azm died where?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +Which television show's developer is Brian Graden and voices to the character is by Isaac Hayes?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +What is the television show whose theme music is by Primus?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +Name a TV show judged by Jennifier Lopez and presented by Brian Dunkleman ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +How many other wine region are there of the grapes whose one of the wine region is Michigan ?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri },Orange(huggingface) +Name the TV show with distributor as Broadcast syndication and has theme music composed by Primus?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +Which minister was responsible for Kriminalpolizie?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Who are the opponents of Gervase Helwys?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Name the river mouth of Moordener Kill ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Who owns the schools which have a penguin as its mascot?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Give me a count of everything owned by the network whose sister name is The CW?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?uri ?x . },Orange(huggingface) +What are the county seats of the region which operates the Boeing Field?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Where is the mouth of the river whose tributary is Bjelimićka Rijeka ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +What is the home town of the musician of Jack your Body ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +List the debut team of the baseball player who born in Houston.,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Count the different types of Flatbread ?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . },Orange(huggingface) +who married crystal harris?,SELECT DISTINCT ?uri WHERE {?uri . },Orange(huggingface) +ITV employes how many people?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . },Orange(huggingface) +where did Boga originate?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Who wrote the play in which Blanche DuBois is a character?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +"List some teams for which someone who has played as a defender, now plays?",SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +How many people won the Gold Medal of the Royal Astronomical Society?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . },Orange(huggingface) +What are the death place of the models whose hair color was Red?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +List everyone who got their training in the city of California?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . },Orange(huggingface) +Under which president did some politicians live in Kensington?,"SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x }",Orange(huggingface) +What are some movies written by British writers?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },Orange(huggingface) +Whose doctoral student is Etienne Bieler?,SELECT DISTINCT ?uri WHERE {?uri },Orange(huggingface) +List the awards given to the important people of Aardman Animations?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +In which races did Mouse Morris take part?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Who is the governor of Carl McCall?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Name the veneration of the monarch who is the predecessor of Solomon?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Who is the stockholder of Paphos International Airport ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +What is the city whose mayor is Anne Hidalgo?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +Jeff Munn is the president of which basketball team?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +Which person has opponent Ike Clanton?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +Give me the count of interests of the philosopher whose primary interest is Metaphysics ?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri },Orange(huggingface) +Where are the tombs of kings and queens who have died in England?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Name the musical band of Written in the Stars?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +How many cars are similar to the ones assembled in the Jefferson North Assembly?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },Orange(huggingface) +Which american football player's current team is Michigan Wolverines and former team was Baltimore Ravens ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +Which university's graduates have worked in the Quartermaster corps?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +How many companies were founded in places where Dallas is the governing body ?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?uri ?x . ?uri },Orange(huggingface) +"What team did the players start their careers with, who right now play for Fleisher Yarn?",SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +What are some cars which came before the ones on a GM B base?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Count the number of people who graduated from universities affiliated with the NCAA.,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?uri ?x . ?uri },Orange(huggingface) +What award was won by the executive producer of Shaun the Sheep?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +who owns the ship Victoria?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +What is the national origin of Focke-Wulf Fw 260 ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Which city's mayor is married to Jean Marc Germain?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . },Orange(huggingface) +To which religion does the commander of South Thailand insurgency belong?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +What is the Ceremonial County of Port of Tilbury ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +What have some US citizens died of?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +Where is the garrison of Western Naval Command ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +In how many nations is Coconut a common food ingredient?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?uri },Orange(huggingface) +Count the total number of mammals whose phylum is Chordate and order (taxonomy) is Diprotodontia?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . ?uri },Orange(huggingface) +Who first ascended a mountain of Mount Hoffmann?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Solon Spencer Beman has architected in how many cities?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?uri },Orange(huggingface) +Name the champion of National League?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +What are the airline hubs of Cascade Airways?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Where did anton ausserer die?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +How many ideologies do the political party of Boonchu Rojanastien hold?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Which place of Geography Club is the location of Seattle Great Wheel ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +Do the asiana airlines fly to Jeju airport?,ASK WHERE { },Orange(huggingface) +For how many cities's teams did David Bowens play?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Which companies were behind the renovation of McKechnie Field ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Which football players currently have their contracts with Stoke City F.C.?,SELECT DISTINCT ?uri WHERE {?uri },Orange(huggingface) +Which military unit's garrison is Pentagon and command structure is United States Department of Defense?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +Name the sports played by Fr. Agnel Multipurpose School and Junior College?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +What is the religion of the relatives of Ananda Weerasekara?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +Is Sao Paulo the largest city of Brazil?,ASK WHERE { },Orange(huggingface) +"Which maintainer of Cheasty Boulevard South is also the county seat of King County, Washington?","SELECT DISTINCT ?uri WHERE { ?uri. ?uri}",Orange(huggingface) +How many people have been the first one to scale a peak in the Yosemite Park?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?uri },Orange(huggingface) +Where did the people canonized by John Paul II die?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +"To which company is the service ""Nintendo eShop"" associated with?",SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +Name the person whose child is Irne Joliot-Curie?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +Name the F1 racer with relative as Ralf Schumacher and has child named Mick Schumacher?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +What is the common race of the Martin Molony and race of the Coneygree ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +What are the beverages whose origin is England?,SELECT DISTINCT ?uri WHERE {?uri },Orange(huggingface) +"Which famous person is born in Marlboro Township, New Jersey?","SELECT DISTINCT ?uri WHERE {?uri . }",Orange(huggingface) +Name the company founded in US and created Visual Studio ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +In which city are buildings by Solon Spencer Beman found?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Was the 2d Command and Control Squadron barracked in Colorado?,ASK WHERE { },Orange(huggingface) +Which nearest city of Jurgens Site is the death place of Jimmie Heuga?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +Name the presenter of Shirley Temple's Storybook?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +How many people have been trained in an institute located in California?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?uri ?x . ?uri },Orange(huggingface) +Which developer of the Spider-Man: Edge of Time is the successor of PlayStation 2 ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +What is the mouth mountain of Current River (Missouri)?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +What are the border of High Desert (Oregon)?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +What has location as Ontario?,SELECT DISTINCT ?uri WHERE {?uri . },Orange(huggingface) +Who rented the stadium where the UFC 152 took place?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Which holy things canonized John of Damascus?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Who is the common parent of Gettv and hypnotize mind?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +Who are the scientists known for the Manhattan Project?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +Which company manufactured Delta III?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +What are the movies whose cinematographer is Gregg Toland?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +What is the nation of the speedway league where Ikaros Smederna played?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +"Who manages the operator of Norman Park Branch, CTA?",SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +How many software run on operating system Microsoft Windows?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . ?uri },Orange(huggingface) +Name the company whose one of the product is Pixar Image Computer and has one of the key person as Edwin Catmull?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +List all the notable works of Russell T Davies?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +What is the denomination of S. H. Kapadia?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +In which cities can i find drinks similar to the IBC root beer?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Who is the publisher of The Rolling Stone Album Guide ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Bridge that starts at Seberang Perai crosses over what?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +Where did Paul Jones do his highschool?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Name some books by Spanish speaking authors.,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . },Orange(huggingface) +What are the movies with Daniel Waters as screenwriter?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +"What is the job of the George Arceneaux, Jr. which is also the office of the Blanche Bruce?","SELECT DISTINCT ?uri WHERE { ?uri. ?uri}",Orange(huggingface) +Name the route start of Saint Petersburg Moscow Railway ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Who did their highschool from a school whose mascot was a fighting tiger?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . },Orange(huggingface) +What are the musical performances whose label is Celluloid Records?,SELECT DISTINCT ?uri WHERE {?uri . },Orange(huggingface) +What is the city of the Maine School of Science and Mathematics is also the resting place of Charles A. Boutelle?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +What is the venue of Indy PopCon ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +What cities are nearer to Fuountain Lake Farm?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Who wrote the mangas produced by Masahike Minami?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Which country's leader is David Johnston?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +Name the sea whose inflow is Kemijoki and outflow is Danish straits?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +"Name the river with source country in Zambia and source region as North-Western Province, Zambia?","SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri }",Orange(huggingface) +What were the awards won by the founder of Walt Disney Records ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +List the outflows of the lake which has Benu river as one of it?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +Which contnet license provider of Microsoft Office Picture Manager is also the game platform of Google Clud Connect?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +Name the movies for which music was given by Geoffrey Burgon and distributed by Cinema International Corporation?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +List the leaders of all the cities through which the Ganga river flows ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +List all the notable work of the screen writer who produced Frasier ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Name the team of Michael springer ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Which memeber of South Asia SubRegional Economic cooperation is also the nationality of Aishath saffa ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +What are some characters of series produced by Ricky Grevais?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . },Orange(huggingface) +What is the associated band of the musical artist who is the producer of The Trumpet Kings Meet Joe Turner?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Name the nationalteam of Trn Vit Hng ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +What is the regional radio sports network associated with?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +What is the largest city of the country which hosted the 1951 Asian Games?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +In how many territories were the wars fought where Fusil Gras Mile 1874 were used?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Who created the stadiums who have been rented by the Boston Red Sox?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +List the leaders of the government agencies whose jurisdiction was German-occupied Europe.,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +What is the deathplace of people who have worked in Ethics?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Cable stayed bridges have been used to cross over how many things?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },Orange(huggingface) +What is the purpose of Maharashtra Chess Association ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +What movies have been produced by the production house owned by Larry J. Franco?,SELECT DISTINCT ?uri WHERE {?uri },Orange(huggingface) +what has been developed by John Fanning?,SELECT DISTINCT ?uri WHERE {?uri },Orange(huggingface) +Who wrote A house not meant to stand and Akale?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +Who is a successor of Kingship whose parent was Julius Caesar?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +What is the place of birth of the Kira Plastinina and Sergey Ryazansky?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },Orange(huggingface) +Which fictional character's relative is Clan McDuck and belongs to American Pekin duck?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +From how many different places have people gone to the Harward Medical School?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },Orange(huggingface) +Namt the fields of Paul Demiville ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +"List the parts of the settlements which has a part named Seguin, Texas.","SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x }",Orange(huggingface) +List the software which runs on Microsoft Windows and has license as Software as a service?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +What is the name of the information appliance by sony whose predecessor is PlayStation 2?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +What is the stylistic origin of Wizard rock ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Name the company which produces both Boeing F/A-18 E/F Hornet and CH-46 Chinook ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +"List the sports associated with Mariveles, Bataan?","SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . }",Orange(huggingface) +Which license provider of MSX basic is also the designer of Language Integrated Query?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +list some companies founded by Jim Harris.,SELECT DISTINCT ?uri WHERE {?uri },Orange(huggingface) +Was Lionel Messi a member of the 2009 FIFA World Cup squads?,ASK WHERE { },Orange(huggingface) +In which city is the hub airport of Club One Air?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +Where does the river end which starts in Mazabuka?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Where is the headquarters of the public transit system which operates Go-To card?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +What is the constituency of the people who died in Lampedusa?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +"Enumerate all the first teams of the GPs which were held in Watkins Glen, NY?","SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . }",Orange(huggingface) +What is the religion of the relatives of Carmela Soprano ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +Carl Sagan has penned books on how many matters?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },Orange(huggingface) +Which players participate in the football seasons headed by Patricia Amorim?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Count the total number of battles fought by the military people which fought in Levant?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri },Orange(huggingface) +List all areas served by the radio station serving South carolina ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Which wine region of Bogdanua is the Croatian Inline hockey team part of?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +Who composed the episode after which came Butter's Very own Episode?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Which wars were fought when the commanders involved served under PM Choi Tu Son?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },Orange(huggingface) +Name all those whose spouses have performed with Tony Bennett?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . },Orange(huggingface) +Is my truly truly fair from the band of mitch miller?,"ASK WHERE { }",Orange(huggingface) +The president who was in office when Lee Hyun Jae was the PM followed which religion?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +List the destinations of the airlines which also serves Mediterranean Sea?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +What state has a Brideun School for Exception Children and is the birthplace of B J Crombeen?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },Orange(huggingface) +What is the university attended by the baseball player who's known for Olin Corporation?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +What are the movies whose cast members are signed up with Point Blank Records?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },Orange(huggingface) +"Which border country of the Korean Peninsula is also the country of Krusty, a musical group ?",SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +List all the children of Barbara Bush?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +What is the company of Ford Theatre?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +"Who are the people which were the influencer of the person, who influenced Costanzo Preve ?",SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +What is the origin of the musical artist of A Todo Romantic Style ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +Bud Adams owns which american football team?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +Where did the relatives of David Hume study?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +In how many regions is English American spoken?,SELECT DISTINCT COUNT(?uri) WHERE { ?uri . },Orange(huggingface) +List all the faiths that British Columbian politicians follow?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +What is the region of Kim Sawchuk ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Name the company whose products's predecessor is Boeing Vertol CH-46 Sea Knight?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },Orange(huggingface) +Who is the animator of Tommy Tucker's Tooth ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +From how many countries have people participated in the Excelsior Stakes?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },Orange(huggingface) +Is Lloyd Nosler the editor of The Temptress?,ASK WHERE { },Orange(huggingface) +How many developers make software for Unix like operating systems?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },Orange(huggingface) +Whose famous works have been illustrated by E W Kemble?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . },Orange(huggingface) +Who won the silver medal when the bronze was won by Yang Yilin?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +Who attended Great Ayton university?,SELECT DISTINCT ?uri WHERE {?uri . },Orange(huggingface) +How many universities are there whose country's capital is Oslo?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?uri ?x . ?uri },Orange(huggingface) +Brian Dunkleman is the presenter of what TV show?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +Where did Jerry Tagge do his elementary schooling?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Who operates the railway line which begins in Minneapolis?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +List the relegion of Otani University which is also the life stance of udit Raj ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +Which shows are similar to the ones produced by Phil Collinson?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },Orange(huggingface) +What is telecasted on the network where Deborah Turness holds important position?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . },Orange(huggingface) +England is the origin of how many things?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . },Orange(huggingface) +What river originates in Kingston Ontario?,"SELECT DISTINCT ?uri WHERE {?uri . ?uri }",Orange(huggingface) +Which field's journals are edited by Paul Morphy?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Where are the shrines of the saints who were beatified by Pope Pius XI?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Which television show's company is Paramount Television and is located in Boston?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +Name the institute of Alton Ochsner?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +How many countries surround the seas on the banks of which is the city of Cancun?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },Orange(huggingface) +Is Maria Sharapova the silver medalist of Tennis at the 2012 Summer Olympics Women's singles?,ASK WHERE { },Orange(huggingface) +"What is the product of the BBC Multimedia and is the theme of Visions, the convention?",SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +Name the movie whose screenplay is by Akiva Goldsman and directed by Joel Schumacher ?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . ?uri },Orange(huggingface) +Which relative of George Madison is the appointer of John Drayton ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +What is the type of Naval Station Bremerton?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +ARM Architecture acts as a game platform for how many things?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . },Orange(huggingface) +What is the prize received by the one who wrote the screen play of The Postman ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +Who are some authoritative persons on the matter of Megabalanus concinnus?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Name the mountain range in which the mountain peak of Malatraix belongs?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +Name the television program voiced by Isaac Hayes and aired on Comedy Central?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +Which adminstrative region of Lawrence F. Cafero is also the resting place of Samuel Keeler ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +List the birth city of the politicians of Democratic Party.,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Which title of Zaman Shah Durrani is also the nationality of Salahuddin?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +Rickenbacker is a musical instrument played by which artists?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +What is the draft team of Antoine Bibeau ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Which engine's successor's predecessor is BMW M10?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },Orange(huggingface) +What are the video games composed by Hirokazu Tanaka?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +Which parent organization of GetTV is also the label of next thing ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +What is the city whose mayor is Giorgos Kaminis?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +Name the common distributing label of the Chinga Chang Records and StandBy Records?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },Orange(huggingface) +What cars were built upon the cars which were assembled in Canada?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Who have John Randolph of Roanoke as predecessor?,SELECT DISTINCT ?uri WHERE {?uri . },Orange(huggingface) +What awards did Jos Rivera (playwright) win?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +What is sovereignity of the successor of Mr. George Robert Andrews ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +What are the gadgets whose manufacturing company is founded by Terry Gou?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },Orange(huggingface) +Which movies's screenplay is written by Akiva Goldsman,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +Which draft team of Dale Mitchell is also the tenant of Master Card center?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +How many guests have been there on broadway?,SELECT DISTINCT COUNT(?uri) WHERE { ?uri . },Orange(huggingface) +Which director of On deadly Ground also released Mojo Priest?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },Orange(huggingface) +Name few TV shows aired by Prime Time Entertainment Network?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +What belongs to the families of Buccinidae and Buccinoidea?,SELECT DISTINCT COUNT(?uri) WHERE { ?uri . ?uri },Orange(huggingface) +Which sports by Polytechnic University of the Philippines Taguig is the discipline of The Chess Monthly ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +"In which city is the building, whose part is the Martin AN/FSG1 anti aircraft system?",SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Who maintains the stuff designed by the Brunei government?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +Who appointed William L. Dayton ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Whose military branches are Colonial troops and Continental Army?,SELECT DISTINCT ?uri WHERE { ?uri . ?uri . },Orange(huggingface) +What awards did the film director of The Haunted House win?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +Joe Shuster has created how many comics character ?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . ?uri },Orange(huggingface) +"What is the radio show created by Timoteo Jeffries, about?",SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +What is the major shrine of Jacques-Dsir Laval ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Radios on what topics can be tuned in to in Washington DC?,"SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x }",Orange(huggingface) +Which operator of New Sanno Hotel is also the governing body of the Oahu Railway and Land Company ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +In how many nations can I find people related to the feminist movement?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },Orange(huggingface) +How many golf players are there in Arizona State Sun Devils?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . ?uri },Orange(huggingface) +List down the schools whose mascot's order is Even-toed ungulate?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . },Orange(huggingface) +What's the religion of the winner of china election of 2008?,"SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . }",Orange(huggingface) +Which animator of the The Skeleton Dance is also the cinematographer of the Mickey's Mellerdrammer?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +Which animator of Tommy Ticker's Tooth is also the director of The Haunted house ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +Name the awards that have been given to the writer made famous for Creature Comforts?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +For what is Abhijit Kunte known ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Name the television show which was developed by Brian Graden and distributed by Comedy Central?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +Which party won both the general election and the andhra pradesh election in 2004?,"SELECT DISTINCT ?uri WHERE { ?uri. ?uri . }",Orange(huggingface) +Who owns the airport in Paphos?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Name the mountain range of Le Giblou?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +What are the other launch site of the rockets which also have been launched from Cape Canaveral Air Force Station Launch Complex 5 ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Which animator of the The Skeleton Dance is also the director of The Haunted House (1929 film) ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +Which distributer of Glover (video game) is also the publisher of the Super Mario Adventures ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +Give me the count of newspaper whose language is Sweedish and headquartered at stockholm ?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . ?uri },Orange(huggingface) +Where is the birthplace of Ferrel Harris ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Name the alma mater of Ernest de Saisset?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +What is the label of Next Thing ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +What are the awards won by the film editor of The Search?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +What is the resting place of the child of Linda Lee Cadwell?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +Which football managers managed Middlesbrough F.C.?,SELECT DISTINCT ?uri WHERE {?uri },Orange(huggingface) +Name the university which has Lieutenaunt general as superintendent and mascot as Gyrfalcon ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +What is the draft team of Bob MacMillan?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +What sporting goods companies are located in Herzogenaurach?,SELECT DISTINCT ?uri WHERE {?uri },Orange(huggingface) +How many bands are based in London?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . ?uri },Orange(huggingface) +Count the total number of hometown of the gymnasts whose one of the hometown in Russia ?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri },Orange(huggingface) +Name the team for which Cam Plante played for which were also the tenants of MasterCard center?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +Which football teams are in a city where Oakland Athletics were the tenants?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },Orange(huggingface) +Who is the compiler of British Gazette whose prime minister is also Peter Thorneycroft?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +Name the key people of the non-profit organisations whose one of the key person is Lesley-Anne knight ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +What is the birth place of the astronaut whose mission was the Vostok programmer?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Politicians born in Bangalore are now in which parties?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +List the fields of the scientists with Sanskrit as one of the interest?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +What is the religion of the leader of South Korean legislative election of 1992 ?,"SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . }",Orange(huggingface) +Pointe d'Aveneyre belongs to which mountain range?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Who is the operator of AT&T Park ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Who are the maintainers of the bridges which cross the pandaruan river?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Who is the coach of England national under-21 football team?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Which Monty Python's movie is distributed by Cinema International Corporation ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +Who produced the TV shows for Fremantle Media?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +What is the record label of the Next Thing and also the label of the The Producers (2005 film)?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +How many games have been composed by Hirokazu Tanaka?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . ?uri },Orange(huggingface) +Count everyone who was in the military unit which is structured like the Marine Aircraft Group 13 ?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?uri ?x . },Orange(huggingface) +List of people who were the first one to ascend a mountain in the Cathedral range?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Where the children of Ashot Grashi employed at?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +Which TV show's opening theme is The Best of Both Worlds (song) and executive producer is Steven Peterman?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +What discipline was The Chess Monthly about ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Name the debut team of Butch Metzger ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Which is the university of Vanderbilt Commodores?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Which successor of Philippine Ports Authority is the state of origin of Ruben J. Villote?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +How many organizations own the website to which Jimmy Wales contributes?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?uri },Orange(huggingface) +What is the home stadium of Kenya's women national football team ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +What is the scientist whose doctoral students are Erich Bagge and erban ieica?,SELECT DISTINCT ?uri WHERE { ?uri . ?uri . },Orange(huggingface) +Where did Marvo originate?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Does Grand Bahama lie in the achipelago of the bahamas?,ASK WHERE { },Orange(huggingface) +What is the death place of the Elbieta Czartoryska which is also place of birth of the Charles Journet,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +How many universities participate in the NCAA Division I Football Bowl Subdivision?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . ?uri },Orange(huggingface) +Give me the total number of architect of the buildings whose one of the architect was Louis D. Astorino?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri },Orange(huggingface) +What are some neighboring cities of cologny?,SELECT DISTINCT ?uri WHERE {?uri . },Orange(huggingface) +"Name the fictional character whose relatives are Huey, Dewey, and Louie and belongs to Duck family ?","SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri }",Orange(huggingface) +List down the associated musical artist of the writer of Rain Is a Good Thing ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +Which interest of Philip Novak is the religion of Vesak?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +Name the common former team of Marv mcFadden and Carlos Emmons ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +List the name of those who became famous for something garrisoned at Tennessee?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . },Orange(huggingface) +Name the companies which are in cities under Denzil Minnan Wong?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },Orange(huggingface) +Which spouse of Ptolemy XIV had a father named Ptolemy XII auletes?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . },Orange(huggingface) +Name the newspaper owned by Schibsted and headquartered at Stockholm?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +What is the Nickname of the school where Jeff Hornacek studied ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Current players of Colorado Avalanche have previously played for how many different teams?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?uri },Orange(huggingface) +What is the religion of the successor of Chatumongol Sonakul?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +In which common territory did Sino French war and the Tonkin campaign take place?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +Name the associate acts of Martin Pugh?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +In which countries have the Start + Flug aircrafts originated?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Who owns the schools which have a penguin as its mascot?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },Orange(huggingface) +Who was the narrator in the point?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +What are the srvices of Laemmle Theatres?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +In which country is Bocas del toro a capital of some region?,"SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . }",Orange(huggingface) +How many people used to play in the youthclub of FC Barcelona?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . },Orange(huggingface) +who developed google videos?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Name the alma mater of Michael hahn?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Who is the spouse of Willian Menalaus?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Who all have rented the stadium whose architect is Populous?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +"Give me a count of schools in Reading, Berkshire?","SELECT DISTINCT COUNT(?uri) WHERE {?uri . ?uri }",Orange(huggingface) +Which administrative headquarters of the Pulau Ubin is also the resting place of the Nicole Lai?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +Who are the judges of the television show whose anchor is Josh Groban?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Name the television show whose network is TNT (TV channel) and Prime Time Entertainment Network?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +List the affiliations of Wikipedia Zero ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Which location city of Denver Broncos is the palce of birth of Steven Clark Cunningham ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +Whose youth clubs used to participate in Argentine Primera Division?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . },Orange(huggingface) +Who built the stadium which was rented for the 2013 Copa Centroamericana?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +How many people are in the England national football team?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . },Orange(huggingface) +Count the sports played at universities located in Urban Areas?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },Orange(huggingface) +what mountains are in sierra nevada?,SELECT DISTINCT ?uri WHERE {?uri . },Orange(huggingface) +Name the party of Indira Gandhi ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Which movies have their music composed by someone that signed up with RCA Records?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },Orange(huggingface) +What are a few molluscas whose family is Buccinidae?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +How many movies did Stanley Kubrick direct?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . },Orange(huggingface) +Count all the ethinic group who speaks language which belongs to Anglo-Frisian language family?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?uri ?x . ?uri },Orange(huggingface) +Which notable commanders of the Army Group Oberrhein (Germany) is the leader of the Kriminalpolizei?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +Where was the Temptation Waits recorded?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +Who all have succeeded the kings buried in Rome?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Name the species of Southwest African lion?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +"Which of the continents that Digitalb worked in, was christine rolfes born in?",SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +What are some companies which are founded in Dallas Jurisdiction?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },Orange(huggingface) +What are some Louisiana based models known for?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +which planet was discovered by Urbain Le Verrier?,SELECT DISTINCT ?uri WHERE {?uri },Orange(huggingface) +Name the common current team of the Avalon biddle and John mcGuinness?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },Orange(huggingface) +What type of government is elected in Kumta?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +What are some cartoons distributed by a subsidiary of Time Warner?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },Orange(huggingface) +What is the common school of Chris Marve and Neria Douglass?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +What things canonized John of Damascus and and also venerated the Edwin of Northumbria ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +What is the style of architecture of Pontiac Building?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Which location country of Ennejma Ezzahra is also the origin of Boga ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +Where are jockeys in Dubai World Cup from?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Name few movies directed by Tim Burton ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +"Name the river with Readin, Brekshire in its path and mouth place is Sothend-on-sea ?",SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +Henry McDaniel's trained horses have won which awards?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +"What is the river whose source region is North-Western Province, Zambia and river mouth is Indian Ocean?","SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri }",Orange(huggingface) +What is the purpose of New Zealand Chess Federation ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +What is the resting place of the politician who succeeded Samuel Hayes?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Which city near Nihoa is the place of death of jim Brady ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +For which teams did Ryan Powell play for?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Where does Manu cornet work?,SELECT DISTINCT ?uri WHERE { ?uri . },Orange(huggingface) +How many sports are played in organizations presided by Emanuel de Guzman?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?uri },Orange(huggingface) +Give me the total number of television shows whose theme music composer is Julian Gingell and created by Simon Fuller?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . ?uri },Orange(huggingface) +How many universities participate in the NCAA Division I Football Bowl Subdivision?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +What is the college of Malik Ausean which is also the college of Kyle Fuller ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +Which labels have published songs written by Harry Connick Jr?,"SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x }",Orange(huggingface) +In which cities are there stations of SCOLA?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +List the characters of Lysistrata ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Name the members of European Go Federation?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Name the office holder whose spouse is Dolley Madison and belongs to Militia branch ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +How many writers worked on the album Main Course?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },Orange(huggingface) +"Where are the agencies headquartered at, which are under the Colorado Dept of Natural Resources?",SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Which allegiance of John Kotelawala is also the sovereign state of Sanath Weerakoon ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +List some people who were opponents of someone who was died by hanging?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +What teams have Avangard Omsk's players played for?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +"Who was the president under whom, a governor participated in Shay's rebellion?",SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Which politician's constituency is led by the SF Board of Supervisors?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },Orange(huggingface) +Name the cause of death of Martino Martini ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Ricky Gervais is the executive producer of the series having how many fictional characters?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?uri ?x . ?uri },Orange(huggingface) +What is the television show whose company is Playtone and written by Erik Jendresen?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +What is the nickname of the club managed by Piotr baron?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +How many albums did the maker of The Band produce?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?uri },Orange(huggingface) +What is the mascot of the rival school of Sullivan Central High?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +Name the TV show with Simon Fuller as artist and Fox as the channel ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +Which college has been attended by both Mr. Hubert Wiggs and Mr. Alvin Bell?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },Orange(huggingface) +Who is the leader of Hackweiser?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Name the team manger of Middlebrough F.C season 2006-07 ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Name the significant buildings of Ivan Fomin ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Whose academic advisor works at the St George's Hospital?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . },Orange(huggingface) +Whose constituency is Duboce Triangle?,"SELECT DISTINCT ?uri WHERE {?uri . }",Orange(huggingface) +Give me a list of everyone who married the musicians signed up with Pablo Records?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . },Orange(huggingface) +Where did the wrestler trained by Ring of Honour get billed?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Which country's engineered have studied at Aero Klub in Wroclaw?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +Where was Ganefo hosted?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Which religion's people are member of BJP?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Who discovered Europa and Callisto?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +Which species' members are there in the animal kingdom?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +In which countries are there banks which came after the National Commercial Bank of Mauritius?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +What is the airline company has its headquarters in Dublin Airport?,SELECT DISTINCT ?uri WHERE {?uri },Orange(huggingface) +Who have rented the stadium operated by Maple Leaf S&E?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +"To what region is Sukhumbhand Paribatra, a leader?",SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +Give me a count of royalties buried in Rome ?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . ?uri },Orange(huggingface) +In which countries can i find broadcasted TV in southeast asia?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +What is the mascot of military in Quezon city?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Where did the spouse of pmare ii die?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +Which tenant of New Sanno Hotel is the military branch of the Gary Holder-Winfield?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +List the children of the parent of Marvin Bush.,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +How many companies have built concrete bridges?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },Orange(huggingface) +List the opponents of the relatives of Thomas Helwys?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Which relative of ralf schumacher is a famous formula one racer?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +What shows used to air on the channel which was earlier known as The Comedy Central?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },Orange(huggingface) +List the served region of the organisations of Trade association.,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +What are the movies written by Nick Castle?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +Name the basketball player who played for Phoenix Suns and Los Angeles Clippers was his draft team?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +Who is the vice president of Jared Bernstein ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Philadelphia City Council is the governing body of which city?,SELECT DISTINCT ?uri WHERE {?uri },Orange(huggingface) +What work has been directed by Orson Welles and distributed by RKO Pictures?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +Ryan Seacrest has been the presenter of how many things?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . },Orange(huggingface) +What are the television shows whose network's sister station is BBC Two?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },Orange(huggingface) +The Prime minister who worked in the Khmer Issarak follows which religion?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +With which musical artist is the producer of Spotlight associated ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Which Texas based company was founded by Jim Harris ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +Who is the maker of the engine of Ford F-Series first generation?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +Where are the burial grounds of Willem Cornelis Janse van Rensburg and Thomas Franois Burgers?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },Orange(huggingface) +Where did Georges Wolinski and Judson Huss died?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +What are some fictional characters whose voice is in the peanuts movie?,SELECT DISTINCT ?uri WHERE {?uri . },Orange(huggingface) +How many different things are used as ingredients in Sweden?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },Orange(huggingface) +Which country does league of Nguendula Filipe belongs to?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +What magazine published Allal and is the employer of Peter Bergman?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +"What other destinations do airlines go to, whose flights also come to Glasgow?",SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +List the country of Tokaj wine region?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +List the territory of Tonkin Campaign ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Who has fought in the conflicts around the Mississippi river?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Which politicians died in cities built by the Roman emperor Charles 5?,"SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri }",Orange(huggingface) +Which movies have someone on their cast from Shelby County in Tennessee?,"SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri }",Orange(huggingface) +Who are the people which ITV(TV network) has employed?,SELECT DISTINCT ?uri WHERE {?uri . },Orange(huggingface) +List all the nicknames of the city which has Torun gingerbread as one of it?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +Who is the office holder whose resting place is Monticello?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +Which bands are associated to David Paton?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +In which states does the river flow whose left tributary is Toms Creek?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +Which fictional character portrayed in Terminator 2: Judgment Day is painted by Josh Friedman?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +Find the total number of ingredients of the recepies whose ingredient is common Mushroom ?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri },Orange(huggingface) +What appliance Sony made after the success of PlayStation 2?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . },Orange(huggingface) +Name some relatives of the people studied in Manurewa High School?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +Which newspapers are owned by companies which are under Rolv Erik Ryssdal?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },Orange(huggingface) +"Which office holder's resting place is Alta Mesa Memorial Park and has Henry E. Catto, Jr. as predecessor ?","SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri }",Orange(huggingface) +Who owns the newspaper which was founded by Nehru?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Which cities have the river one of whose Tributary is the Missouri's big spring?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Count the different religions followed by Second Lieutenants in military.,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },Orange(huggingface) +Name the species of Liger?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +What are some movies whose distributors are led by Kevin Tsujihara?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },Orange(huggingface) +Which key person of Clinton Foundation is also the president of Jim Sasser?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +How many writers speak a language belonging to the Germanic kind of languages?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?uri ?x . ?uri },Orange(huggingface) +Which associated band of the Teddy Riley is also the performer of the Before I Let You Go?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +What are some other services of the company whose service is Onedrive?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +What are some musicians who have worked with Dean Ambrose?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +Name the company with product lines like Visual studio and Surface ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +Where did the narrators of the Championship snooker die?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +What is the baseball team whose club manager's debut team is Houston Astros?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },Orange(huggingface) +What are the awards won by the film director of Saraband ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +What does the famous relative of Levon Ashotovich Grigorian do for a living?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +Name the movies writtten by the group Monty Python?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +Who is the head coach of the teams in Middlesbrough FC?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +What is the television show whose vocals are performed by April Stewart and Mona Marshall?,SELECT DISTINCT ?uri WHERE { ?uri . ?uri . ?uri },Orange(huggingface) +Which basketball players have played in the league of National Basketball Association?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +Rivers which end in Arkansas go through which cities?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +What basketball league's champion is Golden State Warriors?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +From how many different places did the weapons used in the American Indian wars originate?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?uri },Orange(huggingface) +For which team does Ramiro Pea play?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +What is the prize awarded to Bruce Beutler ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +How many people are buried in Arlington National Cemetery?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . },Orange(huggingface) +Who are the architect of the stadium whose one of the architect is louis D. Astorino ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +Who authored the work illustrated by Hiroyuki Takei?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +How many architects are there who have made something used by Oakland athletics?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },Orange(huggingface) +Name the president who has relations with Clinton family and had a lieutenant named Winston Bryant?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +What are some bands out to texarkana?,"SELECT DISTINCT ?uri WHERE {?uri . ?uri }",Orange(huggingface) +In which places can we find the people won the Project Runaway Canada?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +"Which band had the members of The Conglomerate, and has made 'Before I let you go'?",SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +What is the religion of the ethnic group to which the relatives of Waxiang people belong?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +What is the mascot of the unit whose garrison is Canberra ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Which route start of Moscow-Kazan high-speed railway is the home stadium of 2011-12 FC Spartak Moscow ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +Was Gumus TV series first aired in Albania?,ASK WHERE { },Orange(huggingface) +What river originates in the Connecticut Lakes?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +Where is the person from whose military rank is Airman first class?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Whose work is in the Musee d'orsay?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?uri },Orange(huggingface) +Under which presidents have politicians from the Continental army served?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +"What is the television show whose theme music composer's home town is El Sobrante, California?","SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri }",Orange(huggingface) +What musicians are signed up with colpix records?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +Was Stephanie Rice the flagbearer of Australia at the 2008 Summer Olympics?,ASK WHERE { },Orange(huggingface) +In which city are the schools whose district is Mumbai Suburban?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +What is the municipality of Patterson Houses?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +In which city was Saleen Raptor designed and is also the birth location of Jimmy Diggs ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +What kind of things are on the radio stations affiliated with the Baltimore Ravens?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Who has manufactured vehicles designed originally by NASA?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +How many food items have an ingredient from the Sapindales family?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?uri ?x . ?uri },Orange(huggingface) +List all the mebers of Mekong River Commission?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Which spanish novel was published by Francisco de Robles?,SELECT DISTINCT ?uri WHERE {?uri },Orange(huggingface) +What are the names of the casualties of Eric Harris and Dylan Klebold?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +Where was the trainer of Java Gold born?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +In which fields are pupils of Edouard Chavannes working?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +List the outflows of the lake whose one of the outflows is Benu rive?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +Name the capital of Barony of Caux ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Count the number of first drivers in all the GPs where Mika Hakkinen was a pole driver?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?uri },Orange(huggingface) +Count all the shows whose music composers are in Oysterhead.,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?uri ?x . ?uri },Orange(huggingface) +Count the different number of academic areas covered by publications of SAGE?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },Orange(huggingface) +Who all have been in bands which have recorded their work in the Electric Lady Studios?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },Orange(huggingface) +Who is the producer of Captain EO ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Give me the total number of membership of the organisations which have memebers as Azerbaijan?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri },Orange(huggingface) +Who is the monarch of Bertalan Szemere ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +"Where was Live in Detroit, MI recorded?","SELECT DISTINCT ?uri WHERE { ?uri }",Orange(huggingface) +What tv show is created by Brian Graden?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +"Name the fictional character whose relatives are Huey, Dewey, and Louie and is of species American Pekin duck?","SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri }",Orange(huggingface) +Who wrote the musical based on Mary Poppins?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Who produced wizards vs aliens?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Which predecessor of the PlayStation 4 is also the developer of Oddworld: Munch's Oddysee?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +Which motion picture stories were edited by Ishir Honda?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +where did soccer bowl take place in 76?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Bridges over which rivers are made of Wrought Iron?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +On which subjects does the author of the novel Thud! delve?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +"What awards have been once awarded to Ingmar Bergman, and have employed the service of Laemmle Theatres?",SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +Name all sitcoms whose theme music is made by Miley Cyrus?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },Orange(huggingface) +In which state is the Channel district?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +What did the people buried in Toronto die of?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +Which shareholder of Dagenham wind turbines is also the parent company of the Ford Falcon Cobra?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +Whose units are responsible for close air support?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . },Orange(huggingface) +What religion's politicians are in the Malaysian Chinese association?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +What softwares were created by Apple Productivity Experience Group?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +What artists are associated with the members of the Catalin Maruta?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +How many scientists are known for the Manhatten Project?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . ?uri },Orange(huggingface) +Give me the list of cars which are the predecessor of Full Sized Cars?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Which clubs play in the La Liga?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +What is the layout of Subaru Legacy (second generation) ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +How many different products are there of the companies located in the US?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },Orange(huggingface) +"Give me all office holders who finally retired in Montpelier, Orange, Virgina?","SELECT DISTINCT ?uri WHERE {?uri . ?uri }",Orange(huggingface) +Who were the american football players who played for Dallas Cowboys?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +Name the TV show which has judge as harry Connick and is broadcasted on Fox Broadcasting Company?,"SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri }",Orange(huggingface) +What is the genre of the Band whose home town is County Westmeath?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +How many movies did Michael Deeley produce?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . ?uri },Orange(huggingface) +Name the scientist who was awarded a position in Royal Society and has academic advisor as Franz Brentano?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +The pope whose shrine is in St Peter's Basilica was venerated in which sects?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +List the people who are in the board of an organization kickstarted in New York.,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },Orange(huggingface) +How many islands belong to archipelagos located in the pacific?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?uri ?x . ?uri },Orange(huggingface) +Which assembly of the Plymouth Savoy is the route end of the NorthSouth Transport Corridor?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +In which state is Colemanville Covered Bridge located ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Name the fictional character who was in Terminator and portrayer is Terminator 2: Judgment Day?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +Which artist of Madagascar: Operation Penguin is also the writer of He's a Pirate ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +Which organizations have Jimmy Wales on board?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +List the awards won by the writer of Face to Face?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +Who was the editor of the newspaper owned by the the UK government?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Who were all the people in office when bob hawke was the PM?,SELECT DISTINCT ?uri WHERE {?uri },Orange(huggingface) +List some leaders of regions in the Indian Standard Time Zone?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +How many other important work has been done by the writers of Sarah Jane Adventures?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },Orange(huggingface) +Which country did the prime minister belong to who was served by Thanong Bidaya?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +What is the division of Serbia national American football team ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +To which region does the Miluk language belong?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +What are the Languages of Zabbaleen?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +What is the home stadium of the soccer club seasons whose chairman is Merritt Paulson?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +What is the death location of the scientist who is the known authority of Hallopus ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Name a queen whose parent is Ptolemy XII Auletes and consort is Ptolemy XIII Theos Philopator?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +Give me an estimate number of races where horses grandsired by the Wild Risk have raced in?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?uri },Orange(huggingface) +"Name the river whose mouth place is Old Lyme, Connecticut?","SELECT DISTINCT ?uri WHERE {?uri . ?uri }",Orange(huggingface) +Musical artists who are associated with Ren & Angela were born where ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +"In which region is the rival school of Somerset, Massachusetts located?","SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x }",Orange(huggingface) +Of how many battles is Chickasaw Campaign of 1736 consisted?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Count everyone who lives in a place where Indian English is an official language?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . },Orange(huggingface) +What newspapers's owners is Schibsted,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +How many politicians are in the US Senate?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . ?uri },Orange(huggingface) +Which label released the movie written by Thomas Meehan?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +What is the province of Egypt Nanotechnology Center ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Among the countries using Aureus as currency which had Nicomedia as an important place?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +Which company of Ford Theatre is the owning organization of Ford Kansa City Assemply Plant?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +Name the place of Qaqun ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +What are some people working for the New York Post?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +Which admin center of pulau Ujong is also the largest city of Pulau Ubin ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +What is an airport inside ontario?,"SELECT DISTINCT ?uri WHERE {?uri . ?uri }",Orange(huggingface) +Who all have developed a cross platform software?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Which city has it's landmark as Cheasty Boulevard South?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Name the broadcast area of Radio Philippines Network ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +What are the shows whose creator has worked as a screenwriter?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },Orange(huggingface) +What are the academic interests of the past members of Senser?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +Where are INKAS located which is also the state of origin for Jojo Chintoh?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +What is the government type of Kumta ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Pennsylvania has how many american football teams?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . ?uri },Orange(huggingface) +Which things have been made by artists who died in Midhurst?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . },Orange(huggingface) +Which content license of the MSX BASIC is also the profession of the Laura K. Ipsen?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +What are the television shows whose voices is given by Mona Marshall?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +What is the Location of the Dofinivka Estuary which is also the birthplace of the Liliya Lobanova ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +Name the HBO TV show written by Erik jendresen?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +Who is the artist of Time Radio hour ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Which nation's engineers have graduated in Poland?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Where were sverre krogh sundbo and havard vad petersson born?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +What ingredients are used in preparing the dish of Ragout fin?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +How many fictional characters are there in a series in which Craig Robinson acted?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?uri ?x . ?uri },Orange(huggingface) +Name a writer who was educated in Saint Petersburg and had a son named Lyubov Dostoyevskaya ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +For which other teams have the past Boston Bruins members played?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +List the border of the admin region which shares border with North Korea ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +What currencies are used in the countries which have been governed by Francois Hollande?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Which show's theme music was composed by Primus and voiced by Isaac Hayes?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +What are the airlines whose hub airport is operated by the Los Angeles World Airports?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },Orange(huggingface) +To which county of New York city does the Tremount Avenue street belong?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Which magazine's editor's official residence is Playboy Mansion?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },Orange(huggingface) +Raymond Johansen is the mayor of what city?,SELECT DISTINCT ?uri WHERE {?uri . },Orange(huggingface) +Name the movie written by Monty Python and distributed by Cinema International Corporation?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +Who were the producers of the tenderfoot?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +List all the record label distributed by the distributor of Zune?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Who designed Oddamavadi Bridge?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +What is the country whose leader name is Gerard Larcher?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +Where can I find some buildings of modern architecture?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +What is a salthill?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Where was Babita born ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +How many utopian and dystopian fiction books are there?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . },Orange(huggingface) +Which company founded by Fusajiro Yamauchi also provides services of Nintendo eShop ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +What is the location of death of the skier who was the bronze medalist of Alpine skiing at the 1964 Winter Olympics Men's slalom ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Count the water bodies that flow into the North Sea?,SELECT DISTINCT COUNT(?uri) WHERE { ?uri . },Orange(huggingface) +Which stadium's operator works in the Pepsi Center?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . },Orange(huggingface) +Where was the person born whose successor was Le Hong Phong?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +Which destinations of the Air 2000 is also the location continent of the Falken Tire ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +Which current player of Chicago Bulls was drafted by Los Angeles Clippers ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . },Orange(huggingface) +Name the office holder who was married to Dolley Madison and has resting palce as Montpelier ?,"SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri }",Orange(huggingface) +List the soccer players whose current team has the ground Stoke-on-Trent.,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },Orange(huggingface) +To which party do the politicians who died in Delhi belong?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +What is the award which is presented by Swedish Academy?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +Who was the narrator of the show who's music is composed by John Douglas?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Where does the rivers ending in lake washington begin?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +How many fictional characters were humans?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . ?uri },Orange(huggingface) +Count the territories of the wars where the QF Hotchkiss was used.,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +List the newspapers whose offices are situated in 1211 Avenue of the Americas?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +Which political party of Chandra Shekhar is also the political party of Datl Satyanarayana Raju?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +"Name the company founded by Jim Harris and located in Harris County, Texas ?","SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri }",Orange(huggingface) +List the team for which Doug Acomb played?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +List the movies whose editors are born in London.,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },Orange(huggingface) +How many TV shows were made by someone who was associated with Lewis Hamilton?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?uri ?x . ?uri },Orange(huggingface) +Where did the office holder died who also have faith in Episcopal Church ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +In which broadcast area does the sister station of KFFG air ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +Does the Toyota Verossa have the front engine design platform?,ASK WHERE { . },Orange(huggingface) +Who is the owner of Chelsea F.C. ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +What is the bloomington viaduct built to cross?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Which river inflow of the Cahora Bassa is also Batoka Gorge Hydroelectric Power Station's river ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +Count the journals in the field of Philosophy.,SELECT DISTINCT COUNT(?uri) WHERE {?uri . ?uri },Orange(huggingface) +Count the total number of cast member of the television shows whose actress is Joey McIntyre?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri },Orange(huggingface) +How many shows are aired on Comedy Central?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . ?uri },Orange(huggingface) +Where are the National Academy Museum and School award winners buried?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +Which holy places did consider Pope Gregory I as a saint?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Momoko Kochi has acted in which movie ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +List the actors of Lucy Sullivan Is Getting Married?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Count me all the video game distributor whose parent company is Warner Bros ?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?uri ?x . ?uri },Orange(huggingface) +What are some people born in NY known for?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +List the awards won by the spouse of Harriet Andersson?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +who was the president under which Joe Purcell is a lieutenant?,SELECT DISTINCT ?uri WHERE {?uri },Orange(huggingface) +Which prospect team of Robin Kovacs is the draft team of Bob MacMillan ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +Name the scientist who is known for inventing Anthrax and was a member of Royal Society?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +Eric roth wrote how many screenplays?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . },Orange(huggingface) +"In which areas are the radio stations of Monticello, Maine available too?","SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x }",Orange(huggingface) +Name the TV show whose cast member is Companion (Doctor Who) and is related to The Sarah Jane Adventures?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +Which offices were held by the politicians who held their allegiance to the union of american civil war?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +What is the river whose mouth is in deadsea?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +Give me the places where people who worked in Church of England died in?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +Which president of Lance Adams-Schneider had nickname Daniel O'Regan?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +What are the television shows whose network is Prime Time Entertainment Network?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +In which military conflict were Phm Vn ng and John McEwen commanders ?,SELECT DISTINCT ?uri WHERE { ?uri . ?uri . ?uri },Orange(huggingface) +List the academic discipline of the journals whose publisher is SAGE Publications.,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Count all the awards which were presented by something located in California.,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?uri ?x . ?uri },Orange(huggingface) +What are the awards won by the person who is an authority of Latania verschaffeltii?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +What is the religion of character of Janice Soprano from The Soprano television show?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +What is the birth location of the advisor of Richard Hofstadter ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +Whose associate is Publius Servilius Vatia Isauricus and has predecessor as Lucius Cornelius Lentulus Crus?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . },Orange(huggingface) +Which settelment area is the home town of the Danny Felice and Cline Buckens?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . ?uri },Orange(huggingface) +How many have been awarded by the Royal Society?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . },Orange(huggingface) +Hugh Hefner is editor of which magazine?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +Whose wife is a presenter at WWE?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . },Orange(huggingface) +Name the office holder whose constituency is Haight-Ashbury?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +List the total number of board members who share board with Creative commons ?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri },Orange(huggingface) +What is the fictional character whose voice over is done by the animator of Dick Lundy ?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },Orange(huggingface) +Which city located on Mediterranean Sea is also the stadium of Panionios G.S.S. season ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +In which monarch did Li Si succeed someone?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +"Which countries were the first to play Gumus and Ne daj se, Nina?","SELECT DISTINCT ?uri WHERE { ?uri. ?uri . }",Orange(huggingface) +For how many movies are there whose musicians home town is in Volos ?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?uri ?x . ?uri },Orange(huggingface) +Name a scientist whose official residence is Cape Town and also won a gold medal at the Royal Astronomical Society ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +What is the common nationality of Funny Face a comedian and that of Georgina Theodora Wood?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +Where did the members of judge advocate general corps study?,"SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . }",Orange(huggingface) +What cities are around the valley bordering Lake Mead?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Foxconn makes how many things?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . },Orange(huggingface) +What country provides a citizenship to Newin Chidchob and Seni Pramoj?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +In how many places are the companies founded in Canada operating?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },Orange(huggingface) +What royalties's sepulchre is Mausoleum of Augustus?,SELECT DISTINCT ?uri WHERE {?uri },Orange(huggingface) +Which country does the current team of Darren McNamara belong to?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +Name the TV show with artist Christopher Franke and cast member Jason Carter ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +"What is the successor of the governors whose child is Levi Lincoln, Jr.?","SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x }",Orange(huggingface) +Which US state gave us Brian Deegan and Harold Lyold?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },Orange(huggingface) +Which TV show distributed by Warner Bros. has Christopher Franke as one of the artist?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +List the battles in which alumni of US Army Command and General Staff College fought?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +What are some mammals whose phylum is Chordate?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +How many soccer manager have been in the Spain nation football team?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . ?uri },Orange(huggingface) +How many people have been the head coach for Middlesbrough FC?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?uri },Orange(huggingface) +In how many places did the Schutzstaffels die?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?uri },Orange(huggingface) +Which politicians live in a city led by T.S. Thakur?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . },Orange(huggingface) +Name a company with key person as Dennis Muilenburg and Raymond Conner ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +What is Bob Adams (American football) known for?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +List the former team of the american football players born in Pennsylvania ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +What is the total number of companies who use a language designed by Bjarne Stroustrup?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?uri ?x . ?uri },Orange(huggingface) +tonle sap flows into which river?,SELECT DISTINCT ?uri WHERE {?uri },Orange(huggingface) +What awards have been given to the dude who made Shaun the Sheep?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +What is the field of interest of the advisor of Henri Maspero ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +List the religions of the commanders of Royal Thai Army.,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +Name the people living in a place governed by William W Brien?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . },Orange(huggingface) +How many times has Jeff Conaway been casted?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . },Orange(huggingface) +"What borders the valley which falls under Lake County, Oregon?","SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x }",Orange(huggingface) +Where did the partner of Teriitaria II die?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +"How many companies were founded in Menlo Park, California?","SELECT DISTINCT COUNT(?uri) WHERE {?uri . ?uri }",Orange(huggingface) +what cities are located on the sides of mediterranean sea?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +"Which tennis players live in Kenthurst, new south wales?","SELECT DISTINCT ?uri WHERE {?uri . ?uri }",Orange(huggingface) +In which areas is the radio station broadcasted which is a sister station of WXME ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +What would be a common border of Siberia and the shimsa plateau?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },Orange(huggingface) +What is the total number of relgions followed by people born in Bangkok?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },Orange(huggingface) +Who wrote the subsequent work of One Day at a Time (Em's Version) ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +Name all the hubs of the airlines whose one of the hubs is Selangir ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +For which party's PM did Chidambaram Subramaniam serve?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +Name the current club of Abdelhameed Amarri ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +"For how many teams have the league players of Czech Extraliga, previously played?",SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },Orange(huggingface) +Who developed the software which is used as operating system of Magic Trackpad ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +"Where is Benjamin Franklin Terry buried, and US Route 59 has a junction?",SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +Which job of Irving Chernev is the non-fiction subject of the Thud ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +How many movies have been directed by Orson Welles ?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . ?uri },Orange(huggingface) +Count the number of schools which are in a city governed by the West Berkshire Council?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?uri ?x . ?uri },Orange(huggingface) +Which university has chancellor as Nicholas S. Zeppos?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +Which division of the Runewaker Entertainment is also the destinations of the Airtours International Airways?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +Who is the successor of McDonnell Douglas?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Name the sea located near Europe and has a nearby city as Rostock ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +Which football team is in a city where A J Clark was a builder?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },Orange(huggingface) +List the destination of Novair International Airways ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Which awards have been given to immunologists?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +How many people were drafted by the LA Clippers?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . ?uri },Orange(huggingface) +What monument was unveiled in 1984 of fine arts of the Soviet Union ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Who appointed the governor under which Robert Witherspoon worked?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +How many head of agencies were there in Nazi Germany?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },Orange(huggingface) +Give me a count of all the producers of all the movies whose music was done by James Horner?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },Orange(huggingface) +How many people work in the Massachusetts house of Representatives?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . },Orange(huggingface) +Who authored the works published in the Jump Square Magazine?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +"Which TV show had a judge named Harry Connick, Jr. and was presented by Ryan Seacrest?","SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri }",Orange(huggingface) +Who is the writer of Neverwhere (radio play) ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +What is the party of the politicians whose children is Sanjay Gandhi ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +What is the official residence of Sarah Kazemy ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +How many characters are there in The Office?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . ?uri },Orange(huggingface) +UEM group have made bridges crossing over what?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +Where can i find salad based food?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +Which shows' opening themes was used to make If We Were a Movie?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },Orange(huggingface) +Name some islands in a pacific archipelago?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },Orange(huggingface) +What is the resting place of the engineer who was the architect of Plaza on DeWitt?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +How many battles have involved commanders of 1st Free French Division?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },Orange(huggingface) +Who is the Pole driver of 1992 Canadian Grand Prix?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Who was the president at the time when the opponent of Benjamin Spock held office?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +Which broadcast area of CFRX is also the palce of birth of Anthony Raymond ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +Who designed the language integrated query?,SELECT DISTINCT ?uri WHERE { ?uri . },Orange(huggingface) +What are the houses of legislature in the political leader's seat of Medininagar?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +"What is the serving railway line of Warwick railway station, Perth ?","SELECT DISTINCT ?uri WHERE { ?uri }",Orange(huggingface) +Which rivers start from the Provinces of Zambia?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },Orange(huggingface) +Count the PhD students whose thesis are supervised by National Medal of Science winners?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },Orange(huggingface) +Who is the former partner of the figure skater which was the former partner of Brynn Carman?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +How many developers have worked on games of the Oddworld series?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },Orange(huggingface) +Which prime ministers were served by the governor who appointed Murray Gleeson?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +What are some journals of academic Philosophy?,SELECT DISTINCT ?uri WHERE {?uri },Orange(huggingface) +What is the home stadium of the club coached by Justine Omojong?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Name the state of Timothy J. Roemer ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Name the rivers whose mouth mountain is Essex and river mouth is North Sea?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +List the tomb of the royalties whose burial place is Little Easton?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +What kind of games are made by Interplay Entertainment?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +For which team did both Butch Metzger and Brian Horwitz debuted ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },Orange(huggingface) +Where can I find people whose hometown is Ann Arbour in Michigan?,"SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x }",Orange(huggingface) +What is the local authority of the Buckhurst Hill County High School is also the birth palce of Sarah hampion ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +List the saints venerated in Islam having major shrine as Tomb of Joshua ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +In which state is Dorchester Bay (Boston Harbor)?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Name all the junctions of U.S. Route 59?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Name the children of the person who is the star of The Weathered Underground ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Which nickname of Lyons Township High school is also the mascot of Galatasaray Handball Team ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +Which NASA astronaut was on mission Gemini 8?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +What municipalities are adjacent to Chne-Bougeries?,SELECT DISTINCT ?uri WHERE {?uri . },Orange(huggingface) +Count all the band members who are in Bands which have signed up with Entertainment One Music?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },Orange(huggingface) +In which state is the alma mater of Ben Ysursa located ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +"Who has a child named Lori Black and is resting place as Palo Alto, California?","SELECT DISTINCT ?uri WHERE {?uri . ?uri . }",Orange(huggingface) +Whay common comic is written by Karakuri Dji Ultimo and narrated by The Incredible Hulk ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +"The sports team which played at the American Basketball League championship (1996-1998), have which stadiums?",SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +How many movies have their music signed up with Sony Music Entertainment.,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?uri ?x . ?uri },Orange(huggingface) +What is the ethnicity of the Maike Evers and state of origin of the Theodor Hillenhinrichs ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +What are the movies whose music composer uses a Hammond organ?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },Orange(huggingface) +Who is the mfr. of the engine used in Ford Transit?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +List the awards given to the important people of Aardman Animations?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?uri },Orange(huggingface) +Who is the fictional character whose family member is Padme Amidala?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +What is the mascot of the military unit of David Prowse?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +What organization is the parent of Greenpeace Nordic?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Who is the developer of the software which distributes Batman: Arkham City Lockdown ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Name a person who was educated in Humes High School?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +Which company founded by Fusajiro Yamauchi gives service as Nintendo Network?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +What is the publisher of Lucifer's Hammer ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +List the alma mater of the person who is wedded to Sissela Bok.,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +Which countries were led by Pietro Parolin?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +How many relatives are there of people fought in the Battle of the Bulge?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },Orange(huggingface) +Tandem Computers is the subsidiary of which company?,SELECT DISTINCT ?uri WHERE {?uri },Orange(huggingface) +List education institute of the engineers whose alma mater is ChristChurch ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +What are the cities around the sea which flows into the Atlantic?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Where is Jimmy Wales a board member which also owns Latvian Wikipedia?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +Which operator of ganz UV is also the nationality of the Gza Horvth ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +What are the important buildings of the architect whose one of the significant building is Krasnye Vorota?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +"What television show is magistrated by Harry Connick, Jr.?","SELECT DISTINCT ?uri WHERE {?uri . ?uri }",Orange(huggingface) +How many people are famous for the Gibson Les Paul?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . },Orange(huggingface) +In which country does the Auckland rugby union team play?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +Name the television show directed by Simon Fuller and judged by Jennifier Lopez?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +Where are the homestadiums of the seasons chaired by Merritt Paulson?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Which movies did Mark Steven edit?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +What is the relegious affiliations of Katyayana ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +List the services provided by the company which provides Microsoft azure as one of the service ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +What products do US companies make?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Who is the prime minister of Michael Jeffery who is also the minister of Williuam Deane?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +Who is a religious figure titled superior general?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +What is the mascot of alma mater of John O Moseley?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +How many things are manufactured by the company whose subsidiary is Sony Corporation shareholders and subsidiaries?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?uri ?x . },Orange(huggingface) +"What are the schools whose city is Reading, Berkshire?","SELECT DISTINCT ?uri WHERE {?uri }",Orange(huggingface) +In which country is the Duong river?,SELECT DISTINCT ?uri WHERE { ?uri . },Orange(huggingface) +Where is Temenos Group founded?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +What is the citizenship of Saima Chowdhury?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +What is the religion of the person who is in the cast of Master's Sun?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Which founding cities of Young Americans Bank is also the location of Denver Broncos ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +Which artists have co-starred with Kris Kristofferson?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +How many countries surround the sea into which the Upper Neratva flow?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Count the number of artists in the Cirque du Soleil discography?,SELECT DISTINCT COUNT(?uri) WHERE { ?uri . },Orange(huggingface) +Count me the number of people whose military unit is involved with Close air support?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?uri ?x . ?uri },Orange(huggingface) +Where is the headquarter of Regional Transit Authority of Southeast Michigan ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +How many people have led agencies in German occupied Europe?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },Orange(huggingface) +Who owns the websites for which Jimmy wales writes?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +Which televison shows have location as Massachusetts ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +List the mascot of the universities which are a part of National Collegiate Athletic Association?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Count the number of things people who know linguistics are known for ?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri },Orange(huggingface) +Who all are starring in the movies where director of photography is John Derek ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +What is the headquarters of the public transit system which is the section of Red Ahead ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Whose theme music was composed by a band which collaborated with Phish?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . },Orange(huggingface) +In which company's boards does the founder of Bomis sit?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +Which municipality is neighbored by Cologny and Chne-Bougeries?,SELECT DISTINCT ?uri WHERE { ?uri . ?uri . },Orange(huggingface) +Which associate of Thomas bryan Martin is also the president of Carmichael?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +Which religions are followed by people in England?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Which country of Montanas Mayas Chiquibul is the birth place of Jos Bernardo Escobar?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },Orange(huggingface) +Name presidents of the schools which have queen noor of Jordan as one of them ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Which Stanley Kubrick's movie has music by Laurie Johnson?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +Name the branch of Carroll E. Lanier ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Who was the prime minister under which the predecessor of Derick Heathcoat Amory served?,"SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . }",Orange(huggingface) +Does Walt Disney Studio have a subsidiary called Pixar?,ASK WHERE { },Orange(huggingface) +What is the death place of the Abiye Abebe and is the birthplace of the Amsale Aberra?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +What is the predecessor of the car engine which was succeeded by BMW M43?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +In how many places airlines that go to the mediterranean sea go?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },Orange(huggingface) +What is the profession of Claiborne Pell ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Which garrison of East Indies Station is also the route end of Mumbai Vadodara Express ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +Name the tenant of Ever bank field which has also has player named Dan Shamash ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +Who is the former partner of Chris Knierim?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +What is the owning company of the bank whose parent is Sony Financial ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Which TV shows distributor is Broadcast syndication and developed by Brian Graden?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +Through how many cities does the river flowing into Arkansas go?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?uri },Orange(huggingface) +Who developed the software for the operating system of Macintosh Quadra 660AV ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +"Danny Felice, the Gibraltarian guitarist is from which city?",SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +What is the type of Vesak?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +"What is the country which lies on the European route E8, and where Ragnhild Jolson was born?",SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +What is the meaning of Heydar ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +In which city is the distributor of Jeevan Mrityu located?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +Who owns the broadcast network founded by CNN?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Who owns the radio stations in Alabama?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +What is the region of Tom Perriello?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Name some Texas based companies ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +What is the television show which has cast member as Jason Carter and network is TNT (TV channel)?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +How many scientist have won an award by the society led by Venkatraman Ramakrishnan?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?uri ?x . ?uri },Orange(huggingface) +Who coached the marquet golden eagels during 2013,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +What is the base currency of the Benelux which can be used in Republic of Montenegro?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },Orange(huggingface) +Which partner of Tim Mathieson is also the primeminister of Mike Kelly (Australian politician) ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +What religion did Gamini Seneviratne follow?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +What is the television show whose opening theme's album is Cheers?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },Orange(huggingface) +Count all american football players whose former team owns Lucas Oil Stadium ?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?uri ?x . ?uri },Orange(huggingface) +What are some awards given to people who were born in sweden?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Name the river with source as Shannon Pot and its mouth is located in Limerick?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +Which stadium is owned by the team whose manager is Dimitris Terezopoulos?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +What ethnicity do people in British Columbia belong to?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +What are some other destinations covered by the airlines whose flights go to the Mediterranean sea?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +What sports are played in schools where Swahili is the official language?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +Which associate of Martin Pugh is also married to Alana Stewert?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +Which part of the US political framework did Arthur P Bagby and Thomas Holliday Hicks both serve?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },Orange(huggingface) +acer nigrum is used in making what?,SELECT DISTINCT ?uri WHERE {?uri },Orange(huggingface) +Who is the commander of Battle of Brownstown?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +What are the television shows telecasted on the network which has headquarters at Atlanta?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },Orange(huggingface) +Paul Morphy compiled journals of which field?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +How many companies have manufactured the rockets launched from the Cape Canaveral Air Force Station?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },Orange(huggingface) +Which notable series of Russell T Davies is also the series of Short Trips: A day in the life ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +Name the fictional character painted by Josh Friedman and portrayed in Terminator Genisys ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +From where does the river Upper Neretva start flowing?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +How many people have voiced characters sculpted by Clamp?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },Orange(huggingface) +"What cities does the river goes through, whose tributary is the little black river in Arkansas?",SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +How many people have fought wars where Arthur St. Clair was a commander?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },Orange(huggingface) +Cricket is played by which countries' citizens?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +How many have former teams as Indianapolis Colts and Carolina Panthers?,SELECT DISTINCT COUNT(?uri) WHERE { ?uri . ?uri },Orange(huggingface) +Which president had lieutenants whose governor was Bill Clinton?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },Orange(huggingface) +Who employed the person famous for the Boeing fa18ef Super Hornet?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Give me a count of musical artists collaborating with Waylon Jennings?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . ?uri },Orange(huggingface) +Name the wine regions of Baco noir?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Name the office holder whose final resting place is North Bend and was part of Siege of fort recovery conflict ?,"SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri }",Orange(huggingface) +Name the river whose source is located in Ikelenge District and mouth in Mozambique?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +Count all the places where companies located in Ontario operate.,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },Orange(huggingface) +Which awards have been given to scientists that graduated from NKU athens?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Which district of Fort Heath radar station is also the state of Joesph Story ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +What continent of the world has Baja California peninsula and also has WEPG in one of its cities?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . ?uri },Orange(huggingface) +Which ship builder built the USS Camp and Sturtevant?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },Orange(huggingface) +What sports are played at Vishwajyot High School?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +Which software uses GTK+ as programming language?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +Who is the partner of Rob Patterson?,SELECT DISTINCT ?uri WHERE {?uri . },Orange(huggingface) +Count all the TV shows which are related to the ones produced by Julie Gardner.,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?uri ?x . ?uri },Orange(huggingface) +What is the mascot of Blytheville High School ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Which currency of Republic of Montenegro is also the currency of the French Southern and Antarctic Lands ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +Who is the successor of Quest Software ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +What is the common university of vanderbilt Commodores and also the college of hubert Wiggs?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +Who has canonized someone who's a doctor of the church?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +List the institute of Robert hall ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +What honours did Reigh Count receive?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +What are some relatives of the spouse of Uncle henry from Oz?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . },Orange(huggingface) +Count the number of characters in Batman Live?,SELECT DISTINCT COUNT(?uri) WHERE { ?uri . ?uri },Orange(huggingface) +Where did the plays written by Robert Schenkkan take place?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Some movies whose screenplay is done by american born people?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . },Orange(huggingface) +Where was the movie after Khiladi 786 recorded?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Who is married to Susan Weber Soros?,SELECT DISTINCT ?uri WHERE {?uri . },Orange(huggingface) +"What is the architecture of First National Bank and Trust Building (Lima, Ohio) ?","SELECT DISTINCT ?uri WHERE { ?uri }",Orange(huggingface) +Relatives of Moses used to follow which religions?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +Which publisher of Stone Canoe is also the university for which Michael Powell plays for?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +Count the number of battles fought by the military person involved in Morocco?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri },Orange(huggingface) +Which office of Walter Evans Edge is also the part of Atlantic seaboard fall lines ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +Which river originate from limerick?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +What are some products of the the company whose subsidiary is Sony Corp shareholders and subsidies?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . },Orange(huggingface) +How many corporations were founded in Texas?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . ?uri },Orange(huggingface) +How many teams have used the stadium which hosted the WCW mayhem?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +What is Jon Speelman famous for?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Name the fictional character whose species is American Pekin duck and has relatives named Ludwig Von Drake?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +How many different currencies are used in the places governed by the president of France?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },Orange(huggingface) +what kind of games can I find for PC 9800?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +How many theme musics have been composed by Julian Gingell?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . },Orange(huggingface) +List the cast member of the movies whose producer is Mark Johnson.,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +In which state is the alma matter of Jan Paulsen located ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +Where was the engineer born who manufactured EP R.E.P. 1?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +Where was James H. Fields buried?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +"Where is the VP buried, which was served by Frederick Cooke?",SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +List down all the cast members of Tony n' Tina's Wedding ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +On what subject does WTJC-LP air?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +How many artists have their works in the Sao Paolo Museum of Art?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?uri },Orange(huggingface) +Who were the pole drivers in GP when Damon hill was the first driver?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Who served as a governor of Indiana Territory?,SELECT DISTINCT ?uri WHERE {?uri },Orange(huggingface) +Who is the president of Carl Stokes and Wyche Fowler ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +How many bands are signed up with Kobalt Label Services?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . ?uri },Orange(huggingface) +Which leader of United States House of Representatives was the appointer of John Drayton?,"SELECT DISTINCT ?uri WHERE { ?uri. ?uri}",Orange(huggingface) +List the total number of regions of the building which are located in Grand Forks Air Force Base?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri },Orange(huggingface) +What is the largest city of the birthplace of Pat Kirkwood?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +Where was David Scherman trained ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Name the musician who was given label by Celluloid Records and has been associated with Africa'70 ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +Who are the relatives of the character after which Quagmire's Quagmire was made?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . },Orange(huggingface) +With whom is the institution of David Charles affiliated?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +What is the total number of other destinations of the airlines whose one of the destinations is Mediterranean Sea?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri },Orange(huggingface) +Where was Juno I launched from ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +How many companies serve the Australian region?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . ?uri },Orange(huggingface) +What is the capital of the region which maintains the South Park Bridge ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +What is the total number of fictional characters whose created by Greg Daniels and series is The Office (U.S. TV series)?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . ?uri },Orange(huggingface) +"Through which important cities the does the river originating from the Duwamish, flow?",SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +What is the municipality of Liberty Bell?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Name the university with mascot as Aubie and president as jay Gogue ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +Where are the movies directed by Faisal Aman Khan recorded?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +Which software uses windows as it's operating system and is written in C++?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +Name some basketball players whose team is coached by Fred Hoiberg?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },Orange(huggingface) +How many other home stadium are there of the soccer club whose home stadium is Luzhniki Stadium?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri },Orange(huggingface) +List the trainers of Shinya Aoki ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Count everyone who lives in a place where Indian English is an official language?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?uri ?x . },Orange(huggingface) +In how many countries do the rivers start which end at the Caspian Sea?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?uri },Orange(huggingface) +Which awards are presented by Swedish Academy?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +To which series does Lost special belong to ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Count the total number of academic discipline of the journals whose one of the academic discipline is Neuroimaging ?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri },Orange(huggingface) +Which house has published books about Jazz?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +How many services does 21Vianet provide?,SELECT DISTINCT COUNT(?uri) WHERE { ?uri . },Orange(huggingface) +Where is the stadium of west Papus football team?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +What is the drafted team of the people expected to join toronto marlies?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +What team is famous for Robert Nederlander and also the debuting team of Gary Sanchez?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . ?uri },Orange(huggingface) +"Where is the tombstone of the parliament members who served with James Roberts as the Vice President, US?",SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Which people are known for appearing on the television show Dragon's Den?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +"How many teams was Garry Unger in, previously?",SELECT DISTINCT COUNT(?uri) WHERE { ?uri . ?uri },Orange(huggingface) +"In which state is the team, which has John Roeslein?",SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +Which Tv series led to Frasier?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +In how many places have the companies started in Newcastle worked?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?uri },Orange(huggingface) +City of Miami Cemetery is the governing body of which city?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +"Who founded the city where First Church of Christ, Scientist is located?","SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . }",Orange(huggingface) +Which is the largest city of Union State ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +Which countries share a similar sociocultural and ethnic heritage of that of Native Indonesians?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Who are the people who influenced the writers of Evenor?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +What is the allegiance of the Albert Kwesi Ocran and state of origin of the Jojo Chintoh?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +Is Tenzing Norgay the first person to scale Mt. Everest?,ASK WHERE { },Orange(huggingface) +Name the famous employee of open society foundations ?,SELECT DISTINCT ?uri WHERE {?uri . },Orange(huggingface) +Which body governs over the place made by the chumash people?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +What is manufactured by a company headed by Kazuo Hirai?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . },Orange(huggingface) +List down the prime ministers of Peter Thorneycroft?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +List the uni. having affiliation with Graham Holding Company and have a campus in Iowa ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +Which football players have Newell's Old Boys as youthclub?,SELECT DISTINCT ?uri WHERE {?uri },Orange(huggingface) +What location country of AH141 is also the nation of malaysia Junior hockey league?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +What are the awards won by the producer of Elizabeth: The Golden Age?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +Under which scientist did doctoral students erban ieica and Erich Bagge study?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +Who is the distributor of Rev (drink) ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +What awards were presented to the person who produced Paradise place?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Who develops the computation platform of Microsoft Expression Encoder?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +Give me some shows related to the ones created by Russell Davies,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },Orange(huggingface) +Name the actors of the TV show which has an episode named The Five ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Which musical artist collaborated with Tony Allen (musician) and label is Victor Entertainment?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +What is the city of the 2015 MLS All-Star Game and birthplace of the The Okee Dokee Brothers?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +Which religion is prevalent in the schools of the Ashanti region?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Name the university with affiliations as Graham Holdings Company and campus at Indiana?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +"Where did the graduates of Memphis, Tenessee continue their education?","SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . }",Orange(huggingface) +Who are the trainers of Candice Michelle?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Give me some nominees of politicians in the US?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +List the comic characters created by Joe Shuster?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +In which municipalities does the NYC housing authority own buildings?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +How many races has Best Mate won?,SELECT DISTINCT COUNT(?uri) WHERE { ?uri . },Orange(huggingface) +What is the programme format of WWTR?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Count the different alma maters of people employed by the CNN?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },Orange(huggingface) +Which company had built the rockets launched at the Cape Canaveral Air Force Station Space Launch Complex 17?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +List the things for which the relatives of Mrunalini Kunte are known?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +List the work institutions of the medicians who has also worked at University of Miami?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Name some cars similar to the ones which are assembled at the Jefferson North Assembly?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Whose deputy was Franz von Papen?,SELECT DISTINCT ?uri WHERE {?uri },Orange(huggingface) +Name whose youth club was FC Barcelona?,SELECT DISTINCT ?uri WHERE {?uri . },Orange(huggingface) +Whose predecessor had Jenny Macklin as a deputy ?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . },Orange(huggingface) +Whos a famous relative of anne spielberg?,SELECT DISTINCT ?uri WHERE {?uri . },Orange(huggingface) +How many important works have been done by Russel Davies?,SELECT DISTINCT COUNT(?uri) WHERE { ?uri . },Orange(huggingface) +How many factions were fighting in the wars where Blue Jacket was a commander?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },Orange(huggingface) +List all the major shrines of the saints which has one of the shrines as Debre Libanos ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Companies headquartered in Geneva own which TV Shows?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . },Orange(huggingface) +Which TV show developed by J. Michael Stracznski has artist as Christopher Franke ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +Giorgos Kaminis is the mayor of what?,SELECT DISTINCT ?uri WHERE {?uri },Orange(huggingface) +Which cloud platform of Google cloud connect also provides services to 21Vianet ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +Who is the appointer of Earl B. Ruth ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +What can be cooked out of things belonging to the order Sapindales?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . },Orange(huggingface) +King crimson has been recorded in which places?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +What do the banks owned by Norwegian ministry of finance produce?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +What team had the debut of Marv Throneberry and Curt Coleman?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +What rivers originate from Australian Alps?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +What foundation place of Temenos Group is the death place of jerzy Jzef Poocki ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +Which sports are played in schools affiliated with the Harvest Christian Center?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +What is the style of architecture of South Loop Printing House District?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +What is the division of the companies who make Runes of Magic?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Which official residence of Nikos Pateras is also the stadium of anionios G.S.S. season 2014-15 ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +Who made the engine whose predecessor is the SHO V6?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +What academic discipline of the Journal of Cerebral Blood Flow & Metabolism is also the record label of the Double Diamond (album)?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +What is the currency of the government type of Kerguelen Islands?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +What is the layout of the cars similar to that of the Subaru Outback?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +"Where does the railway tracks start, which ends in Kazan?",SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +List all the former partners of the figure skater whose one of the former partner was Andrea poapst ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +"Which person constituency is Duboce Triangle, San Francisco and military unit is USS Kittiwake (ASR-13)?","SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri }",Orange(huggingface) +Who is buried at the place governed by National Park Service?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . },Orange(huggingface) +"How many tenats have been there, of the constructions of PCL constructures?",SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },Orange(huggingface) +Which awards did the parents of Anna Bergman win?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +What is the location of Sam Sen Railway Station?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +What are some devices made by Taiwanese companies?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },Orange(huggingface) +What is the debut team of the football player whose college is UCLA Bruins football?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Which developer of Go was also the predecssor of X compnay?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +"Where do the people, famous for the Panathinaikos FC reside?",SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +List the science fiction shows broadcasted on BBC HD?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +How many bands have members currently playing the Fender Stratocaster?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?uri ?x . ?uri },Orange(huggingface) +Which genre of books are published by Random House?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +To which places do the flights go by airlines headquartered in the UK?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Who is the builder of Atamurat-Kerkichi Bridge?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +What are all the religions that have been followed by the Sir Lankan attorneys?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +How many broadcast area of the television stations exists whose broadcast area is Rodrigues?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri },Orange(huggingface) +What is the awards given to the horse whose grandson is the famous Counterpoint?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Which constructor's team won the 1967 Mexican Grand Prix ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Who were the head of government agencies working in the German occupied Europe?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +How many rivers end in the Indian Ocean?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . ?uri },Orange(huggingface) +How many other key people are there of the non-profit organisations whose key people is Hillary Clinton ?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri },Orange(huggingface) +Scientists at the University of Queensland have won which awards?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +How many people currently play for the NYC FC?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . },Orange(huggingface) +What river is it whose source is Dowra?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +For which band did Dave Hollister perform in the past?,SELECT DISTINCT ?uri WHERE {?uri },Orange(huggingface) +How many TV shows are similar to the ones belonging to fantasy genre?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?uri ?x . ?uri },Orange(huggingface) +When did Aghasalim Childagh die?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Has the Frank R Lillie House the Chicago architecture?,ASK WHERE { },Orange(huggingface) +"Name the river with Readin, Brekshire in its path and mouth place is Sothend-on-sea ?","SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri }",Orange(huggingface) +What is the faith of Kwai Chang Caine ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Name the people whose academic advisor has also mentored the thesis of Alexius Meinong?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },Orange(huggingface) +Who is owner of the soccer club which owns the Cobham Training Centre?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +Who all are buried in Arlington national cementary?,SELECT DISTINCT ?uri WHERE {?uri },Orange(huggingface) +What are the movies whose music is composed by Vangelis?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +What is the birth name of Putri Raemawasti ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +What is the draft team of the ice hockey players whose position is Centre ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +What is the total number of other restingplace of the politicians whose one of the restingplace is East Norwalk Historical Cemetery?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri },Orange(huggingface) +Which local authority of Buckhurst Hill County High School is the palce of burial of Elizabeth Rhuddlan ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +What are some magazines whose publishers are themselves Rock and Roll Hall of Fame members?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },Orange(huggingface) +Who has rented the stadiums owned by Toronto?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +What is the area of ITV (Thailand) ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +In which country did Philippe tesnire and judson huss die?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },Orange(huggingface) +What is the title of Kakae?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Name the mammals which are primate and belongs to family of ape?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +Name the president of Wyche Fowler ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +List the movies produced by Michael Deeley ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +What is the alma mater of Fikret Orman?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +What is the area of Tar Heel Sports Network ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Who is the Artist of the singles whose film genre is Country music ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Count the participants of the NBA?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . },Orange(huggingface) +Which sports are played at institues in Taguig?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +For which other teams do members of tanzanian national football team play?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +Who appointed the governor under whom Richard Winn works?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Whose shrine is in aachen cathedral?,SELECT DISTINCT ?uri WHERE {?uri . },Orange(huggingface) +Count the number of cities on the Mediterranean Sea?,SELECT DISTINCT COUNT(?uri) WHERE { ?uri . },Orange(huggingface) +Where were Micheal Santos and Wendy Jaquet born?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +Is Serbian Titieca a doctoral student of Werner Heisenberg,ASK WHERE { },Orange(huggingface) +Give me a count of movies whose producer is Larry J. Franco?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . ?uri },Orange(huggingface) +Who is the political figure whose military branch is Colonial troops?,SELECT DISTINCT ?uri WHERE {?uri },Orange(huggingface) +How many awards have been given to the founder of Grameen Bank?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },Orange(huggingface) +What are the veneration of the one for which there's a major shrine in Hebron?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +Who has allegiance is Colony of Virginia and buried in Montpelier?,"SELECT DISTINCT ?uri WHERE {?uri . ?uri . }",Orange(huggingface) +In which series do I find Minbari species' characters?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +People in the royal Thai army follow which religion?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Which models were featured in Playboy Playmates 1954?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +Give me all martial artists trained by Joe Schilling.,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +List the writers of Tales of Suspense ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Who are some basketball players who played for Phoenix Suns?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +Who is the chancellor of the university which affiliates the Dartington College of Arts?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +"In which sects was the aristocrat venerated, whose parent is Thelred the Unready?",SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Count all the scientologists.,SELECT DISTINCT COUNT(?uri) WHERE {?uri . },Orange(huggingface) +How many other families of the mammals exists whose one family is also Hominidae?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri },Orange(huggingface) +The authors of Zhorstoke nebo was influenced by whom?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +Name the founders of the record labels whose one of the founders is Frank Rogers?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Which arena of WPC Dynamo Moscow is the death palce of Mikhail Voronin ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +Which past members of the The Conglomerate (American group) also sang Take Me There (Blackstreet & Ma song)?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +What is the university whose campus is Mount Moosilauke?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +What sports are played at Vishwajyot High School?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +What is the origin of the grape whose wine region is the Troodos Mountains ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +"In which state is Goose Lake Valle, which is also part of Lava River Cave ?",SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +What are the academic interests of the advisor of Paul Demiville ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +Which share holder of outlook is also the content license of the MSX Basics?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +Count the number of religions followed by Janta Dal members.,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },Orange(huggingface) +Which government agency is run by Supachai Somcharoen?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +return some players who have played in the NBA?,SELECT DISTINCT ?uri WHERE {?uri },Orange(huggingface) +What kind of buildings were designed by Pyusawhti?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +How many different organizations own the railway lines which are a part of Norfolk Southern Railway?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?uri },Orange(huggingface) +Where did the aristocrats die whose mother was Maria Ludwika Krasinska?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Name the console whose successor is PlayStation 4 and predecessor is PlayStation 2?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +Who was the PM under which William Deane served?,SELECT DISTINCT ?uri WHERE { ?uri . },Orange(huggingface) +How many destinations are covered by the airlines which also serves Europe?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri },Orange(huggingface) +What are the airlines whose hub airport is Los Angeles International Airport?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +What is the official name of Arkansas wine ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Katharevousa writers have been given which awards?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +What is the Nickname of Daniel O'Regan?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Which TV show whose theme is composed by someone signed up with ATO records?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },Orange(huggingface) +How many other important things have been written by the creator of Stuart Alan Jones?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },Orange(huggingface) +Count the band members of Skull Gang?,SELECT DISTINCT COUNT(?uri) WHERE { ?uri . ?uri },Orange(huggingface) +Which owner of the national Herald india is the leader of Kumta?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +What is the alma mater of Marshall Fletcher McCallie and has affiliation with Vanderbilt University Medical Center?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +Which series has an episode called The lost special and also a character named Sherlock Holmes ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +Through which label has Katy B released her singles?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +What is the common party of the Manthena Venkata Raju and B. Shiva Rao?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +How many titles have been won by the beauty queens which had brown hair?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },Orange(huggingface) +What are the television shows whose company is Playtone?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +Jerry Bock's musicals has been adapted from how many things?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },Orange(huggingface) +What awards have been given to some screenwriters?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +List the battles fought by Ali Habib Mahmud?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +What is the occupation of the people who are born in Iowa?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +"Who won the ohio house of representatives, 2010?","SELECT DISTINCT ?uri WHERE { ?uri }",Orange(huggingface) +Josef Buhler belongs to which political party?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +list all the chairman of Vancouver Whitecaps FC?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +What is the location country of the bank whose successor is Mauritius Bank ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Which city is Black Grape Global located ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +What is the distributing label of StandBy Records ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +"In which ice hockey league, did the team coached by Joel Quenneville win?",SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },Orange(huggingface) +What is the common battle fought by Stephen Urban and Ali Habib Mahmud?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +How many parties are there of the office holders whose one of the party is Janata Dal ?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri },Orange(huggingface) +What mascot of the Galatasaray Handball Team is also the team name of Cristo Rey Jesuit high School ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +What are the nicknames given to the characters of The Wolves of the Mercy Falls?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +What is the Recorded of the Kaptaan is also the headquarters of the Orient News?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +Which nationalist group was responsible for foundation of Young Lords?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +What is the residence of the bronze medalist of Alpine skiing at the women's downhill competition at the 1972 Winter Olympics?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +Who were the first drivers in the grand prix which took place at Autodromo Enzo e Dino Ferrari?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +What is the television show whose channel's parent organisation is Fox Sports?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },Orange(huggingface) +Where are the politicians buried who succeeded George Whitefield Davis?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Which line of the Vadodara Junction railway station is the route end of Mumbai Vadodara Expressway?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +List all the co-founders of the non-profit organisations which have founding member as David pressman?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +What railway lines go through the stations maintained by Western Australian Public Transport Authority?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +How many owners are there of lines starting at the South Station?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },Orange(huggingface) +Give me a count of mammals whose family is Canidae?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . ?uri },Orange(huggingface) +What are the television shows whose company is European Broadcasting Union?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +Who did Daniel Gibson marry?,SELECT DISTINCT ?uri WHERE {?uri . },Orange(huggingface) +People from how many political parties exist in Maharashtra?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },Orange(huggingface) +Where is the school which is the rival of Somerset Berkley Regional High?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Who are the politicians whose death place is Ontario?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +"How many home stadium are there, of the soccer club seasons whose chairman is Merritt Paulson?",SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },Orange(huggingface) +What is the occupation of the band members of The Shirelles?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +In which cities can the beverage related to Barq's be found?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +Which soccer players are currently playing for NYC FC?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +How many shows are made by the channel whose predecessor was the Comedy Channel?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?uri ?x . ?uri },Orange(huggingface) +Which license of the Microsoft Office Picture Manager is also the product of the Apple Productivity Experience Group,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +List the products of the company which published Tweenies: Game Time.,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +List the shows whose network is run by BBC.,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },Orange(huggingface) +Which peak was first scaled by Krzysztof Wielicki?,SELECT DISTINCT ?uri WHERE {?uri },Orange(huggingface) +Count the number of region of AN/FSQ-7 Combat Direction Central?,SELECT DISTINCT COUNT(?uri) WHERE { ?uri . },Orange(huggingface) +Does fox belong to the phylum of Chordate?,ASK WHERE { },Orange(huggingface) +What is the total number of office holders who preceded the people working under president bill clinton?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?uri ?x . ?uri },Orange(huggingface) +"Who currently operates the railway lines one of whose stockholder is Chicago, St Paul, Minneapolis and Omaha railway?","SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x }",Orange(huggingface) +How many movies were directed by the graduate of Burbank High School ?,"SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?uri ?x . ?uri }",Orange(huggingface) +What are some cars similar to luxury cars?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Who is the owner of Saumarez?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +What are some music artists whose bands have signed up with Entertainment One Music?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +What is the title of the successor of Kaulahea I?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +List the products of Playboy Enterprises?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Which nation hosts the WTA Tour Championships?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +What are the sports played by the universities who also plays taekwondo ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +Where does the Kentucky cycle take place?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Which governing body of the Oahu Railway and Land Company is also the military branch of the Jimmy Quillen?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +State the religion of the person known for People's Bank (Sri Lanka) ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +Which fictional character's portrayer was edited by Roger Barton?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },Orange(huggingface) +Name the TV show whose cast member is Companion (Doctor Who) and is related to The Sarah Jane Adventures?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +What are the notableworks of Russell T Davies?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +How many groups speak the English Language?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . ?uri },Orange(huggingface) +How many other ingredient are there in the foods which have one of the ingredient as Potato ?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri },Orange(huggingface) +Which river's source mountain is Baikal Mountains and is located in Laptev Sea ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +List few musical artist whose notable instruments are Ludwig Drums and Remo?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +List the places where the relatives of Mark Donaldson died ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +In which state is Red Willow Creek?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +"From where does the river start, which flows into the Conowingo dam?",SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +What faith of Buddhist Tai Hung College is also the acadmeic interest of Paul Demiville ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +Which television show is the subsequent work of Frasier and the opening theme is Gary Portnoy?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +"Who was the opponent of Robert Carr, 1st Earl of Somerset?","SELECT DISTINCT ?uri WHERE { ?uri }",Orange(huggingface) +What are the awards won by the producer of Puss in Boots (film)?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +Which sitcom is broadcasted by FOX and presented by Brian Dunkleman?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +What are some video games whose music is composed by an employ of the company Creatures?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },Orange(huggingface) +What borders siberia?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +What is the region of the successor of Mr. Jerome B. Chaffee?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +Who are the tenants of the stadium where the UFC 140 is located?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +What are some shows by Comedy Central?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +Under which president did the predecessor of Simon Ferro work?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +What is the genre of Battle Chess?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Who is the operator of FedExField?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +What is the broadcast area of CFRX ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Which driver had the pole position in 1994 Spanish Grand Prix?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +What shows are on the networks which are from the United States?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },Orange(huggingface) +Which region of Bannock is the origin of Spaghetti squash ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +In which places do companies founded in Newcastle operate?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Who is the incumbent of Al Gore presidential campaign of 2000 ?,"SELECT DISTINCT ?uri WHERE { ?uri }",Orange(huggingface) +How many albums were released under the Victor Entertainment label?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . ?uri },Orange(huggingface) +Where can one find some quick bread in the world?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +Who are the players whose former teams are Carolina Panthers and Indianapolis Colts?,SELECT DISTINCT ?uri WHERE { ?uri . ?uri . },Orange(huggingface) +Who did Bruce Bochy play for?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Semani languages are spoken in which countries?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +In which place is the company which is known for Barbara bestor located ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Give me a count of movies whose editor is Mark Stevens?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . ?uri },Orange(huggingface) +What is the destinations of the airline whose headquarters is in Manchester?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Who was the parent of person whose child is William C P breckinridge?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Name the street address of Rhodes-Haverty Building ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Which company has a product named Visual Studio and One Drive as service ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +Who all were involved in the wars fought by the commander Blue Jacket?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +What is the total number of religions that politicians have followed?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },Orange(huggingface) +Which veterans served at CBS?,SELECT DISTINCT ?uri WHERE {?uri . },Orange(huggingface) +How many mammals are in the Chordate phylum?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . ?uri },Orange(huggingface) +Where was the predecessor of Sevan Ross born?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +"Which companies make cars with a front engine, rear wheel drive layout?","SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x }",Orange(huggingface) +What is the product of the BBC Multimedia and series of the The Last Resort (Doctor Who)?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +How many other architect are there of the historic places whose architect is also Stanford White ?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri },Orange(huggingface) +What all are written in the C programming language?,SELECT DISTINCT ?uri WHERE {?uri },Orange(huggingface) +Who are the tenants of MasterCard Centre?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Give me a count of airlines whose hub airport is Los Angeles International Airport?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . ?uri },Orange(huggingface) +Name the parent company of Ford Air Transport Service?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Where was Antonio Giannini born?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Who is the writer of mark twain Tonight?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Who is the leader of Allgemeine SS ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Which mainter of Pandaruan Bridge is also the land of Malaysia junior Hockey league ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +River which flows into the eugene mahoney state park pass through which states?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +Which school did Robbie Diack attend?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Who is the artist of the album which has the song I Can't Change the World ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +Count the number of shows whose creators are Jerry Seinfeld and Larry David?,SELECT DISTINCT COUNT(?uri) WHERE { ?uri . ?uri },Orange(huggingface) +Name the garrison of the Western Naval Command and line of the Vadodara Junction railway station ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +Where do the airlines garrisoned at Manchester airport fly to?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Count the number of offices held by people who have their allegiances with the american civil war union?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },Orange(huggingface) +"What genre isPyChess from, which employes Craig Van Tilbury?",SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +List the judges of Rising Star which is also the artist of Brad Paisley discography?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +What are the current music bands of Chester Bennington?,SELECT DISTINCT ?uri WHERE {?uri },Orange(huggingface) +Name the TV shows owned by divisions of CBS?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },Orange(huggingface) +"Count the different places where the people died, who were born in England?",SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },Orange(huggingface) +Where does the network cofounded by Seewoosagur Ramgoolam air its shows?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +From how many different institutes have the members of Judge Advocate General's Corps graduated?,"SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?uri }",Orange(huggingface) +Who is the parent of FD Roosevelt JR?,"SELECT DISTINCT ?uri WHERE {?uri . }",Orange(huggingface) +List some songwriters whose work has been recorded in Miami?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +How many other Guests are there of the television episodes whose Guests is Brian d'Arcy James?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri },Orange(huggingface) +Guggenheim family is the cofounder of a company that invested stocks in which baseball teams?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },Orange(huggingface) +"What series is Mazes of Time from, and is produced by BBC multimedia?",SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +Where was the company who is the operator of Harihar Airport founded ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Name the movie who has screenplay by Akiva Goldsman and is edited by Mark Stevens ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +What is the religious affiliation of Hong Kong Taoist Association Tang Hin Memorial Secondary School ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +How many basketball players studied in the Midland College?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . ?uri },Orange(huggingface) +How many games are played at universities affiliated with the Association of Southeast Asian Institutions of Higher Learning?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },Orange(huggingface) +What is the address of Federal Reserve Bank Building?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Name the narrators of the album which has been narrated by Alan Thicke ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +Which country's people have graduated from Ghana School of Law?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Who are the current members of Insects vs Robots?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Where did Meg McGuffin graduated ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Who has recorded their singles in London?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Where did the music genre of Harry and the Potters originate?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +List the sports of PATTS College of Aeronautics which are of interest of Jon Speelman ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +"Which political party of kumta had affiliation with Indian general election, 2004 (Andhra Pradesh)?","SELECT DISTINCT ?uri WHERE { ?uri. ?uri}",Orange(huggingface) +What is the name of Mary's divine child?,SELECT DISTINCT ?uri WHERE {?uri . },Orange(huggingface) +Where is Ethiopian Parliament Building located ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Who is the leader of the town where the Myntdu river originates?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +What is the total number of other characters of the plays whose characters is Robin (comics)?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri },Orange(huggingface) +What is the nationality of the chancellor who was served by Michael Mayr?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Name the ones who debuted in the San Francisco 49ers.,SELECT DISTINCT ?uri WHERE {?uri . },Orange(huggingface) +Which county seats are in the district where I can find the Hylebos Creek?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +Moscow-Kazan high speed railway starts from which station?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +How many different kinds of games are published by Interplay Entertainment?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },Orange(huggingface) +Who is the developer of Montecito Inn?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Which administrative region leader is Sukhumbhand Paribatra and was founded by Rama I?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +In which wars did commanders born in Indochina fight?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },Orange(huggingface) +Name the common current team of the Shaun Thong and Kaan Onder?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },Orange(huggingface) +Which governor of Charles Willing had a child named John Scott ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . },Orange(huggingface) +What are the regions served by Toll Global Express which is also the country of LPGA?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +Through which cities do the rivers starting at the Montauk State Park flow?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +What is the television show with presenter as Ryan Seacrest and theme music composer as Julian Gingell?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +Whose provides the service of Outlook and also products such as Visual Studio?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . },Orange(huggingface) +How many TV shows are of the company which has the subsidiary Big Ticket Entertainment?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?uri ?x . ?uri },Orange(huggingface) +What is the home town of Rolando Gomez and is also the place of death of Clyde McNeal?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +Who has starred in the amusement park attractions where Jim Dooley was performing?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Who built the stadiums where 2014 FIFA under 17 woman's world cup took place?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +"Which music band made Take Me There, and to which Tedd Riley was associated?",SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +"Where did the genres originate, which were in the Harry and the Potters album?",SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },Orange(huggingface) +Which military personnel belong to the branch of Continental Army?,SELECT DISTINCT ?uri WHERE {?uri },Orange(huggingface) +How many cities are around the sea in which the ionian sea flows?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Where does the publisher of Kathimerini live?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +What genre's software are released with a GNU GPL license?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +In how many different highschools have people schooled in Penn State Nittany Lions football studied?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?uri },Orange(huggingface) +Who is the cover artist of Doctor Mirabilis (novel)?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Which newspaper owned by Schibsted is published in Swedish?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +How many groups have fought in wars where Richard Taylor fought too?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Which athletics of Jaimatu Muslim Mindano is same as the genre of the Fritz Chess ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +Which city's governing body is led by Bruce Harrell?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . },Orange(huggingface) +"Name the office holder whose predecessor is Henry E. Catto, Jr. and won Screen Actors Guild Life Achievement Award?","SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri }",Orange(huggingface) +Which basketball team's coach is Kurt Rambis?,SELECT DISTINCT ?uri WHERE {?uri },Orange(huggingface) +List the interest of the scientists whose one of the field is Chinese poetry ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Which co founder of Sea gayle Music is also the artist of Brad Paisley Discography?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +Which pole driver of 1989 Portuguese Grand Prix was also the first driver of 1993 European Grand Prix ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +Who are the characters of Batman Live?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +In how many different places do Starwood hotels and resorts worldwide operate?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },Orange(huggingface) +List the associated musical artist of the current members of Al Bano and Romina Power?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +Which purpose of the Maharashtra Chess Association is Abhijit kunte is also know for?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +Which automobile platform provider of Chiva bus is also the parent company of the Ford Falcon Cobra ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +What religion is followed by the commander of Defense Security Command?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +What are the awards won by the film editor of World of Tomorrow ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +In how many different fields people are alumini of the University of Oxford working?,"SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . }",Orange(huggingface) +Who owns the bridge which crosses the Orange Line of MBTA?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Give me the total number of employer of the engineers whose one of the employer is McDonnell Aircraft?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri },Orange(huggingface) +Count number of people who follow a religion which has an important office in Gold Base?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?uri ?x . ?uri },Orange(huggingface) +Which religion followers are the members of Janata Dal?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +How many politicians are there from the city of Ganges?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },Orange(huggingface) +Name the president served by a lieutenant who succeeded Bob C Riley.,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },Orange(huggingface) +How many TV shows' networks are headquarterd in NY?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?uri ?x . ?uri },Orange(huggingface) +What is the honorary title of the narrator of Everything Will Be OK?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +Who is the owner of Latvian Wikipedia and Wiktionary?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },Orange(huggingface) +Which shows had their creators born in England?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },Orange(huggingface) +"What is the debut team of the baseball player who was born in Williamsburg, Kansas ?","SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x }",Orange(huggingface) +What is the label of the album whose previous work is Waterfall?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +In which series has Sean Young portrayed someone?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +What are the movies produced by Michael Deeley?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +Which tv series have a score composed by judy hard angelo?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +"Where did the president study, who's the president of Besiktas JK?",SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +Who all have been canonized by Pope Paul VI?,SELECT DISTINCT ?uri WHERE {?uri },Orange(huggingface) +Was Stephanie Rice the flagbearer of Australia at the 2008 Summer Olympics?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +What is the allegiance of Albert Kwesi Ocran ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +What sports can be played in institutions in Bataan?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +"What religion do the politicians follow, who graduated from the Yokkohama Nationaal University?",SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +What awards did the founder of Grameen Bank win?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +Who follow religions led by David Miscavige?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . },Orange(huggingface) +Which wine region of Bogdanua is the mouth country of Upper Neretva?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +what are some common surnames of female people?,SELECT DISTINCT ?uri WHERE {?uri },Orange(huggingface) +"Where does Truman McGill Hobbs, United States District Judge live?",SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Which continents can be reached by flight companies available on Gatwick Airport?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +How many bands began in Birmingham?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . ?uri },Orange(huggingface) +Which religion does the leader of Church and Wellesley follow?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +What is the predecessor of PlayStation 4?,SELECT DISTINCT ?uri WHERE {?uri . },Orange(huggingface) +What are the home stadiums of the things Leonid Fedun has been the chairman of?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +What religion did the president follow which was served by Kang Young-hoon?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +On what subjects was Broca's Brain written?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Which musical band produced the subsequent work of City of New Orleans ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +What is the hometown of the volleyball player whose club is VC Lokomotiv Novosibirsk ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +What are some families of mammals in the animal kingdom?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +What are the things Eric Schiller known for?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Which is the nearest city to Elliott Bay?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Name the people who were in a youth club managed by Luis Enrique ?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . },Orange(huggingface) +List the agencies located someplace lead by Alex Chalk.,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },Orange(huggingface) +Name the river with mouth as Thames Estuary and passes through Reading Berkshire ?,"SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri }",Orange(huggingface) +Which are the comics characters painted by Bruce Timm and created by Paul Dini?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +What is the label of things produced by the band If?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +Count the birthplaces of recepients of the National Museum of Racing and Hall of Fame.,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?uri },Orange(huggingface) +"Which units are garrisoned at Arlington County, Virginia?","SELECT DISTINCT ?uri WHERE {?uri }",Orange(huggingface) +"Where did the wrestler die who was billed in Norman, Oklahoma?","SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x }",Orange(huggingface) +Name the software whose operating system is Mac OS and programming language is C++ ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +Who originally wrote the manga which was later illustrated by Tamon Ohta?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +What are some common ingredients used in Swedish dishes?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +Where was Girls (The Prodigy song) recorded ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Who has been the tenant of the stadium built by PCL construction firm?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +What is the county seat of the district through which the Beckler River flows?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +List the awards given to the key people in Pixar ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +Which company is the parent company of Chevrolet Spark?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Who is the person who are on the board of Freedom of the City?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +To which settlement does Elliot Bay belong to?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +what does the cahora bassa flow into?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Which Fox show is presented by Ryan Seacrest?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +"For everyone who died in paris, count their different fields of work.",SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },Orange(huggingface) +Count the total number of launch site of the rockets which have been launched form Cape Canaveral Air Force Station ?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri },Orange(huggingface) +List down the important people of The Elders?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Who influenced the author of The Shooting of Dan McGrew?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +Who was in military unit which played the role of Air interdiction?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . },Orange(huggingface) +Name the band atleast one of whose members is famous for playing the Fender Stratocaster?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },Orange(huggingface) +"Through which states does the road go, which has a junction on Keningston Maryland?","SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x }",Orange(huggingface) +Purnima Banerjee and Rishang Keishing are politicians of what party ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +Who is the builder of Estadio Nacional de Costa Rica and also location of Xianren Cave?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +Name the saint whose major shrine is in Canada and was canonized by Pope Benedict XVI?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +What is the academic discipline of the Journal of Cerebral Blood Flow & Metabolism and also an ingredient of the Ragout fin ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +What are some causes of death of European Americans?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +Count the awards given to the recepients of the Becket fund for religious liberty.,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },Orange(huggingface) +How many prime ministers did the predecessor of Duncan Sandys serve?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },Orange(huggingface) +Where is the debut team of Shaquil Barrett located?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +How many local authorities manage mixed gender schools?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },Orange(huggingface) +Name the person whose daughter is Rohan Marley and also another children named Sharon Marley ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +To which company does Raymond Conner is critical to?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +Name the religious affiliation of Vagif Aliyev ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +List the relatives of clay Aiken ?,SELECT DISTINCT ?uri WHERE {?uri . },Orange(huggingface) +Which American football player is a former team player of Indianapolis Colts and current team is Michigan Wolverines?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +Who is the founder of the trade union which affiliates with Amalgamated Association of Iron and Steel Workers?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +What kind of games are made by Interplay Entertainment?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Who produces the trains operated by the MTR?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Give me a count of bacterias which belongs to Bacilli class?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . ?uri },Orange(huggingface) +List all the tenants of the stadium where the WWF Summer Slam 2004 took place.,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +Count the number of people became famous for when Andrew Jackson was a commander ?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?uri ?x . },Orange(huggingface) +What is the former partner of the figure skaters whose current partner is Alexa Scimeca?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +"In how many areas do the networks broadcast, which also broadcasts in North Carolina?",SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?uri },Orange(huggingface) +Where was James McClure born ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Who directed the albums recorded in Anaheim?,"SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x }",Orange(huggingface) +"What is the incumbent of the Al Gore presidential campaign, 2000 and also the president of the Ann Lewis ?","SELECT DISTINCT ?uri WHERE { ?uri. ?uri}",Orange(huggingface) +Georg Meissner was doctoral supervisor of which scientist ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +What teams did the ex teamplayers of lighthouse boy club start their career with?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +Where does the Jerusalem Institute of Justice render their services?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +From which party is the politician who was selected in Barasat constituency?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Which royal people are buried in Rome?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +Name the sports played by PATTS College of Aeronautics?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Which airlines fly to Gimhae International Airport?,SELECT DISTINCT ?uri WHERE {?uri },Orange(huggingface) +What have some famous Christians died of?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +Which stockholder of yale Repertory Theatre was training center of William Anthony ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +To which country is Svetlana Navasardyan from?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Where did the relatives of Gustavo Rojas Pinilla study?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +Where is Carmel Winery?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +What is the country whose speaker of the Dewan Rakyat is Pandikar Amin Mulia?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +What religion did the spouse of Richie Aprile follow?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +Which soccer clubs are in the Liga Divisi Utama?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +How many cities are around the sea into which the aegean sea flows?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Name an American football player who debuted in Chicago Bears and former team is 1998 Baltimore Ravens season?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +What show has theme music composer as Ron Grainer and at the same time is related to Class (2016 TV series)?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +Which party won the elections when Y.S. Rajasekhara Reddy was in power?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +What is the television show whose subsequent work is Crusade (TV series) and developed by J. Michael Straczynski?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +What genre of games are made by Blizzard Entertainment studios?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Name the fictional character whose relative are Duck family and Clan McDuck?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +Name the members of youth clubs which have Camp Nou as their homeground.,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . },Orange(huggingface) +"What is the university to which Erica Frank went, and where Ivan Toplak was a club manager?",SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +Name the origins of the river with Quich Department as one of the origin ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +"Which parent comapny of hypnotize Minds is the label of the Producers, a 2005 film?",SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +What are some given names for males?,SELECT DISTINCT ?uri WHERE {?uri },Orange(huggingface) +What is the nationality of the entomologist who is a renowned authority of Smerinthus saliceti ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +List the governers of Winston Bryant?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Name all the doctoral student of the scientist who also supervised Mary Ainsworth ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Name the mountain whose parent peak is located in Mexico.,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },Orange(huggingface) +"List presidents of the school whose one of the president is Charles, Prince of Wales?","SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x }",Orange(huggingface) +What are the movies whose director's daughter is Luke Scott?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },Orange(huggingface) +"Name the office holders whose successor died in Morristown, New Jersey?","SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri }",Orange(huggingface) +Where did Wallace Dollase die?,SELECT DISTINCT ?uri WHERE { ?uri . },Orange(huggingface) +Who are the major stockholders of the bank which is the company of Bloomberg Markets?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +"Who are the parent of the people that has POD as Redding, Connecticut ?","SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . }",Orange(huggingface) +What is the name of the homeground of football team Panionios G.S.S.?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +"In which sects were the aristocrats included, who were buried in Westminister abbey?",SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +who are some miss michigan usa?,SELECT DISTINCT ?uri WHERE {?uri . },Orange(huggingface) +How many mountain are there in Sierra Nevada range?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . ?uri },Orange(huggingface) +Name the notable commanders of Army Group Oberrhein ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Copley Medal has been awarded to which scientists?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +"How many awards have been awarded to people who are buried in Glendale, California?","SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . }",Orange(huggingface) +In which state does the valley bordering the Modoc plateau lie?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Give me the total number of Guests of the television episodes whose one of the Guests is Michael Cristofer?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri },Orange(huggingface) +List down all the baseball teams whose team manager was a Catcher?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },Orange(huggingface) +For how many other teams have the members of Atlant Moscow Oblast played?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },Orange(huggingface) +Which were the philosophers whose primary interest was Natural philosophy?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +Which program was on NBC network with executive producer as Glen and Les Charles?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +What religions do diplomats typically follow?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +What is the governing body of Fort Monroe ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Who is the executive producer of Into the Dalek ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +List the colonel with branch as Militia?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . },Orange(huggingface) +What is the common religious affiliation of the Wickramabahu Central College (National School) and that of Vesak?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +Who wrote the play in which a character called Stella Kowalski exists?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Name the work institutions of Andrew Schally?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Name a movie with actor as Momoko Kochi and music by Akira Ifukube?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +Name some software as a service?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +How many shows is Russell Davies known for?,SELECT DISTINCT COUNT(?uri) WHERE { ?uri . ?uri },Orange(huggingface) +Name the office holder with predecessor as Mark Latham and partner Tim Mathieson?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +In how many places have people canonized by John Paul II died?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?uri },Orange(huggingface) +Which things are Breann McGregor known for?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Name the movies directed by Stanley Kubrick and edited by Anthony Harvey?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +Name the language of I Love How You Love Me ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +What is the military conflict whose commanders are John McEwen and Phm Vn ng?,SELECT DISTINCT ?uri WHERE { ?uri . ?uri . ?uri },Orange(huggingface) +How many dishes are made with an ingredient belonging to the flowering plant species?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?uri ?x . ?uri },Orange(huggingface) +Name the rivers who originate from Essex?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +Who is the editor of Hearth and Home?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +List the fields of Sylvain Lvi ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +What is the nationality of Sune Agerschou ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Which region of English American is also the palce of Death of Brent Darby ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +Whihc associate of THomas Bryan Martin is also the founder of Pittsburgh ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +In what wars was Steve Buyer involved?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Name the death location of Judson Huss ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Who is the authority of Maine School of Science and Mathematics ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +What company is the distributor of Bombay Sapphire?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Count the awards received by Immunologists?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?uri },Orange(huggingface) +What is the total number of guests on the show whose theme music is Let me be your star?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },Orange(huggingface) +What is the television show whose executive producer is Steven Peterman?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +Which licensee of the WRVU is also the alma mater of the Todd J. Campbell ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +Journals of how many fields can be found in US?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },Orange(huggingface) +What is the college of the basketball player who lives in Ashton Historic district?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +How many non fiction topics does Thud! deals with?,SELECT DISTINCT COUNT(?uri) WHERE { ?uri . },Orange(huggingface) +Which parent company of the Cornell University Press is also the alma mater of the Mario Garca Menocal?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +Count the number of ingredient of the foods which have one of the ingredient is Pork ?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri },Orange(huggingface) +How many currencies are used in places where people speak French?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?uri },Orange(huggingface) +in which country does the river end which originates in Lebrsnik?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +What are the movies whose music is given by Laurie Johnson?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +What sports are played at universities affiliated by States Colleges and Universities athletic association?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Who all have been a commander during the battles of Ohio?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +What is the leader of the government agency which is the military unit of Erich Kempka?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +What are the party of the politicians whose deputy was Chaudhary Devi Lal?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +List the battles fought by Roh Tae-woo?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +What is the common region of the broadcast area of ITV and nationality of Ajahn Thate?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +List all the bands which have members of the band Guy in them?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +Who has Saint Joseph and Mary as parents?,SELECT DISTINCT ?uri WHERE { ?uri . ?uri . },Orange(huggingface) +Name the scientist whose supervisor was John Robert Woodyard and has won Norbert Wiener Award for Social and Professional Responsibility?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +Saores de costa built a bridge over which river?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Count the number of families of the Animal kingdom.,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },Orange(huggingface) +"Who did the person whose predecessor is Arthur Slaght, play for?",SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +What are some party leaders of the parties which have had a seat in Berlin?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Who owns Ivanpah Solar Power Facility?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +What is written in a programming language developed by GNOME Project?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . },Orange(huggingface) +What is debut team of the baseball players who died in Los Angeles?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Name the president who had relatives in Clinton family and lieutenant named Joe Purcell?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +Who are the producers of Marie Sisters?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +What companies are located in toronto?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +Which basketball team's president studied in the Brockport Golden Eagles?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },Orange(huggingface) +"What are the source of the streams whose one of the source is Calera, Oklahoma?","SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x }",Orange(huggingface) +Name the movie whose screenplay is by Akiva Goldsman and directed by Joel Schumacher ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +What is the mascot of the handball teams in the Turkish Handball Super League?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +What are the products of the company who published Robot Wars: Metal Mayhem ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Which sports exist in the universities whose president is Emanuel de Guzman?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Name a colonel whose resting place is Montpelier ?,"SELECT DISTINCT ?uri WHERE {?uri . ?uri . }",Orange(huggingface) +Who is the chancellor of Falmouth University ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +"Where is the headquarters of the public transit system which owns Target Field, a Metro Transit Station ?",SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +To which political party does Virendra Kataria belongs?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Name all the bands which have members of QDT in them.,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +List all the artist of albums which have been produced by Stephen Kozmeniuk ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +What is the country whose leader was once Valentina Matviyenko?,SELECT DISTINCT ?uri WHERE {?uri . },Orange(huggingface) +Which builder of Ford Straight-6 engine is also the automobile platform provider of Chiva bus?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +What all is owned by a company one of whose division is Paramount Domestic Television?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . },Orange(huggingface) +Which awards did the narrator of Oscar and Lucinda win?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +Which office holder's resting place is Alta Mesa Memorial park and has adrian A. Basora as successor?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +Laozi has authored which books?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +Name the mascot of Austin College?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +What are the binomial authority of Menetries's warbler?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +"In which of the parties that have governed over Rishikesh, does Govinda belong too?",SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +How many bacterias have taxonomy as Bacillales and domain as Bacteria?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . ?uri },Orange(huggingface) +Where was William anthony trained ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +What are the artists that are associated with the Framptons camel album?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +Under which US president was a politician in opposition of John G Schmitz?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Which wars were fought by the commander whose deputy was Robert T. Herres?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },Orange(huggingface) +Who is the scientist whose academic advisor is Franz Brentano?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +What is the common citizenship between JSM Hopoer and Robert Valentine ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +Which settlement's neighboring municipalities are Cologny and Pregny-Chambsy?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +Bridges over what can carry vehicles?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Who won a Norbert Wiener Award for Social and Professional Responsibility?,SELECT DISTINCT ?uri WHERE {?uri . },Orange(huggingface) +Under which president was timothy l. woodruff a lieutenant?,SELECT DISTINCT ?uri WHERE {?uri },Orange(huggingface) +Who is the person opposed by Tom McLaury and Ike Clanton?,SELECT DISTINCT ?uri WHERE { ?uri . ?uri . ?uri },Orange(huggingface) +How many airlines have a hub at an airport run by LA World Airports?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?uri ?x . ?uri },Orange(huggingface) +How many kinds of games can be played on the Amiga?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },Orange(huggingface) +How many movies have been cinematographed by Jordan Cronenweth?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . ?uri },Orange(huggingface) +Count the different genres of games published by Titus Software,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },Orange(huggingface) +What is the appliance which uses the central processing unit manufactured by Marvell Technology Group?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +Name the sport league of Hampton Roads Rhinos?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +What sport activities are available at Polytechnic University of the Philippines Bataan?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Which military battles are associated with Israel?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +Name the mountain whose range is Sierra Nevada (U.S.) and parent mountain peak is Nevado de Toluca?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +What is the religion of the ethnic group to which Clara Ng belongs?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Name the sea into which Danish Straits flows and has Kaliningrad as one of the city on the shore ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +Which local authority of Buckhurst Hill County High School is the palce of burial of Elizabeth Rhuddlan ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +How many TV shows have executive producer as Steven Moffat ?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . ?uri },Orange(huggingface) +What program is presented by Brian Dunkleman and has artist as Simon Fuller?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +Which university has a sports team member called Micheal Powell and also owns Syracuse University Press ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +What is the sovereign state of the Dafydd Benfras where Jasmine Lowson is also citizen of?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +List the races of Fergie Sutherland?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Which birthplace of Liliya Lobanova is also the location of the Snake Island?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +Which TV show's writer is Erik Jendresen and distributor is HBO?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +How many members are there in the European Go Federation?,SELECT DISTINCT COUNT(?uri) WHERE { ?uri . },Orange(huggingface) +In what battles did president Park Chung-hee participate?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +Which predecessor of Alexander Downer was deputy to Neil Brown ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . },Orange(huggingface) +Which designer of RENFE also owns Renaissance Center ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +Who owns Chelsea F.C.?,SELECT DISTINCT ?uri WHERE {?uri . },Orange(huggingface) +Who have become famous by movies produced by Laurence Mark?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . },Orange(huggingface) +How many schools have a bison as their mascot?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . ?uri },Orange(huggingface) +How many genres gave birth to other genres which emphasize Bass Guitars?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?uri },Orange(huggingface) +List the program genres of the sister stations of WASH FM?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +Who is the writer of the singles whose producer is Peter-John Vettese?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +How many people have worked in the band one of whose current member is Hynief?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?uri },Orange(huggingface) +Among the companies who has product named Chinook who has a key person as Dennis Muilenburg ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +Where is the team of Abdel Boucker located ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +Which company owns the manufacturer of the Edsel Ranger?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +What is the order of the Henry Clay and profession of the William Luther Hill?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +What are some wars fought when Chung Il Kwon as the country's prime minister?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },Orange(huggingface) +In how many different places can I find companies which were founded in toronto?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?uri },Orange(huggingface) +List the destinations to which the airlines headquartered at the Gatwick Airport fly to?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +How many railway lines go through the station maintained by Public transport authority of western australia?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?uri },Orange(huggingface) +What organisations purpose is Peace?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +What other things are provided by the producer of Office 365?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +Name the battle fought by the people which also fought in Levant ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +What is the hub of Wan Air ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Who operates twin Cities 400 ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +"Name the local authority of Trinity School, Brentwood ?","SELECT DISTINCT ?uri WHERE { ?uri }",Orange(huggingface) +What are the TV shows whose network is also known as the CW?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },Orange(huggingface) +Who was member of boards at Royal Society and Trinity House?,SELECT DISTINCT ?uri WHERE { ?uri . ?uri . },Orange(huggingface) +What is the base currency of the country which operates the Marion Dufresne?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +For how many other teams have the former players of Boston Bruins played?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?uri },Orange(huggingface) +"What is the state of the settlement, which is the sub assembly of Mohamedia, Tunisia ?","SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . }",Orange(huggingface) +which movies have been published by Cinema International Corporation?,SELECT DISTINCT ?uri WHERE {?uri },Orange(huggingface) +Who is the owner of the bank where Thomas Secunda works?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +"Of the places where Kurt Vonnegut Memorial Library exists, where did Louis LeCocq die?",SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +Which country's leader is Giuseppe Bertello?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +Name some people who are buried in a place governed by the US Department of the Interior?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },Orange(huggingface) +How many genres of games can I find on the commodore CDTV?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },Orange(huggingface) +Name the alma mater of the scientist famous for Email filtering ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Which TNT show has Christopher Franke as artist?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +What do the relatives of James Hartness do?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +How many maintainers are there of the bridges that can carry motor vehicles over them?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },Orange(huggingface) +Name a royalty whose one of the child is Augustus and is associated with Publius Servilius Vatia Isauricus?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . },Orange(huggingface) +To which company is Michael Dell a father company?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +Where does the jurisdiction of European Border and Coast Guard fall?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +What is the currency of Kerguelen Islands?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +List the teams for which Bobby Hoppe played ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Count the different causes of death of Christians.,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },Orange(huggingface) +Who gave guest appearances on the show which is the next episode after the Bombshell one?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Which producer of the Eristoff is also the distributor of Bombay Sapphire?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +"List all the movies whose directors were born in Kenosha, Wisconsin?","SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . }",Orange(huggingface) +Name the nearest city to Lake Victoria?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +How many different writers have written for Jump Square?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },Orange(huggingface) +Name the television show whose voice is given by April Stewart and it's distributor is Broadcast syndication?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +In which countries were the Russian volleyball team players born?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Where is the sister station of Al Arabiya 99 located?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +What is the home town of the musical artist who is the current members of Slapstick?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +What are some tv shows created by Simon Fuller?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +Which fictional character portrayed by Roger barton has Padm Amidala as family ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +What are some famous companies founded in the US?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +"List the people educated at Harvard-Westlake School and has resting place as Palo Alto, California?","SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri }",Orange(huggingface) +To which students did Ernest Rutherford advise to?,SELECT DISTINCT ?uri WHERE {?uri . },Orange(huggingface) +How many games are released for virtual consoles?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . ?uri },Orange(huggingface) +Which company developed the language designed by Lars Bak?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +"Which famous political figure appointed william cushing, and also founded Pittsburgh",SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +How many games have a composer who worked for the Creatures?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?uri ?x . ?uri },Orange(huggingface) +Name the city whose province is Metropolitan City of Venice and has leader as Luigi Brugnaro?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . },Orange(huggingface) +Name the movie whose director is Ridley Scott and it's music composer is Vangelis?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +In which timezone does Khok Kwang lie?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +In how many places can I find tombs of people who fought in the Norwalk Trainband?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },Orange(huggingface) +List all important people of the non profit organization which has Hilary Clinton as a key person ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Which currency is used by the record label of the Way to Your Heart?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +Name the scientist whose doctoral supervisor's doctoral student is John Bowlby?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },Orange(huggingface) +Give me a count of musicians who play an instrument developed by George Beauchamp?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?uri ?x . ?uri },Orange(huggingface) +Name the basketball players drafted by Los Angeles Clippers ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +"List the alma mater of the congressmen who attended Nashville, Tennessee ?","SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x }",Orange(huggingface) +How many games have a publisher based in US?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?uri ?x . ?uri },Orange(huggingface) +List all the layouts of the automobile whose one of the layout is four-wheel-drive layout ?,"SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x }",Orange(huggingface) +Who is the prime minister that Michael Jeffery served?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +List the awards won by the film director of Chicken Run?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +Where is the capital of Kelsey Creek located?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +Name books with publisher as Francisco de Robles and writer as Miguel de Cervantes ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +In which state can I find Burr Truss styled bridges?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Who are the opponents of graduates of the Middle Temple?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +Name the river whose mouth mountain is Southend-on-Sea and mouth place is Essex?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +"What is the american football league whose champion is from Kansas City, Missouri?","SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri }",Orange(huggingface) +Which officers fought in the war of Siege of Fort Recovery?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +Name the TV shows with network as NBC and company as Paramount Television ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +In which states can I find Truss bridges?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +What ethinicity of Linda Hogan is also the state of origin of Holmes Colbert?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +Who is the writer of The Sandman (Vertigo) ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Which science fiction show has Steven Moffat as executive producer ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +Count all that was built by a company whose leader is Kazuo Hirai?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?uri ?x . },Orange(huggingface) +What is the region of Lumberjack ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Who owns the company that made the Edsel Villager?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +Who has given guest appearances on the TV Episodes whose music was done by Mama Makes 3?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +What is the purpose of Maharashtra Chess Association ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +Which company's division is Audi India? Correct Question,SELECT DISTINCT ?uri WHERE {?uri },Orange(huggingface) +Where did the 2015 MLS All-Star Game take place?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Name the sitcoms whose network's owning company is Chris-Craft Industries?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },Orange(huggingface) +Name the television show whose creator is Simon Fuller and presented by Ryan Seacrest?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +Who owns the bank where Fabio Mercurio works?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Count the number of movies whose distributor is RKO Pictures and director of photography is Gregg Toland?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . ?uri },Orange(huggingface) +Name the mountain located in California and has parent peak as Nevado de Toluca ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +Name some dishes made with flowering plants.,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },Orange(huggingface) +"Count the units garrisoned at Arlington County, Virginia.","SELECT DISTINCT COUNT(?uri) WHERE {?uri . ?uri }",Orange(huggingface) +Who all have been judges on CTV Network's shows?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Which fictional character portrayed by Roger barton has Darth Vader as family member ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +What city is located on the mouth of Duwamish River?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +How many thesis were supervised by Ernest Rutherford?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . },Orange(huggingface) +Name a river starting from arequipa region?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +What sports are played in schools in Vashi?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Which source of Water resources management in El Salvador is also the nation of the Sierra del Merendn?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +Which serving railway line of the Daund Junction railway station was also the place where 99 (2009 film) was recorded?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +Who wrote the musical whose composer is Emil Dean Zoghby?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Name the fictional character whose voice's animator is Hardie Gramatky?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },Orange(huggingface) +List the awards won by the fashion designer which have been recognized by Tennessee State Museum ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +How many services are there of the companies whose services is Web hosting service ?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri },Orange(huggingface) +How many famous people are from the Filipinos?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . },Orange(huggingface) +Which country were the associates of Hilda Duhalde from?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +List everything in which saxophone players have been cast.,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . },Orange(huggingface) +Which river's source place is Gloucestershire and has mouth in North Sea?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +From what american football teams did Carlos Emmons play?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Which BBC's TV show is related with the Sarah Jane Adventures?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +Which university is led by Jay Gogue?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +Where does the river end which starts in Richmond Park?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Which Harris County based company is a subsidiary of Tandem Computers?,"SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri }",Orange(huggingface) +"Who is the child of John Tyler, Sr.?","SELECT DISTINCT ?uri WHERE { ?uri }",Orange(huggingface) +Which city's neighboring municipalities are Lancy and Pregny-Chambsy?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +Name the river which flows through the closest city of Mount Raimer ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +Where was the battle fought where 2nd Foreign Infantry Regiment participated?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +List all the awards won by the artist who has won SIGGRAPH ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +Who narrated the albums in which Harry Nilsson performed?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +What are on the borders of Shimsa Plateau?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Name the municipality of Roberto Clemente Bridge ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Who all did their high school in Denbigh high School?,"SELECT DISTINCT ?uri WHERE {?uri }",Orange(huggingface) +What are all the countires where food related to tuna salad is consumed?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +What are some relatives of the people who fought in Operation Barbarossa?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Which comic characters were created by Paul Dini?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +What is the place of birth of the stars of Auto Shankar ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +Who is associated to the predecessor of Dan Mica?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . },Orange(huggingface) +Name the military units whose command structure's headquarters is The Pentagon?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },Orange(huggingface) +In how many places has Don R. Berlin worked?,SELECT DISTINCT COUNT(?uri) WHERE { ?uri . },Orange(huggingface) +Name the TV shows whose developer is J. Michael Straczynski and executive producer is Douglas Netter?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +How many books are written by the author who is famous for Novelas Ejemplares?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?uri ?x . ?uri },Orange(huggingface) +From which country is Lawrence Okoye's nationality?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +List some pupils of National Science Medal winning scientists?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +What is the mascot of Galatasaray Handball Team ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Does Lousana lie at the end of Alberta Highway 42?,ASK WHERE { . },Orange(huggingface) +Count the number of sports played by the school which also plays Association football ?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri },Orange(huggingface) +In which fields are both Paul Demiville and Sylvain levi experts?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },Orange(huggingface) +who is the governer of New Castile?,SELECT DISTINCT ?uri WHERE {?uri },Orange(huggingface) +"For all the senators who once studied in Sturm College of Law, give their burial place?",SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +List the people who were born in Gelnhausen and graduated from Pepperdine University?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +Name the movies distributed by Warner Bros. and directed by Ridley Scott?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +Which ceremonial County of the East Tilbury is also the local authority of the Buckhurst Hill County High School ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +Which work institue of andrew Schally belongs to WTUL ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +Where are the tombs of alumni of national academy museum and school?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +Name the profession of Oamr D Conger for which Jack Ryan was also nominated?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +Which rivers originate from Dowra?,SELECT DISTINCT ?uri WHERE {?uri },Orange(huggingface) +Name the TV show whose composer is Judy Hart Angelo and company as Paramount Television ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +Where did the people die who were known for Young Life?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +What religion are the characters of Absolutely Fabulous from?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Which politician's son is buried in Metairie Cementery?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },Orange(huggingface) +Name the prospect team of Mikhail Pashnin ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +what are some devices made by asus?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +What is the largest city of Pulau Ubin?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +"Who are some american football players whose high school is Oktoc, Mississippi?","SELECT DISTINCT ?uri WHERE {?uri . ?uri }",Orange(huggingface) +"Where does the road starting from Madison, Wisconsin end?","SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x }",Orange(huggingface) +what are the nicknames of the people who are in Ekstraliga?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +What awards have the narrator of the Cries and Whispers won?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +Who is the fictional character who starred in The Dognapper?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +How many different layouts do cars designed by Oliver Boulay have?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },Orange(huggingface) +Who is the writer of He's a Pirate ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +"List the primeministers of Victor Hope, 2nd Marquess of Linlithgow ?","SELECT DISTINCT ?uri WHERE { ?uri }",Orange(huggingface) +What religions are followed by economists?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +In how many countries are people born who play cricket?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?uri },Orange(huggingface) +Give me a count of mammals which have their order as Primate?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . ?uri },Orange(huggingface) +Give me a count of movies whose music composer is Bernard Herrmann?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . ?uri },Orange(huggingface) +"What was the book that lead to Sagan's Cosmos, about?",SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Which hockey team is coached by mike babcock?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +List the Sci-fi TV shows with theme music given by Ron Grainer?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +Who founded the city at the end of the Pittsburgh Line route?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +In what tv shows did Jason Carter act?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +Where is the rival school of Somerset Berkeley Regional High school?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Through which counties does the road go which starts at the Port Klang?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +What awards are won by the screenwriter of Lucky You?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +How many kings and queens have died in the Arabian Peninsula?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . },Orange(huggingface) +What team has players born in Dominican Republic?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +Does the hudson river flow into the lower manhattan?,ASK WHERE { },Orange(huggingface) +Which country were the people from who became famous for the Ramon Mangsaysay Award?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Who is the relative of Jim Farley?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +List the starring of the movies whose label is T-Series ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +What was developed by someone working in Cockroach Labs?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . },Orange(huggingface) +Name a person who works in Open Society Foundation and has wife named Susan Weber Soros ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +Which team's players have played in the national hockey league?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Who trained the wrestlers who are billed in Wisconsin?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +What is the official name of Colorado wine ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +What was the career of some people who have committed suicide?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +What is the deathplace of the Anatoly Kharlampiyev which is also the death place of Lyudmila Buldakova?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },Orange(huggingface) +Where do bachelor of arts live?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +What are shows whose theme music composer's home town is New York?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },Orange(huggingface) +List the birthplace of the medicians who studied in Harvard.,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Who acted in the work written by Colin Brake?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +How many mountain ranges are located in the Canton of Fribourg?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },Orange(huggingface) +What are the airlines whose hub is San Francisco International Airport?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +What is the predecessor of the automobile which is the related of Cadillac Fleetwood?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +In which department does Raymond Baldwin work?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +What is the official residence of the Christopher Daz Figuero which is also the state of the Cruce a Nado Internacional,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +Count everyone who studied at an institute which are in Suburbs?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?uri ?x . },Orange(huggingface) +List the awards won by the cinematographer of Mickey's Mellerdrammer?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +Who is the player who plays for the team that has the Michigan Stadium?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },Orange(huggingface) +What is the television show whose sculptor is C. E. Webber and composed by Murray Gold?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +What is the birthplace of the Ferrel Harris which is also resting palce of Green Wix Unthank?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +Which battles were fought under the president when Chung Won Shik was the prime minister?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Who are the golf players whose college is Arizona State Sun Devils?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +"How many awards have been received by graduates of University of Melbourne, Faculty of VCA & MCM?",SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },Orange(huggingface) +"Name the nearest city to the historic place which has Englewood, Colorado as one of them ?","SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x }",Orange(huggingface) +List the people who were the first one to climb a mountain in California?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +What is the profession of William Luther Hill ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +List the judge of the TV show whose one of the judge is Ludacris ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Which are the countires where Pioneer Corporation has flourished?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Which writer of the Snaman is also the writer of Neverwher ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +Which creator of Theme Time Radio Hour has also given the musical score of the The Times They Are a-Changin' (musical)?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +name the races where bobby beasley took part?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Where is Oskar Blues located?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +What is the city nearest to the historic place whose architect is Joseph Dion?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Name the scientist whose supervisor also supervised Mary Ainsworth?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },Orange(huggingface) +Which TV show's producer is Stephen E. Ambrose and company is DreamWorks Television?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +In which city did The Ultimate Fighter: Team Rousey vs. Team Tate take place ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +List bacteria whose order (taxonomy) is Bacillales and domain is Bacteria?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +List the shrines of the saint whose one of the shrine is Ponza?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +"Name the people whose residence is Beverly Hills, California?","SELECT DISTINCT ?uri WHERE {?uri . ?uri }",Orange(huggingface) +"Who is the opponent of United States House of Representatives elections in Ohio, 2010 ?","SELECT DISTINCT ?uri WHERE { ?uri }",Orange(huggingface) +What is the military rank of the commanders of Regiment of Mounted Grenadiers?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +"Where did the athlete start his career, who did his highschool in Red Lion Area School District?",SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +what awards have been giving to Muhammad Yunus?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +In how many different places are Brown haired models living?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },Orange(huggingface) +In which companies boards do the writers of Wikitionary belong?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +Name the military conflict whose commander was Colin Powell and took place in israel ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +What are some books whose cover illustration is designed by Marshall Arisman?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +Who is the distributer of Rev ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +List the series of the books whose author is K. W. Jeter.,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Which coach of England national under 21 footbal team is also the coach of Aston Villa F.C season ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +List all the operators of the train who operates in Budapest ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +What is the leader name of the settlements whose governing body is Municipal council?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Give me some series whose network's owning company is Warner Bros. Television?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },Orange(huggingface) +What is the location of the Walter Evans Edge office which is also the place of birth of henry Miller ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +What are the towns who have Thesaban system?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +"Which political party of Arunachal Pradesh Legislative Assembly election, 2014 was the leader of Rishikesh ?","SELECT DISTINCT ?uri WHERE { ?uri. ?uri}",Orange(huggingface) +What is used as money for French Southern and Antarctic Lands is also the product of the Karafarin Bank ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +Where did chancellor served by Rudolf Kirchschlger die?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +Who produced the TV shows for Fremantle Media?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Which company's cars are assembled in Iran?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Whose mayors are affiliated with Christen-Democratisch en Vlaams?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . },Orange(huggingface) +Mike Shinoda is in which band?,SELECT DISTINCT ?uri WHERE {?uri },Orange(huggingface) +What fictional characters are American Pekin duck species?,SELECT DISTINCT ?uri WHERE {?uri },Orange(huggingface) +Give me the name of the organization hqed at Chaeng Watthana Govt Complex?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +What religion do people of the country of Mahbuba Islam Rakhi follow?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +How many awards have graduates from the University of Queensland earned?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },Orange(huggingface) +What are the movies whose distributor's headquarters is New York?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },Orange(huggingface) +To which families does the Koolakamba belong?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Which uni did Joshua A. Siegel attend ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +In which region was political figure Wayne Allard elected?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Who owns the tunnels operated by the Massachusetts Department of Transportation?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Which new Mexico based company produces Surface ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +Count the number of judges who've come on CTV network shows.,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },Orange(huggingface) +What is the sea whose cities are Gdansk and Oulu?,SELECT DISTINCT ?uri WHERE { ?uri . ?uri . ?uri },Orange(huggingface) +How many cities are around the sea which flows into the Atlantic?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?uri },Orange(huggingface) +What is Naval Support Activity Naples a part of?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Count the number of musical work which were sold by Sony Music?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?uri ?x . ?uri },Orange(huggingface) +Who holds stock in the railway lines ending in Washington DC?,"SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x }",Orange(huggingface) +Count the movies directed by Tim Burton and music composer Danny Elfman ?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . ?uri },Orange(huggingface) +What are the track and field events of Jamiatu Muslim Mindanao?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +What is the governing body of Burro Flats Painted Cave ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +"Name the river whose source region is North-Western Province, Zambia and source location is Ikelenge District?","SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri }",Orange(huggingface) +Which first driver of the European Grand Prix 1993 has also finished first in the 1985 Portuguese Grand Prix?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri . },Orange(huggingface) +What is the debut team of the gridiron football player who coached the 1931 Staten Island Stapletons season ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Who is the producer of the song which is the previous work of He's a Liar ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Which animator of The Skeleton Dance is also the animator of the Tommy Tucker's Tooth ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +How did Letitia MacTavish Hargrave died ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +What is the largest city of the country where P. Sathyanarayanan was born?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Which television show's network is BBC HD and is related to Doctor Who Confidential?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +Name the debut team of Dan Otero?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +How many states does the Pioneer corporation operate in?,SELECT DISTINCT COUNT(?uri) WHERE { ?uri . },Orange(huggingface) +Where did the designer of Monument to Salavat Yulaev die?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +For whom did Michael Springer palyed for which also had a former student named Donald Brooks?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +Where is the predecessor of john waldo from?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +Which countries have the members of Ukrainian ministry of internal affairs swore their oath?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +Spanish harlem incident was composed by whom ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +How many races have the horses bred by Jacques Van't Hart participated in?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },Orange(huggingface) +How many different mascots are there of the NCAA teams?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },Orange(huggingface) +Name the university whose teams have been managed by Albertin Montoya?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +What prizes have been awarded to the relatives of Linn Ullmann?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +What are some cities which have a Ferris wheel?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +"Where was Henri, Duke of Rohan laid to rest?","SELECT DISTINCT ?uri WHERE { ?uri }",Orange(huggingface) +List the awards given to the race horses bred by Willis Sharpe Kilmer.,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +What are the regions in which the distributor of Secrets and Lies serves ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +what cities are close by LoDaisKa ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +What is the ethnicity of Ted Falon?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +List the members of Skull Gang?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +What novels belong to the genre of Utopian and dystopian fiction?,SELECT DISTINCT ?uri WHERE {?uri },Orange(huggingface) +List some things that Swedish people have become famous for?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +Where did Allama Matthews study?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +In which state does the ambassador who is related with J Bennett Johnston live?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +What are some apes?,SELECT DISTINCT ?uri WHERE {?uri . },Orange(huggingface) +What is the club of Perianne Jones ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Who is the scientist whose doctoral student is Erich Bagge?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +Who is the narrator of The Price of Beauty?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +What is the alma mater of the senator who is the successor of Warren Magnuson ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +In which country does the publishing house exist which was cofounded by Panos Loannides?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Enumerate the cars related to the ones assembled in Toluca?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },Orange(huggingface) +Who is known for the War of 1812 and Battle of the Thames?,SELECT DISTINCT ?uri WHERE { ?uri . ?uri . },Orange(huggingface) +"What has been founded in the state that Denton county, Texas is a part of?","SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . }",Orange(huggingface) +"Name the team Ramiro Pea played for, which was also the first team of Steve Ontiveros?",SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +List all the members of the organization whose one of the members is Bangladesh ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +List the subsequent work of the albums whose one of the subsequent work is Planet Waves?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Name the television show distributed by Broadcast syndication and voiced by Eliza Schneider?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +How many awards have been given to Italians?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },Orange(huggingface) +Which current players once played for Toronto argonauts?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +To which military division does Clark Daniel Stearns belong?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Who is the developer of the software which is produced by Claris ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +"Who has his resting place at Plymouth, Vermont and office at Massachusetts House of Representatives?","SELECT DISTINCT ?uri WHERE {?uri . ?uri . }",Orange(huggingface) +How many labels sign up progressive rock artists?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },Orange(huggingface) +What is the label of I Pray on Christmas ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +How many people currently play for the NYC FC?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . },Orange(huggingface) +In which wars has Steven Palazzo fought?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Name presidents of the schools which have queen noor of Jordan as one of them ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +What is the birth place of the children of Miguel Garca Granados?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +What was the university of the rugby player who coached the Stanford rugby teams during 1906-1917?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +Where was the person born who died in Bryn Mawr Hospital?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +Who composed the lyrics of Holler If Ya Hear Me ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Michael Deeley produce how many movies?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . },Orange(huggingface) +Where was the successor of Hank Brown born?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },Orange(huggingface) +How many rivers start in an English speaking country?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?uri ?x . ?uri },Orange(huggingface) +How many people used to play for Toronto Argonauts?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . },Orange(huggingface) +Who is the musician of Before I let you Go ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +In which state does the university which is the alma mater of Mateusz Morawiecki lie?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +What is the location city of the Denver Broncos which is also place of birth of the William C. Cramer?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},Orange(huggingface) +"What does the bridge go over, which is in Katima Mulilo?",SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Which newspapers are owned by organizations located in Oslo?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . },Orange(huggingface) +Who is venerated in Judaism and Islam?,SELECT DISTINCT ?uri WHERE { ?uri . ?uri . },Orange(huggingface) +What are the things whose mascots are from the class Eutheria?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . },Orange(huggingface) +What is the color of Xocolatlite ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +What is the nationality of Newin Chidchob ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Who is the builder of the Stadium of Costa Rica women's national football team?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Name the billed states of the wrestlers who have also billed state Georgia?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Who wrote the frost king?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +"What are some employees of Uni of California, santa cruz?","SELECT DISTINCT ?uri WHERE {?uri . }",Orange(huggingface) +What awards have been given to people schooled in the Everton park state high?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },Orange(huggingface) +Which creation of Josh Friedman was portrayed in Terminator 2 ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . },Orange(huggingface) +Did Chant Mas originate in West Africa?,ASK WHERE { },Orange(huggingface) +List books authored by Miguel de Cervantes and published by Francisco de Robles?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },Orange(huggingface) +"Who is married to a Miss Louisiana, USA?",SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . },Orange(huggingface) +Which military people served their allegiance to Union (American Civil War)?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },Orange(huggingface) +Which university provides license for WRVU ?,SELECT DISTINCT ?uri WHERE { ?uri },Orange(huggingface) +Who holds shares in something famous for the Seven Spring Mountain Resort?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . },Orange(huggingface) +Which river does the Brooklyn Bridge cross?,PREFIX dbo: PREFIX res: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { res:Brooklyn_Bridge dbo:crosses ?uri . OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } },julipc-p(huggingface) +Give me the websites of companies with more than 500000 employees.,PREFIX foaf: PREFIX dbo: PREFIX dbp: PREFIX rdf: SELECT DISTINCT ?string WHERE { ?subject rdf:type dbo:Company . ?subject dbp:numEmployees ?employees . FILTER( xsd:integer(?employees) > 500000 ) . ?subject foaf:homepage ?string . },julipc-p(huggingface) +What is the official website of Tom Cruise?,PREFIX foaf: PREFIX res: SELECT DISTINCT ?string WHERE { res:Tom_Cruise foaf:homepage ?string . },julipc-p(huggingface) +Give me all movies with Tom Cruise.,PREFIX dbo: PREFIX res: PREFIX rdf: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { ?uri rdf:type dbo:Film. ?uri dbo:starring res:Tom_Cruise . OPTIONAL {?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } },julipc-p(huggingface) +Who created Wikipedia?,PREFIX dbo: PREFIX res: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { res:Wikipedia dbo:author ?uri . OPTIONAL { ?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } },julipc-p(huggingface) +How many films did Hal Roach produce?,PREFIX dbo: PREFIX res: SELECT COUNT(DISTINCT ?uri) WHERE { ?uri dbo:producer res:Hal_Roach . },julipc-p(huggingface) +In which country does the Nile start?,PREFIX dbo: PREFIX res: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { res:Nile dbo:sourceCountry ?uri . OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } },julipc-p(huggingface) +Which states of Germany are governed by the Social Democratic Party?,PREFIX dbp: PREFIX res: PREFIX yago: PREFIX rdf: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { ?uri rdf:type yago:StatesOfGermany . { ?uri dbp:rulingParty 'SPD'@en . } UNION { ?uri dbp:rulingParty res:Social_Democratic_Party_of_Germany . } OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } },julipc-p(huggingface) +How tall is Claudia Schiffer?,PREFIX res: PREFIX dbo: SELECT DISTINCT ?height WHERE { res:Claudia_Schiffer dbo:height ?height . },julipc-p(huggingface) +Which television shows were created by Walt Disney?,PREFIX dbo: PREFIX res: PREFIX rdf: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { ?uri rdf:type dbo:TelevisionShow . ?uri dbo:creator res:Walt_Disney . OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } },julipc-p(huggingface) +What is the highest place of Karakoram?,PREFIX dbo: PREFIX res: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { res:Karakoram dbo:highestPlace ?uri . OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } },julipc-p(huggingface) +Give me all cities in New Jersey with more than 100000 inhabitants.,PREFIX dbo: PREFIX dbp: PREFIX res: PREFIX rdf: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { ?uri rdf:type dbo:City . ?uri dbo:isPartOf res:New_Jersey . ?uri dbp:populationTotal ?inhabitants . FILTER (?inhabitants > 100000) . OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } },julipc-p(huggingface) +Which actors were born in Germany?,PREFIX dbo: PREFIX res: PREFIX rdf: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { ?uri rdf:type dbo:Actor . { ?uri dbo:birthPlace res:Germany . } UNION { ?uri dbo:birthPlace ?place . ?place dbo:country res:Germany . } OPTIONAL { ?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } },julipc-p(huggingface) +Give me all actors starring in Batman Begins.,PREFIX dbo: PREFIX res: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { res:Batman_Begins dbo:starring ?uri . OPTIONAL { ?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } },julipc-p(huggingface) +Which mountain is the highest after the Annapurna?,PREFIX dbo: PREFIX res: PREFIX rdf: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { res:Annapurna dbo:elevation ?elevation . ?uri rdf:type dbo:Mountain . ?uri dbo:elevation ?otherelevation . FILTER (?otherelevation < ?elevation) . OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } } ORDER BY DESC(?otherelevation) LIMIT 1,julipc-p(huggingface) +Who designed the Brooklyn Bridge?,PREFIX res: PREFIX dbp: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { res:Brooklyn_Bridge dbp:designer ?uri . OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } },julipc-p(huggingface) +Was Natalie Portman born in the United States?,PREFIX dbo: PREFIX res: ASK WHERE { res:Natalie_Portman dbo:birthPlace ?city . ?city dbo:country res:United_States . },julipc-p(huggingface) +Which countries have more than two official languages?,PREFIX dbo: PREFIX rdf: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { ?uri rdf:type dbo:Country . ?uri dbo:officialLanguage ?language . OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } } GROUP BY ?uri ?string HAVING (COUNT(?language) > 2),julipc-p(huggingface) +Who created Goofy?,PREFIX dbo: PREFIX res: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { res:Goofy dbo:creator ?uri . OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } },julipc-p(huggingface) +Give me all soccer clubs in Spain.,"PREFIX dbo: PREFIX dbp: PREFIX res: PREFIX rdf: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { ?uri rdf:type dbo:SoccerClub . { ?uri dbo:ground res:Spain . } UNION { ?uri dbp:ground ?ground . FILTER (regex(?ground, 'Spain')) } OPTIONAL {?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } }",julipc-p(huggingface) +Who wrote the book The pillars of the Earth?,PREFIX dbo: PREFIX res: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { res:The_Pillars_of_the_Earth dbo:author ?uri . OPTIONAL {?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } },julipc-p(huggingface) +Who is the mayor of New York City?,PREFIX dbo: PREFIX res: PREFIX rdfs: SELECT ?uri ?string WHERE { res:New_York_City dbo:leaderName ?uri . OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } },julipc-p(huggingface) +Which organizations were founded in 1950?,"PREFIX dbo: PREFIX dbp: PREFIX rdf: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { ?uri rdf:type dbo:Organisation . { ?uri dbp:foundation ?date . } UNION { ?uri dbo:formationYear ?date . } FILTER regex(?date,'^1950') . OPTIONAL { ?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } }",julipc-p(huggingface) +Which presidents were born in 1945?,"PREFIX dbo: PREFIX yago: PREFIX rdf: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { { ?uri rdf:type dbo:President . } UNION { ?uri rdf:type yago:Presidents . } ?uri dbo:birthDate ?date . FILTER regex(?date, '^1945') . OPTIONAL { ?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } }",julipc-p(huggingface) +Who is the daughter of Bill Clinton married to?,PREFIX dbo: PREFIX dbp: PREFIX res: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { res:Bill_Clinton dbo:child ?child . ?child dbp:spouse ?string . ?uri rdfs:label ?string . },julipc-p(huggingface) +Through which countries does the Yenisei river flow?,PREFIX res: PREFIX dbp: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { res:Yenisei_River dbp:country ?uri . OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } },julipc-p(huggingface) +Which museum exhibits The Scream by Munch?,PREFIX dbp: PREFIX res: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { res:The_Scream dbp:museum ?uri . OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } },julipc-p(huggingface) +Give me the capitals of all countries in Africa.,PREFIX dbo: PREFIX yago: PREFIX rdf: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { ?states rdf:type yago:AfricanCountries . ?states dbo:capital ?uri . OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } },julipc-p(huggingface) +Which states border Illinois?,PREFIX res: PREFIX dbp: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { res:Illinois dbp:borderingstates ?uri . OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') . } },julipc-p(huggingface) +Which countries have places with more than two caves?,PREFIX dbo: PREFIX rdf: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { ?cave rdf:type dbo:Cave . ?cave dbo:location ?uri . ?uri rdf:type dbo:Country . OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } } GROUP BY ?uri ?string HAVING (COUNT(?cave) > 2),julipc-p(huggingface) +Which European countries have a constitutional monarchy?,PREFIX dbo: PREFIX res: PREFIX yago: PREFIX rdf: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { ?uri rdf:type yago:EuropeanCountries . ?uri dbo:governmentType res:Constitutional_monarchy . OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } },julipc-p(huggingface) +What is the highest mountain in Australia?,PREFIX dbo: PREFIX res: PREFIX rdf: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { ?uri rdf:type dbo:Mountain . ?uri dbo:locatedInArea res:Australia . ?uri dbo:elevation ?elevation . OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } } ORDER BY DESC(?elevation) LIMIT 1,julipc-p(huggingface) +Which capitals in Europe were host cities of the summer olympic games?,PREFIX yago: PREFIX rdf: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { ?uri rdf:type yago:CapitalsInEurope . ?uri rdf:type yago:HostCitiesOfTheSummerOlympicGames . OPTIONAL { ?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } },julipc-p(huggingface) +Who was the wife of U.S. president Lincoln?,PREFIX dbo: PREFIX res: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { res:Abraham_Lincoln dbo:spouse ?uri. OPTIONAL { ?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } },julipc-p(huggingface) +"Which airports are located in California, USA?",PREFIX dbo: PREFIX res: PREFIX rdf: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { ?uri rdf:type dbo:Airport . ?uri dbo:location res:California . OPTIONAL { ?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } },julipc-p(huggingface) +Which classis does the Millepede belong to?,PREFIX dbp: PREFIX res: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { res:Millipede dbp:classis ?string . ?uri rdfs:label ?string . },julipc-p(huggingface) +Is Christian Bale starring in Batman Begins?,PREFIX dbo: PREFIX res: ASK WHERE { res:Batman_Begins dbo:starring res:Christian_Bale . },julipc-p(huggingface) +In which programming language is GIMP written?,PREFIX dbo: PREFIX res: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { res:GIMP dbo:programmingLanguage ?uri . OPTIONAL { ?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } },julipc-p(huggingface) +In which country is the Limerick Lake?,PREFIX dbo: PREFIX res: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { res:Limerick_Lake dbo:country ?uri . OPTIONAL { ?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } },julipc-p(huggingface) +Which monarchs of the United Kingdom were married to a German?,PREFIX yago: PREFIX dbo: PREFIX res: PREFIX rdf: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { ?uri rdf:type yago:MonarchsOfTheUnitedKingdom . ?uri dbo:spouse ?spouse . ?spouse dbo:birthPlace res:Germany. OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } },julipc-p(huggingface) +Give me all female German chancellors.,PREFIX yago: PREFIX dbp: PREFIX res: PREFIX rdf: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { ?uri rdf:type yago:FemaleHeadsOfGovernment. ?uri dbp:office res:Chancellor_of_Germany . OPTIONAL { ?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } },julipc-p(huggingface) +Give me all video games published by Mean Hamster Software.,PREFIX dbo: PREFIX dbp: PREFIX res: PREFIX rdf: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { ?uri rdf:type dbo:VideoGame . { ?uri dbp:publisher 'Mean Hamster Software'@en . } UNION { ?uri dbo:publisher res:Mean_Hamster_Software . } OPTIONAL { ?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } },julipc-p(huggingface) +Who produced films starring Natalie Portman?,PREFIX dbo: PREFIX res: PREFIX rdf: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { ?film rdf:type dbo:Film . ?film dbo:starring res:Natalie_Portman . ?film dbo:producer ?uri . OPTIONAL {?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } },julipc-p(huggingface) +In which films did Julia Roberts as well as Richard Gere play?,PREFIX dbo: PREFIX res: PREFIX rdf: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { ?uri rdf:type dbo:Film . ?uri dbo:starring res:Julia_Roberts . ?uri dbo:starring res:Richard_Gere. OPTIONAL {?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } },julipc-p(huggingface) +How many films did Leonardo DiCaprio star in?,PREFIX dbo: PREFIX res: PREFIX rdf: PREFIX rdfs: SELECT COUNT(DISTINCT ?uri) WHERE { ?uri rdf:type dbo:Film . ?uri dbo:starring res:Leonardo_DiCaprio . },julipc-p(huggingface) +When did Finland join the EU?,PREFIX res: PREFIX dbp: SELECT DISTINCT ?date WHERE { res:Finland dbp:accessioneudate ?date . },julipc-p(huggingface) +Give me all school types.,PREFIX yago: PREFIX rdf: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { ?uri rdf:type yago:SchoolTypes . OPTIONAL { ?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } },julipc-p(huggingface) +Give me the birthdays of all actors of the television show Charmed.,PREFIX dbo: PREFIX res: SELECT DISTINCT ?date WHERE { res:Charmed dbo:starring ?actor . ?actor dbo:birthDate ?date . },julipc-p(huggingface) +Where did Abraham Lincoln die?,PREFIX dbo: PREFIX res: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { res:Abraham_Lincoln dbo:deathPlace ?uri . OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } },julipc-p(huggingface) +How many monarchical countries are there in Europe?,"PREFIX dbo: PREFIX yago: PREFIX rdf: SELECT COUNT(DISTINCT ?uri) WHERE { ?uri rdf:type yago:EuropeanCountries . ?uri dbo:governmentType ?govern . FILTER regex(?govern,'monarchy') . }",julipc-p(huggingface) +Give me all presidents of the United States.,"PREFIX yago: PREFIX dbo: PREFIX dbp: PREFIX res: PREFIX rdf: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { ?uri rdf:type dbo:Person . { ?uri rdf:type yago:PresidentsOfTheUnitedStates. } UNION { ?uri rdf:type dbo:President. ?uri dbp:title res:President_of_the_United_States. } ?uri rdfs:label ?string. FILTER (lang(?string) = 'en' && !regex(?string,'Presidency','i') && !regex(?string,'and the')) . }",julipc-p(huggingface) +Who produced the most films?,PREFIX dbo: PREFIX rdf: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { ?film rdf:type dbo:Film . ?film dbo:producer ?uri . OPTIONAL { ?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } } ORDER BY DESC(COUNT(?film)) LIMIT 1,julipc-p(huggingface) +Which languages are spoken in Estonia?,PREFIX dbo: PREFIX res: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { { res:Estonia dbo:language ?uri . } UNION { ?uri dbo:spokenIn res:Estonia . } OPTIONAL { ?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } },julipc-p(huggingface) +Is there a video game called Battle Chess?,PREFIX dbo: PREFIX rdf: PREFIX rdfs: ASK WHERE { ?uri rdf:type dbo:VideoGame . ?uri rdfs:label 'Battle Chess'@en . },julipc-p(huggingface) +Which mountains are higher than the Nanga Parbat?,PREFIX dbo: PREFIX dbp: PREFIX res: PREFIX rdf: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { res:Nanga_Parbat dbp:elevationM ?elevation . ?uri rdf:type dbo:Mountain . ?uri dbp:elevationM ?otherelevation . FILTER (?otherelevation > ?elevation) . OPTIONAL { ?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } },julipc-p(huggingface) +Which telecommunications organizations are located in Belgium?,"PREFIX dbo: PREFIX dbp: PREFIX res: PREFIX rdf: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { ?uri rdf:type dbo:Organisation . { ?uri dbp:industry res:Telecommunications . } UNION { ?uri dbp:industry ?industry . FILTER (regex(?industry, 'Telecommunication')) . } { ?uri dbo:location res:Belgium. } UNION { ?uri dbp:location res:Belgium. } UNION { ?uri dbp:locationCountry 'Belgium'@en . } OPTIONAL {?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } }",julipc-p(huggingface) +Which companies work in the aerospace industry as well as on nuclear reactor technology?,PREFIX dbo: PREFIX dbp: PREFIX res: PREFIX rdf: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { ?uri rdf:type dbo:Company . ?uri dbp:industry res:Aerospace . ?uri dbp:industry res:Nuclear_reactor_technology . OPTIONAL { ?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } },julipc-p(huggingface) +Which state of the USA has the highest population density?,PREFIX yago: PREFIX dbp: PREFIX rdf: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { ?uri rdf:type yago:StatesOfTheUnitedStates . ?uri dbp:densityrank ?rank . OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } } ORDER BY ASC(?rank) LIMIT 1,julipc-p(huggingface) +Is the wife of president Obama called Michelle?,"PREFIX dbo: PREFIX res: PREFIX rdfs: ASK WHERE { res:Barack_Obama dbo:spouse ?spouse . ?spouse rdfs:label ?name . FILTER(regex(?name,'Michelle')) }",julipc-p(huggingface) +What is the highest mountain?,PREFIX dbo: PREFIX rdf: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { ?uri rdf:type dbo:Mountain . ?uri dbo:elevation ?elevation . OPTIONAL {?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } } ORDER BY DESC(?elevation) LIMIT 1,julipc-p(huggingface) +Give me all Canadian Grunge record labels.,PREFIX dbo: PREFIX res: PREFIX rdf: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { ?uri rdf:type dbo:RecordLabel . ?uri dbo:genre res:Grunge . ?uri dbo:country res:Canada . OPTIONAL { ?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } },julipc-p(huggingface) +What is the currency of the Czech Republic?,PREFIX dbo: PREFIX res: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { res:Czech_Republic dbo:currency ?uri . OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } },julipc-p(huggingface) +Give me all books written by Danielle Steel.,PREFIX dbo: PREFIX res: PREFIX rdf: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { ?uri rdf:type dbo:Book . ?uri dbo:author res:Danielle_Steel . OPTIONAL { ?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } },julipc-p(huggingface) +In which films directed by Garry Marshall was Julia Roberts starring?,PREFIX dbo: PREFIX res: PREFIX rdf: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { ?uri rdf:type dbo:Film . ?uri dbo:starring res:Julia_Roberts . ?uri dbo:director res:Garry_Marshall . OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } },julipc-p(huggingface) +Who developed the video game World of Warcraft?,PREFIX dbo: PREFIX res: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { res:World_of_Warcraft dbo:developer ?uri . OPTIONAL { ?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } },julipc-p(huggingface) +Who owns Aldi?,PREFIX res: PREFIX dbo: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { res:Aldi dbo:keyPerson ?uri . OPTIONAL { ?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } },julipc-p(huggingface) +How many employees does IBM have?,PREFIX dbo: PREFIX res: SELECT ?number WHERE { res:IBM dbo:numberOfEmployees ?number . },julipc-p(huggingface) +What is the area code of Berlin?,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?string WHERE { res:Berlin dbo:areaCode ?string . },julipc-p(huggingface) +When was the Battle of Gettysburg?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?date WHERE { res:Battle_of_Gettysburg dbo:date ?date . },julipc-p(huggingface) +What are the official languages of the Philippines?,PREFIX dbo: PREFIX res: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { res:Philippines dbo:officialLanguage ?uri . OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } },julipc-p(huggingface) +Is Frank Herbert still alive?,PREFIX dbo: PREFIX res: ASK WHERE { res:Frank_Herbert dbo:deathDate ?date . FILTER (!BOUND(?date)) },julipc-p(huggingface) +Give me the homepage of Forbes.,PREFIX res: PREFIX foaf: SELECT DISTINCT ?string WHERE { res:Forbes foaf:homepage ?string . },julipc-p(huggingface) +Is proinsulin a protein?,PREFIX dbo: PREFIX res: PREFIX rdf: ASK WHERE { res:Proinsulin rdf:type dbo:Protein . },julipc-p(huggingface) +Which awards did WikiLeaks win?,PREFIX res: PREFIX dbp: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { res:WikiLeaks dbp:awards ?uri . OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } },julipc-p(huggingface) +List all episodes of the first season of the HBO television series The Sopranos!,PREFIX dbo: PREFIX res: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { ?uri dbo:series res:The_Sopranos . ?uri dbo:seasonNumber 1 . OPTIONAL { ?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } },julipc-p(huggingface) +Which country has the most official languages?,PREFIX dbo: PREFIX dbp: PREFIX rdf: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { ?uri rdf:type dbo:Country . ?uri dbp:officialLanguages ?language . OPTIONAL { ?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } } ORDER BY DESC(COUNT(?language)) LIMIT 1,julipc-p(huggingface) +Which U.S. states possess gold minerals?,"PREFIX yago: PREFIX dbp: PREFIX rdf: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { ?uri rdf:type yago:StatesOfTheUnitedStates . ?uri dbp:mineral ?mineral . FILTER (regex(?mineral,'Gold')) . OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } }",julipc-p(huggingface) +Is Egypts largest city also its capital?,PREFIX res: PREFIX dbo: ASK WHERE { res:Egypt dbo:largestCity ?large . res:Egypt dbo:capital ?capital . FILTER (?large = ?capital) },julipc-p(huggingface) +Which caves have more than 3 entrances?,PREFIX dbo: PREFIX res: PREFIX rdf: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { ?uri rdf:type dbo:Cave . ?uri dbo:numberOfEntrances ?entrance . FILTER (?entrance > 3) . OPTIONAL { ?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } },julipc-p(huggingface) +Give me all films produced by Hal Roach.,PREFIX dbo: PREFIX res: PREFIX rdf: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { ?uri rdf:type dbo:Film . ?uri dbo:producer res:Hal_Roach . OPTIONAL { ?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } },julipc-p(huggingface) +Which bridges are of the same type as the Manhattan Bridge?,"PREFIX dbo: PREFIX dbp: PREFIX res: PREFIX rdf: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { ?uri rdf:type dbo:Bridge . ?uri dbp:design ?design . res:Manhattan_Bridge dbp:design ?mdesign . FILTER (regex(?design, ?mdesign)). FILTER (?uri != res:Manhattan_Bridge) . OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } }",julipc-p(huggingface) +Was U.S. president Jackson involved in a war?,PREFIX dbo: PREFIX res: ASK WHERE { res:Andrew_Jackson dbo:battle ?battle . },julipc-p(huggingface) +Which software has been developed by organizations founded in California?,PREFIX dbo: PREFIX res: PREFIX rdf: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { ?company rdf:type dbo:Organisation . ?company dbo:foundationPlace res:California . ?uri dbo:developer ?company . ?uri rdf:type dbo:Software . OPTIONAL { ?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } },julipc-p(huggingface) +Who has been the 5th president of the United States of America?,PREFIX dbo: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { ?uri dbo:orderInOffice '5th President of the United States'@en . OPTIONAL { ?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } },julipc-p(huggingface) +Which music albums contain the song Last Christmas?,PREFIX foaf: PREFIX dbo: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { ?single dbo:album ?uri . ?single foaf:name 'Last Christmas'@en . OPTIONAL { ?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } },julipc-p(huggingface) +Give me all female Russian astronauts.,PREFIX yago: PREFIX rdf: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { ?uri rdf:type yago:RussianCosmonauts . ?uri rdf:type yago:FemaleAstronauts . OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } },julipc-p(huggingface) +Give me all companies in the advertising industry.,"PREFIX dbp: PREFIX dbo: PREFIX res: PREFIX rdf: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { ?uri rdf:type dbo:Company . ?uri dbp:industry ?industry . FILTER regex(?industry,'advertising','i') . OPTIONAL {?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } }",julipc-p(huggingface) +Which countries in the European Union adopted the Euro?,PREFIX dbp: PREFIX res: PREFIX yago: PREFIX rdf: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { ?uri rdf:type yago:EuropeanUnionMemberStates . { ?uri dbp:currency res:Euro . } UNION { ?uri dbp:currencyCode 'EUR'@en . } UNION { ?uri dbp:currencyCode 'Euro'@en . } OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } },julipc-p(huggingface) +When was Capcom founded?,PREFIX dbp: PREFIX res: SELECT DISTINCT ?date WHERE { res:Capcom dbp:foundation ?date . },julipc-p(huggingface) +Give me all soccer clubs in the Premier League.,PREFIX dbo: PREFIX res: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { ?uri dbo:league res:Premier_League . OPTIONAL {?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } },julipc-p(huggingface) +Who is the owner of Universal Studios?,PREFIX dbo: PREFIX res: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { res:Universal_Studios dbo:owner ?uri . OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } },julipc-p(huggingface) +What did Bruce Carver die from?,PREFIX res: PREFIX dbo: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { res:Bruce_Carver dbo:deathCause ?uri . OPTIONAL {?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } },julipc-p(huggingface) +Which books by Kerouac were published by Viking Press?,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Book . ?uri dbo:publisher res:Viking_Press . ?uri dbo:author res:Jack_Kerouac . },julipc-p(huggingface) +Which U.S. states are in the same timezone as Utah?,PREFIX res: PREFIX dbp: PREFIX yago: PREFIX rdf: SELECT DISTINCT ?uri WHERE { res:Utah dbp:timezone ?x . ?uri rdf:type yago:StatesOfTheUnitedStates . ?uri dbp:timezone ?x . FILTER (?uri != res:Utah) },julipc-p(huggingface) +Which daughters of British earls died in the same place they were born in?,PREFIX dbo: PREFIX yago: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type yago:DaughtersOfBritishEarls . ?uri dbo:birthPlace ?x . ?uri dbo:deathPlace ?y . FILTER (?x != ?y) . },julipc-p(huggingface) +Which instruments did John Lennon play?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { res:John_Lennon dbo:instrument ?uri . },julipc-p(huggingface) +When was the Statue of Liberty built?,PREFIX dbp: PREFIX res: SELECT DISTINCT ?date WHERE { res:Statue_of_Liberty dbp:beginningDate ?date . },julipc-p(huggingface) +Give me all actors starring in movies directed by and starring William Shatner.,PREFIX dbo: PREFIX dbp: PREFIX res: SELECT DISTINCT ?uri WHERE { ?x dbo:director res:William_Shatner . ?x dbo:starring res:William_Shatner . { ?x dbo:starring ?uri . } UNION { ?x dbp:starring ?uri . } },julipc-p(huggingface) +Give me all people that were born in Vienna and died in Berlin.,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { ?uri dbo:birthPlace res:Vienna . ?uri dbo:deathPlace res:Berlin . },julipc-p(huggingface) +How tall is Michael Jordan?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?num WHERE { res:Michael_Jordan dbo:height ?num . },julipc-p(huggingface) +Give me all Argentine films.,PREFIX dbo: PREFIX dbp: PREFIX res: PREFIX yago: PREFIX rdf: SELECT DISTINCT ?uri WHERE { { ?uri rdf:type yago:ArgentineFilms . } UNION { ?uri rdf:type dbo:Film . { ?uri dbo:country res:Argentina . } UNION { ?uri dbp:country 'Argentina'@en . } } },julipc-p(huggingface) +What is the total amount of men and women serving in the FDNY?,PREFIX dbp: PREFIX res: SELECT DISTINCT ?num WHERE { res:New_York_City_Fire_Department dbp:strength ?num . },julipc-p(huggingface) +Give me all breeds of the German Shepherd dog.,PREFIX dbp: PREFIX res: SELECT DISTINCT ?uri WHERE { ?uri dbp:breed res:German_Shepherd . },julipc-p(huggingface) +Who composed the music for Harold and Maude?,PREFIX res: PREFIX dbo: SELECT DISTINCT ?uri WHERE { res:Harold_and_Maude dbo:musicComposer ?uri . },julipc-p(huggingface) +In which city was the former Dutch queen Juliana buried?,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { res:Juliana_of_the_Netherlands dbo:restingPlace ?uri. ?uri rdf:type dbo:Settlement . },julipc-p(huggingface) +What are the nicknames of San Francisco?,PREFIX dbp: PREFIX res: SELECT DISTINCT ?string WHERE { res:San_Francisco dbp:nickname ?string . },julipc-p(huggingface) +Give me the Apollo 14 astronauts.,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { ?uri dbo:mission res:Apollo_14 . },julipc-p(huggingface) +Where is the residence of the prime minister of Spain?,PREFIX dbp: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Prime_Minister_of_Spain dbp:residence ?uri . },julipc-p(huggingface) +Which other weapons did the designer of the Uzi develop?,PREFIX dbo: PREFIX dbp: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Weapon . ?uri dbp:designer ?x . res:Uzi dbp:designer ?x . FILTER (?uri != res:Uzi) },julipc-p(huggingface) +To which countries does the Himalayan mountain system extend?,PREFIX dbp: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Himalayas dbp:country ?uri . },julipc-p(huggingface) +What is the founding year of the brewery that produces Pilsner Urquell?,PREFIX dbp: PREFIX res: SELECT DISTINCT ?num WHERE { res:Pilsner_Urquell dbp:brewery ?uri . ?uri dbp:foundation ?num . },julipc-p(huggingface) +Which country does the creator of Miffy come from?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Miffy dbo:creator ?x . ?x dbo:nationality ?uri . },julipc-p(huggingface) +Was Margaret Thatcher a chemist?,PREFIX res: PREFIX dbo: ASK WHERE { res:Margaret_Thatcher dbo:profession res:Chemist . },julipc-p(huggingface) +Which German cities have more than 250000 inhabitants?,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { { ?uri rdf:type dbo:City . } UNION { ?uri rdf:type dbo:Town . } ?uri dbo:country res:Germany . ?uri dbo:populationTotal ?population . FILTER ( ?population > 250000 ) },julipc-p(huggingface) +For which label did Elvis record his first album?,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?x rdf:type dbo:Album . ?x dbo:artist res:Elvis_Presley . ?x dbo:releaseDate ?y . ?x dbo:recordLabel ?uri . } ORDER BY ASC(?y) LIMIT 1,julipc-p(huggingface) +What is the capital of Canada?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Canada dbo:capital ?uri . },julipc-p(huggingface) +In which U.S. state is Fort Knox located?,PREFIX dbo: PREFIX dbp: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Fort_Knox dbp:location ?uri . ?uri dbo:country res:United_States . },julipc-p(huggingface) +Give me a list of all trumpet players that were bandleaders.,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { ?uri dbo:occupation res:Bandleader . ?uri dbo:instrument res:Trumpet . },julipc-p(huggingface) +Do Prince Harry and Prince William have the same mother?,"PREFIX dbp: ASK WHERE { dbp:mother ?x . dbp:mother ?y . FILTER (?x = ?y) }",julipc-p(huggingface) +In which military conflicts did Lawrence of Arabia participate?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { res:T._E._Lawrence dbo:battle ?uri . },julipc-p(huggingface) +Who developed Minecraft?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Minecraft dbo:developer ?uri . },julipc-p(huggingface) +How many space missions have there been?,PREFIX dbo: PREFIX rdf: SELECT COUNT(DISTINCT ?uri) WHERE { ?uri rdf:type dbo:SpaceMission . },julipc-p(huggingface) +Give me all cars that are produced in Germany.,PREFIX dbo: PREFIX dbp: PREFIX res: PREFIX yago: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Automobile . { ?uri dbp:production res:Germany . } UNION { ?uri dbp:assembly res:Germany . } UNION { ?uri dbp:manufacturer ?x . { ?x dbo:locationCountry res:Germany . } UNION { ?x rdf:type yago:AutomotiveCompaniesOfGermany . } } },julipc-p(huggingface) +Give me a list of all American inventions.,PREFIX yago: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type yago:AmericanInventions . },julipc-p(huggingface) +How many children did Benjamin Franklin have?,PREFIX res: PREFIX dbo: SELECT COUNT(DISTINCT ?uri) WHERE { res:Benjamin_Franklin dbo:child ?uri . },julipc-p(huggingface) +Who was the successor of John F. Kennedy?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { res:John_F._Kennedy dbo:successor ?uri . },julipc-p(huggingface) +Is Michelle Obama the wife of Barack Obama?,PREFIX dbo: PREFIX res: ASK WHERE { res:Barack_Obama dbo:spouse res:Michelle_Obama . },julipc-p(huggingface) +List the children of Margaret Thatcher.,PREFIX res: PREFIX dbo: SELECT DISTINCT ?uri WHERE { res:Margaret_Thatcher dbo:child ?uri . },julipc-p(huggingface) +Who is the youngest player in the Premier League?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { ?uri dbo:team ?x . ?x dbo:league res:Premier_League . ?uri dbo:birthDate ?y . } ORDER BY DESC(?y) OFFSET 0 LIMIT 1,julipc-p(huggingface) +Give me all world heritage sites designated within the past five years.,PREFIX dbo: PREFIX dbp: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:WorldHeritageSite . ?uri dbp:year ?x . FILTER ( ?x >= 2008^^xsd:integer) },julipc-p(huggingface) +Was Dutch Schultz a jew?,PREFIX dbp: PREFIX res: ASK WHERE { res:Dutch_Schultz dbp:ethnicity 'Jewish'@en . },julipc-p(huggingface) +What is the second highest mountain on Earth?,PREFIX dbo: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Mountain . ?uri dbo:elevation ?elevation . } ORDER BY DESC(?elevation) OFFSET 1 LIMIT 1,julipc-p(huggingface) +Give me all books by William Goldman with more than 300 pages.,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Book . ?uri dbo:author res:William_Goldman . ?uri dbo:numberOfPages ?x . FILTER (?x > 300) },julipc-p(huggingface) +How often did Nicole Kidman marry?,PREFIX dbo: PREFIX res: SELECT COUNT(DISTINCT ?x) WHERE { res:Nicole_Kidman dbo:spouse ?x . },julipc-p(huggingface) +What is the largest city in Australia?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Australia dbo:largestCity ?uri . },julipc-p(huggingface) +Who painted The Storm on the Sea of Galilee?,PREFIX dbp: PREFIX res: SELECT DISTINCT ?uri WHERE { res:The_Storm_on_the_Sea_of_Galilee dbp:artist ?uri . },julipc-p(huggingface) +Give me all launch pads operated by NASA.,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:LaunchPad . ?uri dbo:operator res:NASA . },julipc-p(huggingface) +Who wrote the lyrics for the Polish national anthem?,PREFIX dbo: PREFIX dbp: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Poland dbo:anthem ?x . ?x dbp:author ?uri . },julipc-p(huggingface) +Who created the comic Captain America?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Captain_America dbo:creator ?uri . },julipc-p(huggingface) +Who was the father of Queen Elizabeth II?,PREFIX res: PREFIX dbp: SELECT DISTINCT ?uri WHERE { res:Elizabeth_II dbp:father ?uri . },julipc-p(huggingface) +Which U.S. state has the abbreviation MN?,PREFIX dbp: PREFIX yago: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type yago:StatesOfTheUnitedStates . ?uri dbp:postalabbreviation 'MN'@en . },julipc-p(huggingface) +Which movies did Kurosawa direct after Rashomon?,PREFIX dbo: PREFIX dbp: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Film . ?uri dbo:director res:Akira_Kurosawa . { ?uri dbo:releaseDate ?x . } UNION { ?uri dbp:released ?x . } dbo:releaseDate ?y . FILTEr (?y > ?x) },julipc-p(huggingface) +Which professional surfers were born on the Philippines?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { ?uri dbo:occupation res:Surfing . ?uri dbo:birthPlace res:Philippines . },julipc-p(huggingface) +Give me all current Methodist national leaders.,PREFIX dbp: PREFIX res: PREFIX yago: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type yago:CurrentNationalLeaders . ?uri dbp:religion res:Methodism . },julipc-p(huggingface) +Which films starring Clint Eastwood did he direct himself?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { ?uri dbo:director res:Clint_Eastwood . ?uri dbo:starring res:Clint_Eastwood . },julipc-p(huggingface) +Who are the parents of the wife of Juan Carlos I?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Juan_Carlos_I_of_Spain dbo:spouse ?x . ?x dbo:parent ?uri . },julipc-p(huggingface) +What is the birth name of Angela Merkel?,PREFIX dbp: PREFIX res: SELECT DISTINCT ?string WHERE { res:Angela_Merkel dbp:birthName ?string . },julipc-p(huggingface) +Who was called Scarface?,PREFIX dbp: PREFIX res: SELECT DISTINCT ?uri WHERE { ?uri dbp:nickname res:Scarface . },julipc-p(huggingface) +What is the longest river?,PREFIX dbo: PREFIX dbp: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:River . ?uri dbp:length ?x . } ORDER BY DESC(?x) OFFSET 0 LIMIT 1,julipc-p(huggingface) +Did Socrates influence Aristotle?,PREFIX dbo: PREFIX res: ASK WHERE { res:Aristotle dbo:influencedBy res:Socrates . },julipc-p(huggingface) +In which UK city are the headquarters of the MI6?,PREFIX res: PREFIX dbo: SELECT DISTINCT ?uri WHERE { res:Secret_Intelligence_Service dbo:headquarter ?uri . ?uri dbo:country res:United_Kingdom . },julipc-p(huggingface) +What is the time zone of Salt Lake City?,PREFIX res: PREFIX dbp: SELECT DISTINCT ?uri WHERE { res:Salt_Lake_City dbp:timezone ?uri . },julipc-p(huggingface) +List all games by GMT.,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { ?uri dbo:publisher res:GMT_Games . },julipc-p(huggingface) +Does the new Battlestar Galactica series have more episodes than the old one?,PREFIX dbo: PREFIX res: ASK WHERE { dbo:numberOfEpisodes ?x . dbo:numberOfEpisodes ?y . FILTER (?y > ?x) },julipc-p(huggingface) +When was Alberta admitted as province?,PREFIX dbp: PREFIX res: SELECT DISTINCT ?date WHERE { res:Alberta dbp:admittancedate ?date . },julipc-p(huggingface) +Which countries are connected by the Rhine?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Rhine dbo:country ?uri . },julipc-p(huggingface) +Give me all Frisian islands that belong to the Netherlands.,PREFIX dbo: PREFIX res: PREFIX yago: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type yago:FrisianIslands . ?uri dbo:country res:Netherlands . },julipc-p(huggingface) +Which ships were called after Benjamin Franklin?,PREFIX res: PREFIX dbp: SELECT DISTINCT ?uri WHERE { ?uri dbp:shipNamesake res:Benjamin_Franklin . },julipc-p(huggingface) +Who is the husband of Amanda Palmer?,PREFIX dbp: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Amanda_Palmer dbp:spouse ?uri . },julipc-p(huggingface) +How many employees does Google have?,PREFIX res: PREFIX dbo: SELECT DISTINCT ?num WHERE { res:Google dbo:numberOfEmployees ?num . },julipc-p(huggingface) +When did Michael Jackson die?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?date WHERE { res:Michael_Jackson dbo:deathDate ?date . },julipc-p(huggingface) +How many inhabitants does Maribor have?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?num WHERE { res:Maribor dbo:populationTotal ?num . },julipc-p(huggingface) +Give me a list of all lakes in Denmark.,PREFIX dbo: PREFIX res: PREFIX yago: PREFIX rdf: SELECT DISTINCT ?uri WHERE { { ?uri rdf:type dbo:Lake . ?uri dbo:country res:Denmark . } UNION { ?uri rdf:type yago:LakesOfDenmark . } },julipc-p(huggingface) +Which Greek goddesses dwelt on Mount Olympus?,PREFIX dbp: PREFIX res: PREFIX yago: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type yago:GreekGoddesses . ?uri dbp:abode res:Mount_Olympus . },julipc-p(huggingface) +How high is the Mount Everest?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?num WHERE { res:Mount_Everest dbo:elevation ?num. },julipc-p(huggingface) +Sean Parnell is the governor of which U.S. state?,PREFIX yago: PREFIX dbp: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type yago:StatesOfTheUnitedStates . ?uri dbp:governor res:Sean_Parnell . },julipc-p(huggingface) +Did Tesla win a nobel prize in physics?,PREFIX dbo: PREFIX res: ASK WHERE { res:Nikola_Tesla dbo:award res:Nobel_Prize_in_Physics . },julipc-p(huggingface) +Who is the governor of Wyoming?,PREFIX res: PREFIX dbp: SELECT DISTINCT ?uri WHERE { res:Wyoming dbp:governor ?uri . },julipc-p(huggingface) +When were the Hells Angels founded?,PREFIX dbp: PREFIX res: SELECT DISTINCT ?date WHERE { res:Hells_Angels dbp:founded ?date . },julipc-p(huggingface) +Who is the mayor of Berlin?,PREFIX dbo: PREFIX res: PREFIX rdfs: SELECT DISTINCT ?uri WHERE { res:Berlin dbo:leader ?uri . },julipc-p(huggingface) +How many people live in the capital of Australia?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?num WHERE { res:Australia dbo:capital ?x . ?x dbo:populationTotal ?num . },julipc-p(huggingface) +Who founded Intel?,PREFIX dbo: PREFIX res: PREFIX rdfs: SELECT DISTINCT ?uri WHERE { res:Intel dbo:foundedBy ?uri . },julipc-p(huggingface) +Give me all B-sides of the Ramones.,PREFIX dbo: PREFIX dbp: PREFIX res: SELECT DISTINCT ?string WHERE { ?x dbo:musicalArtist res:Ramones . ?x dbp:bSide ?string . },julipc-p(huggingface) +Which cities does the Weser flow through?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Weser dbo:city ?uri . },julipc-p(huggingface) +Give me all movies directed by Francis Ford Coppola.,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Film . ?uri dbo:director res:Francis_Ford_Coppola . },julipc-p(huggingface) +What is the ruling party in Lisbon?,PREFIX dbp: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Lisbon dbp:leaderParty ?uri . },julipc-p(huggingface) +Who produces Orangina?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { ?uri dbo:product res:Orangina . },julipc-p(huggingface) +Give me all companies in Munich.,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Company . { ?uri dbo:location res:Munich . } UNION { ?uri dbo:headquarter res:Munich . } UNION { ?uri dbo:locationCity res:Munich . } },julipc-p(huggingface) +Was the Cuban Missile Crisis earlier than the Bay of Pigs Invasion?,PREFIX dbo: PREFIX res: ASK WHERE { res:Cuban_Missile_Crisis dbo:date ?x . res:Bay_of_Pigs_Invasion dbo:date ?y . FILTER (?x < ?y) },julipc-p(huggingface) +Who is the Formula 1 race driver with the most races?,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:FormulaOneRacer . ?uri dbo:races ?x . } ORDER BY DESC(?x) OFFSET 0 LIMIT 1,julipc-p(huggingface) +Which U.S. state has been admitted latest?,PREFIX dbp: PREFIX yago: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type yago:StatesOfTheUnitedStates . ?uri dbp:admittancedate ?x . } ORDER BY DESC(?x) OFFSET 0 LIMIT 1,julipc-p(huggingface) +How many official languages are spoken on the Seychelles?,PREFIX dbo: PREFIX res: SELECT COUNT(DISTINCT ?x) WHERE { res:Seychelles dbo:officialLanguage ?x . },julipc-p(huggingface) +Show me all songs from Bruce Springsteen released between 1980 and 1990.,PREFIX dbo: PREFIX res: PREFIX yago: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Song . ?uri dbo:artist res:Bruce_Springsteen . ?uri dbo:releaseDate ?date . FILTER (?date >= '1980-01-01'^^xsd:date && ?date <= '1990-12-31'^^xsd:date) },julipc-p(huggingface) +Give me all professional skateboarders from Sweden.,PREFIX dbo: PREFIX dbp: PREFIX res: SELECT DISTINCT ?uri WHERE { ?uri dbo:occupation res:Skateboarding . { ?uri dbo:birthPlace res:Sweden . } UNION { ?uri dbo:birthPlace ?place . ?place dbo:country res:Sweden . } },julipc-p(huggingface) +Give me all members of Prodigy.,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { res:The_Prodigy dbo:bandMember ?uri . },julipc-p(huggingface) +How many students does the Free University in Amsterdam have?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?num WHERE { res:Vrije_Universiteit dbo:numberOfStudents ?num . },julipc-p(huggingface) +Give me all Australian nonprofit organizations.,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { ?uri dbo:type res:Nonprofit_organization . { ?uri dbo:locationCountry res:Australia . } UNION { ?uri dbo:location ?x . ?x dbo:country res:Australia . } },julipc-p(huggingface) +How often did Jane Fonda marry?,PREFIX dbo: PREFIX res: SELECT COUNT(DISTINCT ?uri) WHERE { res:Jane_Fonda dbo:spouse ?uri . },julipc-p(huggingface) +What is the official website of Tom Cruise?,PREFIX dbp: PREFIX res: SELECT DISTINCT ?string WHERE { res:Tom_Cruise dbp:website ?string . },julipc-p(huggingface) +Which U.S. state has the highest population density?,PREFIX yago: PREFIX dbp: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type yago:StatesOfTheUnitedStates . ?uri dbp:densityrank ?rank . } ORDER BY ASC(?rank) OFFSET 0 LIMIT 1,julipc-p(huggingface) +Who created Wikipedia?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Wikipedia dbo:author ?uri . },julipc-p(huggingface) +In which country does the Nile start?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Nile dbo:sourceCountry ?uri . },julipc-p(huggingface) +Give me all federal chancellors of Germany.,PREFIX dbp: PREFIX res: SELECT DISTINCT ?uri WHERE { ?uri dbp:office res:Chancellor_of_Germany . },julipc-p(huggingface) +Which states of Germany are governed by the Social Democratic Party?,PREFIX dbp: PREFIX dbo: PREFIX res: PREFIX yago: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type yago:StatesOfGermany . { ?uri dbo:leaderParty res:Social_Democratic_Party_of_Germany . } UNION { ?uri dbp:rulingParty 'SPD'@en . } },julipc-p(huggingface) +Which river does the Brooklyn Bridge cross?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Brooklyn_Bridge dbo:crosses ?uri . },julipc-p(huggingface) +Which television shows were created by Walt Disney?,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:TelevisionShow . ?uri dbo:creator res:Walt_Disney . },julipc-p(huggingface) +Give me the websites of companies with more than 500000 employees.,PREFIX dbo: PREFIX dbp: PREFIX rdf: PREFIX xsd: SELECT DISTINCT ?string WHERE { ?c rdf:type dbo:Company . { ?c dbo:numberOfEmployees ?employees . } UNION { ?c dbp:numEmployees ?employees . } FILTER( xsd:integer(?employees) > 500000 ) . ?c dbp:homepage ?string . },julipc-p(huggingface) +Give me all cities in New Jersey with more than 100000 inhabitants.,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:City . ?uri dbo:isPartOf res:New_Jersey . ?uri dbo:populationTotal ?inhabitants . FILTER (?inhabitants > 100000) . },julipc-p(huggingface) +Which actors were born in Germany?,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Actor . { ?uri dbo:birthPlace res:Germany . } UNION { ?uri dbo:birthPlace ?place . ?place dbo:country res:Germany . } },julipc-p(huggingface) +Which countries have more than two official languages?,PREFIX dbo: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Country . ?uri dbo:officialLanguage ?language . } GROUP BY ?uri HAVING (COUNT(?language) > 2),julipc-p(huggingface) +In which U.S. state is Mount McKinley located?,PREFIX yago: PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type yago:StatesOfTheUnitedStates . res:Mount_McKinley dbo:locatedInArea ?uri . },julipc-p(huggingface) +Give me all movies with Tom Cruise.,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Film. ?uri dbo:starring res:Tom_Cruise . },julipc-p(huggingface) +What is the official language of Suriname?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Suriname dbo:officialLanguage ?uri . },julipc-p(huggingface) +Who wrote the book The Pillars of the Earth?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { res:The_Pillars_of_the_Earth dbo:author ?uri . },julipc-p(huggingface) +Which companies work in the aerospace industry as well as in medicine?,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Company . ?uri dbo:industry res:Aerospace . ?uri dbo:industry res:Medicine . },julipc-p(huggingface) +Which languages are spoken in Estonia?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { ?uri dbo:spokenIn res:Estonia . },julipc-p(huggingface) +Are tree frogs a type of amphibian?,PREFIX dbo: PREFIX res: ASK WHERE { res:Hylidae dbo:class res:Amphibian . },julipc-p(huggingface) +When did Latvia join the EU?,PREFIX res: PREFIX dbp: SELECT DISTINCT ?date WHERE { res:Latvia dbp:accessioneudate ?date . },julipc-p(huggingface) +Which countries have more than ten caves?,PREFIX dbo: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Country . ?cave rdf:type dbo:Cave . { ?cave dbo:location ?uri . } UNION { ?cave dbo:location ?loc . ?loc dbo:country ?uri . } } GROUP BY ?uri HAVING(COUNT(?cave) > 10),julipc-p(huggingface) +Who created Goofy?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Goofy dbo:creator ?uri . },julipc-p(huggingface) +Give me all soccer clubs in Spain.,"PREFIX dbo: PREFIX dbp: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:SoccerClub . { ?uri dbo:ground res:Spain . } UNION { ?uri dbp:ground ?ground . FILTER (regex(?ground,'Spain')) } }",julipc-p(huggingface) +Which caves have more than 3 entrances?,PREFIX dbo: PREFIX dbp: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Cave . ?uri dbp:entranceCount ?entrance . FILTER (?entrance > 3) . },julipc-p(huggingface) +Which countries adopted the Euro?,PREFIX dbp: PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Country . { ?uri dbo:currency res:Euro . } UNION { ?uri dbp:currencyCode 'EUR'@en . } },julipc-p(huggingface) +Give me all female given names.,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:GivenName . ?uri dbo:gender res:Female . },julipc-p(huggingface) +Was Marc Chagall a jew?,PREFIX dbp: PREFIX res: ASK WHERE { res:Marc_Chagall dbp:ethnicity 'Jewish'@en . },julipc-p(huggingface) +Which presidents were born in 1945?,"PREFIX dbo: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:President . ?uri dbo:birthDate ?date . FILTER regex(?date, '^1945') . }",julipc-p(huggingface) +How many Aldi stores are there?,PREFIX res: PREFIX dbo: SELECT DISTINCT ?number WHERE { res:Aldi dbo:numberOfLocations ?number . },julipc-p(huggingface) +Which museum exhibits The Scream by Munch?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { res:The_Scream dbo:museum ?uri . },julipc-p(huggingface) +For which label did Elvis record his first album?,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?x rdf:type dbo:Album . ?x dbo:artist res:Elvis_Presley . ?x dbo:releaseDate ?y . ?x dbo:recordLabel ?uri . } ORDER BY ASC(?y) OFFSET 0 LIMIT 1,julipc-p(huggingface) +Give me the capitals of all countries in Africa.,PREFIX dbo: PREFIX yago: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?states rdf:type yago:AfricanCountries . ?states dbo:capital ?uri . },julipc-p(huggingface) +Which states border Illinois?,PREFIX res: PREFIX dbp: SELECT DISTINCT ?uri WHERE { res:Illinois dbp:borderingstates ?uri . },julipc-p(huggingface) +Which U.S. states are in the same time zone as Utah?,PREFIX res: PREFIX dbp: PREFIX yago: PREFIX rdf: SELECT DISTINCT ?uri WHERE { res:Utah dbp:timezone ?x . ?uri rdf:type yago:StatesOfTheUnitedStates . ?uri dbp:timezone ?x . FILTER (?uri != res:Utah) },julipc-p(huggingface) +Give me all islands that belong to Japan.,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Island . ?uri dbo:country res:Japan . },julipc-p(huggingface) +Who designed the Brooklyn Bridge?,PREFIX res: PREFIX dbp: SELECT DISTINCT ?uri WHERE { res:Brooklyn_Bridge dbp:designer ?uri . },julipc-p(huggingface) +Who was the first president of the United States?,PREFIX dbo: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Person . ?uri dbo:office '1st President of the United States'@en . },julipc-p(huggingface) +What is the highest mountain in Australia?,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Mountain . ?uri dbo:locatedInArea res:Australia . ?uri dbo:elevation ?elevation . } ORDER BY DESC(?elevation) OFFSET 0 LIMIT 1,julipc-p(huggingface) +"Which airports are located in California, USA?",PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Airport . { ?uri dbo:location res:California . } UNION { ?uri dbo:city res:California . } UNION { ?uri dbo:city ?city . ?city dbo:isPartOf res:California . } UNION { ?uri dbo:operator res:California . } },julipc-p(huggingface) +Which Chess players died in the same place they were born in?,PREFIX dbo: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:ChessPlayer . ?uri dbo:birthPlace ?x . ?uri dbo:deathPlace ?y . FILTER (?x = ?y) . },julipc-p(huggingface) +Which capitals in Europe were host cities of the summer olympic games?,PREFIX yago: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type yago:CapitalsInEurope . ?uri rdf:type yago:HostCitiesOfTheSummerOlympicGames . },julipc-p(huggingface) +Give me all cars that are produced in Germany.,PREFIX dbo: PREFIX dbp: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Automobile . { ?uri dbo:assembly res:Germany . } UNION { ?uri dbp:assembly res:Germany . } UNION { { ?uri dbo:manufacturer ?x . } UNION { ?uri dbp:manufacturer ?x . } { ?x dbo:locationCountry res:Germany . } UNION { ?x dbo:location res:Germany . } } },julipc-p(huggingface) +Who was the wife of U.S. president Lincoln?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Abraham_Lincoln dbo:spouse ?uri. },julipc-p(huggingface) +Give me all actors starring in movies directed by William Shatner.,PREFIX dbo: PREFIX dbp: PREFIX res: SELECT DISTINCT ?uri WHERE { ?x dbo:director res:William_Shatner . ?x dbo:starring ?uri . },julipc-p(huggingface) +Which professional surfers were born in Australia?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { ?uri dbo:occupation res:Surfing . ?uri dbo:birthPlace res:Australia . },julipc-p(huggingface) +Who is the editor of Forbes?,PREFIX res: PREFIX dbo: SELECT DISTINCT ?uri WHERE { res:Forbes dbo:editor ?uri . },julipc-p(huggingface) +Give me all actors starring in Last Action Hero.,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Last_Action_Hero dbo:starring ?uri . },julipc-p(huggingface) +In which programming language is GIMP written?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { res:GIMP dbo:programmingLanguage ?uri . },julipc-p(huggingface) +In which country is the Limerick Lake?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Limerick_Lake dbo:country ?uri . },julipc-p(huggingface) +Give me all video games published by Mean Hamster Software.,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:VideoGame . ?uri dbo:publisher res:Mean_Hamster_Software . },julipc-p(huggingface) +Who produced films starring Natalie Portman?,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?film rdf:type dbo:Film . ?film dbo:starring res:Natalie_Portman . ?film dbo:producer ?uri . },julipc-p(huggingface) +In which films did Julia Roberts as well as Richard Gere play?,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Film . ?uri dbo:starring res:Julia_Roberts . ?uri dbo:starring res:Richard_Gere. },julipc-p(huggingface) +How many films did Leonardo DiCaprio star in?,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT COUNT(DISTINCT ?uri) WHERE { ?uri rdf:type dbo:Film . ?uri dbo:starring res:Leonardo_DiCaprio . },julipc-p(huggingface) +Give me all Danish films.,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Film . ?uri dbo:country res:Denmark . },julipc-p(huggingface) +Who painted The Storm on the Sea of Galilee?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { res:The_Storm_on_the_Sea_of_Galilee dbo:author ?uri . },julipc-p(huggingface) +In which city did John F. Kennedy die?,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { res:John_F._Kennedy dbo:deathPlace ?uri . ?uri rdf:type dbo:City . },julipc-p(huggingface) +Who produced the most films?,PREFIX dbo: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?film rdf:type dbo:Film . ?film dbo:producer ?uri . } ORDER BY DESC(COUNT(?film)) OFFSET 0 LIMIT 1,julipc-p(huggingface) +Which movies did Kurosawa direct after Rashomon?,PREFIX dbo: PREFIX dbp: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Film . ?uri dbo:director res:Akira_Kurosawa . { ?uri dbo:releaseDate ?x . } UNION { ?uri dbp:released ?x . } res:Rashomon dbo:releaseDate ?y . FILTER (?y > ?x) },julipc-p(huggingface) +Which mountains are higher than the Nanga Parbat?,PREFIX dbo: PREFIX dbp: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { res:Nanga_Parbat dbo:elevation ?elevation . ?uri rdf:type dbo:Mountain . { ?uri dbo:elevation ?otherelevation . } UNION { ?uri dbp:elevationM ?otherelevation . } FILTER (?otherelevation > ?elevation) . },julipc-p(huggingface) +List all episodes of the first season of the HBO television series The Sopranos.,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { ?uri dbo:series res:The_Sopranos . ?uri dbo:seasonNumber 1 . },julipc-p(huggingface) +Which telecommunications organizations are located in Belgium?,"PREFIX dbo: PREFIX dbp: PREFIX res: PREFIX rdf: SELECT COUNT(DISTINCT ?uri) WHERE { ?uri rdf:type dbo:Organisation . { ?uri dbo:industry res:Telecommunication . } UNION { ?uri dbp:industry ?industry . FILTER (regex(?industry,'Telecommunications')) . } { ?uri dbo:location res:Belgium. } UNION { ?uri dbp:locationCountry 'Belgium'@en . } }",julipc-p(huggingface) +What is the highest mountain?,PREFIX dbo: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Mountain . ?uri dbo:elevation ?elevation . } ORDER BY DESC(?elevation) OFFSET 0 LIMIT 1,julipc-p(huggingface) +Give me all Canadian Grunge record labels.,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:RecordLabel . ?uri dbo:genre res:Grunge . ?uri dbo:country res:Canada . },julipc-p(huggingface) +In which UK city are the headquarters of the MI6?,PREFIX res: PREFIX dbo: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:City . res:Secret_Intelligence_Service dbo:headquarter ?uri . },julipc-p(huggingface) +What is the longest river?,PREFIX dbo: PREFIX dbp: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:River . { ?uri dbo:length ?l . } UNION { ?uri dbp:length ?l . } } ORDER BY DESC(?l) OFFSET 0 LIMIT 1,julipc-p(huggingface) +In which films directed by Garry Marshall was Julia Roberts starring?,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Film . ?uri dbo:starring res:Julia_Roberts . ?uri dbo:director res:Garry_Marshall . },julipc-p(huggingface) +Is Christian Bale starring in Velvet Goldmine?,PREFIX dbo: PREFIX res: ASK WHERE { res:Velvet_Goldmine dbo:starring res:Christian_Bale . },julipc-p(huggingface) +Who developed the video game World of Warcraft?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { res:World_of_Warcraft dbo:developer ?uri . },julipc-p(huggingface) +Through which countries does the Yenisei river flow?,PREFIX res: PREFIX dbo: SELECT DISTINCT ?uri WHERE { res:Yenisei_River dbo:country ?uri . },julipc-p(huggingface) +Which organizations were founded in 1930?,"PREFIX dbo: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Organisation . { ?uri dbo:formationYear ?date . } UNION { ?uri dbo:foundingYear ?date. } FILTER regex(?date,'^1930') . }",julipc-p(huggingface) +How many employees does IBM have?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?number WHERE { res:IBM dbo:numberOfEmployees ?number . },julipc-p(huggingface) +Which countries are connected by the Rhine?,PREFIX dbo: PREFIX dbp: PREFIX res: PREFIX rdf: PREFIX rdfs: SELECT DISTINCT ?uri WHERE { res:Rhine dbp:country ?string . ?uri rdf:type dbo:Country . ?uri rdfs:label ?string . },julipc-p(huggingface) +Give me all cosmonauts.,PREFIX rdf: PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Astronaut . { ?uri dbo:nationality res:Russia . } UNION { ?uri dbo:nationality res:Soviet_Union . } },julipc-p(huggingface) +Who is the mayor of Tel Aviv?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Tel_Aviv dbo:leaderName ?uri . },julipc-p(huggingface) +Which mountain is the highest after the Annapurna?,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { res:Annapurna dbo:elevation ?elevation . ?uri rdf:type dbo:Mountain . ?uri dbo:elevation ?otherelevation . FILTER (?otherelevation < ?elevation) . } ORDER BY DESC(?otherelevation) OFFSET 0 LIMIT 1,julipc-p(huggingface) +Does Breaking Bad have more episodes than Game of Thrones?,PREFIX dbo: PREFIX res: ASK WHERE { res:Breaking_Bad dbo:numberOfEpisodes ?x . res:Game_of_Thrones dbo:numberOfEpisodes ?y . FILTER (?y > ?x) },julipc-p(huggingface) +Give me a list of all bandleaders that play trumpet.,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { ?uri dbo:occupation res:Bandleader . ?uri dbo:instrument res:Trumpet . },julipc-p(huggingface) +How many languages are spoken in Turkmenistan?,PREFIX dbo: PREFIX res: SELECT COUNT(DISTINCT ?x) WHERE { res:Turkmenistan dbo:language ?x . },julipc-p(huggingface) +Is Frank Herbert still alive?,PREFIX dbo: PREFIX res: ASK WHERE { OPTIONAL { res:Frank_Herbert dbo:deathDate ?date . } FILTER (!BOUND(?date)) },julipc-p(huggingface) +Which awards did WikiLeaks win?,PREFIX res: PREFIX dbp: SELECT DISTINCT ?uri WHERE { res:WikiLeaks dbp:awards ?uri . },julipc-p(huggingface) +Which country has the most official languages?,PREFIX dbo: PREFIX dbp: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Country . ?uri dbp:officialLanguages ?language . } ORDER BY DESC(COUNT(?language)) OFFSET 0 LIMIT 1,julipc-p(huggingface) +Give me all communist countries.,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Country . { ?uri dbo:governmentType res:Communism . } UNION { ?uri dbo:governmentType res:Communist_state . } },julipc-p(huggingface) +Which instruments does Cat Stevens play?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Cat_Stevens dbo:instrument ?uri . },julipc-p(huggingface) +Give me all books written by Danielle Steel.,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Book . ?uri dbo:author res:Danielle_Steel . },julipc-p(huggingface) +Who is the owner of Universal Studios?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Universal_Studios dbo:owner ?uri . },julipc-p(huggingface) +Who is the daughter of Ingrid Bergman married to?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Ingrid_Bergman dbo:child ?child . ?child dbo:spouse ?uri . },julipc-p(huggingface) +Give me all libraries established earlier than 1400.,PREFIX dbo: PREFIX dbp: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Library . ?uri dbp:established ?year . FILTER (?year < 1400) },julipc-p(huggingface) +How many countries are there in Europe?,PREFIX yago: PREFIX rdf: SELECT COUNT(DISTINCT ?uri) WHERE { ?uri rdf:type yago:EuropeanCountries . },julipc-p(huggingface) +Who is the mayor of Berlin?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Berlin dbo:leader ?uri . },julipc-p(huggingface) +Who founded Intel?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Intel dbo:foundedBy ?uri . },julipc-p(huggingface) +Give me all B-sides of the Ramones.,PREFIX dbo: PREFIX res: SELECT DISTINCT ?string WHERE { ?x dbo:musicalArtist res:Ramones . ?x dbo:bSide ?string . },julipc-p(huggingface) +Give me all films produced by Hal Roach.,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Film . ?uri dbo:producer res:Hal_Roach . },julipc-p(huggingface) +Which bridges are of the same type as the Manhattan Bridge?,PREFIX dbo: PREFIX dbp: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Bridge . ?uri dbp:design ?design . res:Manhattan_Bridge dbp:design ?mdesign . FILTER (?design = ?mdesign && ?uri != res:Manhattan_Bridge) . },julipc-p(huggingface) +Give me all Apollo 14 astronauts.,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { ?uri dbo:mission res:Apollo_14 . },julipc-p(huggingface) +What is the area code of Berlin?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?string WHERE { res:Berlin dbo:areaCode ?string . },julipc-p(huggingface) +Which software has been developed by organizations founded in California?,PREFIX rdf: PREFIX dbo: PREFIX dbp: PREFIX res: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Software . ?company rdf:type dbo:Company . ?uri dbo:developer ?company . { ?company dbo:foundationPlace res:California . } UNION { ?company dbp:foundation res:California . } },julipc-p(huggingface) +What is the currency of the Czech Republic?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Czech_Republic dbo:currency ?uri . },julipc-p(huggingface) +Which music albums contain the song Last Christmas?,PREFIX dbo: PREFIX rdfs: SELECT DISTINCT ?uri WHERE { ?single dbo:album ?uri . ?single rdfs:label 'Last Christmas'@en . },julipc-p(huggingface) +Give me all world heritage sites designated within the past two years.,PREFIX dbo: PREFIX dbp: PREFIX rdf: PREFIX xsd: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:WorldHeritageSite . ?uri dbp:year ?x . FILTER ( ?x >= '2012'^^xsd:integer) },julipc-p(huggingface) +Give me all companies in the advertising industry.,"PREFIX dbp: PREFIX dbo: PREFIX res: PREFIX rdf: SELECT COUNT(DISTINCT ?uri) WHERE { ?uri rdf:type dbo:Company . ?uri dbp:industry ?industry . FILTER regex(?industry,'advertising','i') . }",julipc-p(huggingface) +Was the Cuban Missile Crisis earlier than the Bay of Pigs Invasion?,PREFIX dbo: PREFIX res: ASK WHERE { res:Cuban_missile_crisis dbo:date ?x . res:Bay_of_Pigs_Invasion dbo:date ?y . FILTER (?x < ?y) },julipc-p(huggingface) +Who was John F. Kennedy's vice president?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { res:John_F._Kennedy dbo:vicePresident ?uri . },julipc-p(huggingface) +When was Capcom founded?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?date WHERE { res:Capcom dbo:foundingDate ?date . },julipc-p(huggingface) +Give me all Methodist politicians.,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Politician . ?uri dbo:religion res:Methodism . },julipc-p(huggingface) +What is the highest place of the Urals?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Ural_Mountains dbo:highestPlace ?uri . },julipc-p(huggingface) +Give me all soccer clubs in the Premier League.,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:SoccerClub . ?uri dbo:league res:Premier_League . },julipc-p(huggingface) +Which monarchs were married to a German?,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Monarch . ?uri dbo:spouse ?spouse . { ?spouse dbo:birthPlace res:Germany. } UNION { ?spouse dbo:birthPlace ?p . ?p dbo:country res:Germany. } },julipc-p(huggingface) +Show me all songs from Bruce Springsteen released between 1980 and 1990.,PREFIX dbo: PREFIX res: PREFIX yago: PREFIX rdf: PREFIX xsd: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Song . ?uri dbo:artist res:Bruce_Springsteen . ?uri dbo:releaseDate ?date . FILTER (?date >= '1980-01-01'^^xsd:date && ?date <= '1990-12-31'^^xsd:date) },julipc-p(huggingface) +Give me all professional skateboarders from Sweden.,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { ?uri dbo:occupation res:Skateboarding . { ?uri dbo:birthPlace res:Sweden . } UNION { ?uri dbo:birthPlace ?place . ?place dbo:country res:Sweden . } },julipc-p(huggingface) +What did Bruce Carver die from?,PREFIX res: PREFIX dbo: SELECT DISTINCT ?uri WHERE { res:Bruce_Carver dbo:deathCause ?uri . },julipc-p(huggingface) +Give me all world heritage sites designated within the past five years.,"PREFIX dbo: PREFIX dbp: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:WorldHeritageSite . ?uri dbp:year ?x . FILTER ( ?x >= ""2008""^^xsd:integer) }",julipc-p(huggingface) +In which country does the Ganges start?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Ganges dbo:sourceCountry ?uri . },julipc-p(huggingface) +How many students does the Free University in Amsterdam have?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?num WHERE { res:VU_University_Amsterdam dbo:numberOfStudents ?num . },julipc-p(huggingface) +What is the total amount of men and women serving in the FDNY?,PREFIX dbp: PREFIX res: SELECT DISTINCT ?num WHERE { res:New_York_City_Fire_Department dbp:employees ?num . },julipc-p(huggingface) +Give me all world heritage sites designated within the past two years.,PREFIX dbo: PREFIX dbp: PREFIX rdf: PREFIX xsd: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:WorldHeritageSite . { ?uri dbp:year '2013'^^xsd:integer . } UNION { ?uri dbp:year '2014'^^xsd:integer . } },julipc-p(huggingface) +Does Breaking Bad have more episodes than Game of Thrones?,PREFIX dbo: PREFIX res: ASK WHERE { res:Breaking_Bad dbo:numberOfEpisodes ?x . res:Game_of_Thrones dbo:numberOfEpisodes ?y . FILTER (?x > ?y) },julipc-p(huggingface) +Do Prince Harry and Prince William have the same parents?,"PREFIX dbo: ASK WHERE { dbo:parent ?x . dbo:parent ?x . }",julipc-p(huggingface) +Which professional surfers were born in Australia?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { ?uri dbo:occupation res:Surfing . { ?uri dbo:birthPlace res:Australia . } UNION { ?uri dbo:birthPlace ?x . ?x dbo:country res:Australia . } },julipc-p(huggingface) +In which UK city are the headquarters of the MI6?,PREFIX res: PREFIX dbo: PREFIX rdf: SELECT DISTINCT ?uri WHERE { res:Secret_Intelligence_Service dbo:headquarter ?uri . ?uri dbo:country res:United_Kingdom . },julipc-p(huggingface) +How many missions does the Soyuz programme have?,PREFIX dbp: PREFIX res: SELECT COUNT(DISTINCT ?uri) WHERE { ?uri dbp:programme res:Soyuz_programme . },julipc-p(huggingface) +Did Socrates influence Aristotle?,PREFIX dbo: PREFIX res: ASK WHERE { res:Socrates dbo:influenced res:Aristotle . },julipc-p(huggingface) +Give me all Danish movies.,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Film . ?uri dbo:country res:Denmark . },julipc-p(huggingface) +Is Rita Wilson the wife of Tom Hanks?,PREFIX dbo: PREFIX res: ASK WHERE { res:Tom_Hanks dbo:spouse res:Rita_Wilson . },julipc-p(huggingface) +Who was called Frank The Tank?,PREFIX dbp: SELECT DISTINCT ?uri WHERE { ?uri dbp:nickname 'Frank The Tank'@en . },julipc-p(huggingface) +Show me all songs from Bruce Springsteen released between 1980 and 1990.,PREFIX dbo: PREFIX res: PREFIX rdf: PREFIX xsd: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Song . ?uri dbo:artist res:Bruce_Springsteen . ?uri dbo:releaseDate ?date . FILTER (?date >= '1980-01-01'^^xsd:date && ?date <= '1990-12-31'^^xsd:date) },julipc-p(huggingface) +Which movies did Kurosawa direct?,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Film . ?uri dbo:director res:Akira_Kurosawa . },julipc-p(huggingface) +آی.بی.آم. چند کارمند دارد؟,PREFIX dbo: PREFIX res: SELECT DISTINCT ?number WHERE { res:IBM dbo:numberOfEmployees ?number . },julipc-p(huggingface) +Which television shows were created by John Cleese?,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:TelevisionShow . ?uri dbo:creator res:John_Cleese . },julipc-p(huggingface) +Which bridges are of the same type as the Manhattan Bridge?,PREFIX dbo: PREFIX dbp: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Bridge . ?uri dbp:design ?design . res:Manhattan_Bridge dbp:design ?mdesign . FILTER (?design = ?mdesign && ?uri != res:Manhattan_Bridge) .},julipc-p(huggingface) +Which awards did Douglas Hofstadter win?,PREFIX res: PREFIX dbo: SELECT DISTINCT ?uri WHERE { res:Douglas_Hofstadter dbo:award ?uri . },julipc-p(huggingface) +Who is the daughter of Robert Kennedy married to?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Robert_F._Kennedy dbo:child ?child . ?child dbo:spouse ?uri . },julipc-p(huggingface) +Who is the owner of Rolls-Royce?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Rolls-Royce_Motors dbo:owner ?uri . },julipc-p(huggingface) +Through which countries does the Yenisei river flow?,PREFIX res: PREFIX dbo: SELECT DISTINCT ?uri WHERE { res:Yenisei dbo:country ?uri . },julipc-p(huggingface) +Who designed the Brooklyn Bridge?,PREFIX res: PREFIX dbo: SELECT DISTINCT ?uri WHERE { res:Brooklyn_Bridge dbo:architect ?uri . },julipc-p(huggingface) +What is the highest place of the Urals?,PREFIX dbp: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Ural_Mountains dbp:highest ?uri . },julipc-p(huggingface) +Give me all companies in the advertising industry.,"PREFIX dbp: PREFIX dbo: PREFIX res: PREFIX rdf: SELECT COUNT(DISTINCT ?uri) WHERE { ?uri rdf:type dbo:Company . { ?uri dbo:industry res:Advertising } UNION { ?uri dbo:industry ?industry . FILTER regex(?industry,'advertising','i') . } }",julipc-p(huggingface) +Give me all federal chancellors of Germany.,PREFIX dbp: PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Person . { ?uri dbo:office 'Chancellor of Germany' . } UNION { ?uri dbp:office res:Chancellor_of_Germany . } },julipc-p(huggingface) +Which software has been developed by organizations founded in California?,PREFIX rdf: PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Software . ?company rdf:type dbo:Company . ?uri dbo:developer ?company . ?company dbo:foundationPlace res:California . },julipc-p(huggingface) +Was the wife of president Lincoln called Mary?,"PREFIX dbo: PREFIX res: PREFIX rdfs: ASK WHERE { res:Abraham_Lincoln dbo:spouse ?spouse . ?spouse rdfs:label ?name . FILTER(regex(?name,'Mary')) }",julipc-p(huggingface) +Who was the 16th president of the United States?,PREFIX dbo: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri dbo:office 'President of the United States' . ?uri dbo:orderInOffice '16th' . },julipc-p(huggingface) +Was Natalie Portman born in the United States?,PREFIX dbo: PREFIX res: ASK WHERE { { res:Natalie_Portman dbo:birthPlace res:United_States . } UNION { res:Natalie_Portman dbo:birthPlace ?city . ?city dbo:country res:United_States . } },julipc-p(huggingface) +How many inhabitants does the largest city in Canada have?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?num WHERE { res:Canada dbo:largestCity ?city . ?city dbo:populationTotal ?num . },julipc-p(huggingface) +Who was the first to climb Mount Everest?,PREFIX res: PREFIX dbo: SELECT DISTINCT ?uri WHERE { res:Mount_Everest dbo:firstAscentPerson ?uri . },julipc-p(huggingface) +How many programming languages are there?,PREFIX dbo: PREFIX rdf: SELECT COUNT(DISTINCT ?uri) WHERE { ?uri rdf:type dbo:ProgrammingLanguage . },julipc-p(huggingface) +What is the official color of the University of Oxford?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?string WHERE { res:University_of_Oxford dbo:officialSchoolColour ?string . },julipc-p(huggingface) +To which artistic movement did the painter of The Three Dancers belong?,PREFIX res: PREFIX dbo: SELECT DISTINCT ?uri WHERE { res:The_Three_Dancers dbo:author ?person . ?person dbo:movement ?uri . },julipc-p(huggingface) +Give me all animals that are extinct.,PREFIX dbo: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Animal . ?uri dbo:conservationStatus 'EX' . },julipc-p(huggingface) +Does Abraham Lincoln's death place have a website?,PREFIX dbo: PREFIX dbp: PREFIX res: ASK WHERE { res:Abraham_Lincoln dbo:deathPlace ?p . ?p dbp:website ?w . },julipc-p(huggingface) +How deep is Lake Placid?,PREFIX dbo: SELECT DISTINCT ?n WHERE { dbo:depth ?n . },julipc-p(huggingface) +Give me the grandchildren of Bruce Lee.,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Bruce_Lee dbo:child ?child . ?child dbo:child ?uri . },julipc-p(huggingface) +Who is the youngest Darts player?,PREFIX dbo: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:DartsPlayer . ?uri dbo:birthDate ?date . } ORDER BY DESC(?date) OFFSET 0 LIMIT 1,julipc-p(huggingface) +Where was Bach born?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Johann_Sebastian_Bach dbo:birthPlace ?uri . },julipc-p(huggingface) +In which countries can you pay using the West African CFA franc?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { ?uri dbo:currency res:West_African_CFA_franc . },julipc-p(huggingface) +What are the top-10 action role-playing video games according to IGN?,PREFIX dbo: PREFIX dbp: PREFIX res: SELECT DISTINCT ?uri WHERE { ?uri . ?uri dbp:ign ?score . } ORDER BY DESC(?score) LIMIT 10,julipc-p(huggingface) +What is the most frequent cause of death?,PREFIX dbo: SELECT DISTINCT ?x WHERE { ?uri dbo:deathCause ?x . } ORDER BY DESC(COUNT(DISTINCT ?uri)) OFFSET 0 LIMIT 1,julipc-p(huggingface) +Does the Isar flow into a lake?,PREFIX dbo: PREFIX res: PREFIX rdf: ASK WHERE { ?x dbo:inflow res:Isar . ?x rdf:type dbo:Lake . },julipc-p(huggingface) +Give me all films produced by Steven Spielberg with a budget of at least $80 million.,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Film . ?uri dbo:director res:Steven_Spielberg . ?uri dbo:budget ?b . FILTER( xsd:double(?b) >= 8.0E7 ) },julipc-p(huggingface) +Give me all writers that won the Nobel Prize in literature.,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Writer . ?uri dbo:award res:Nobel_Prize_in_Literature . },julipc-p(huggingface) +Give me all taikonauts.,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Astronaut . ?uri dbo:nationality res:China . },julipc-p(huggingface) +How many pages does War and Peace have?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?n WHERE { res:War_and_Peace dbo:numberOfPages ?n . },julipc-p(huggingface) +What is the bridge with the longest span?,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Bridge . ?uri dbo:mainspan ?s . } ORDER BY DESC(?s) OFFSET 0 LIMIT 1,julipc-p(huggingface) +Give me all actors called Baldwin.,PREFIX dbo: PREFIX res: PREFIX foaf: SELECT DISTINCT ?uri WHERE { ?uri foaf:surname 'Baldwin'@en . { ?uri dbo:occupation res:Actor . } UNION { ?uri rdf:type dbo:Actor . } },julipc-p(huggingface) +Who is the tallest player of the Atlanta Falcons?,PREFIX dbo: PREFIX dbp: PREFIX res: SELECT DISTINCT ?uri WHERE { ?uri dbo:team res:Atlanta_Falcons . ?uri dbo:height ?h . } ORDER BY DESC(?h) OFFSET 0 LIMIT 1,julipc-p(huggingface) +Which rivers flow into a German lake?,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:River . ?x dbo:inflow ?uri . ?x rdf:type dbo:Lake . ?x dbo:country res:Germany . },julipc-p(huggingface) +How many James Bond movies are there?,PREFIX rdf: PREFIX yago: SELECT COUNT(DISTINCT ?uri) WHERE { ?uri rdf:type yago:JamesBondFilms . },julipc-p(huggingface) +Which rockets were launched from Baikonur?,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Rocket . ?uri dbo:launchSite res:Baikonur_Cosmodrome . },julipc-p(huggingface) +Which pope succeeded John Paul II?,PREFIX res: PREFIX dbp: SELECT DISTINCT ?uri WHERE { res:Pope_John_Paul_II dbp:successor ?uri . },julipc-p(huggingface) +Give me all Dutch parties.,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:PoliticalParty . ?uri dbo:country res:Netherlands . },julipc-p(huggingface) +When is Halloween?,PREFIX dbp: PREFIX res: SELECT DISTINCT ?date WHERE { res:Halloween dbp:date ?date . },julipc-p(huggingface) +Give me all Swedish oceanographers.,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { ?uri dbo:field res:Oceanography . ?uri dbo:birthPlace res:Sweden . },julipc-p(huggingface) +Give me all actors who were born in Berlin.,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Actor . ?uri dbo:birthPlace res:Berlin . },julipc-p(huggingface) +What was the last movie with Alec Guinness?,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Film . ?uri dbo:starring res:Alec_Guinness . ?uri dbo:releaseDate ?date . } ORDER BY DESC(?date) LIMIT 1,julipc-p(huggingface) +Which poet wrote the most books?,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri dbo:occupation res:Poet . ?x dbo:author ?uri . ?x rdf:type dbo:Book . } ORDER BY DESC(COUNT(?x)) OFFSET 0 LIMIT 1,julipc-p(huggingface) +How many languages are spoken in Colombia?,PREFIX dbo: PREFIX res: SELECT COUNT(DISTINCT ?uri) WHERE { ?uri rdf:type dbo:Language . res:Colombia dbo:language ?uri . },julipc-p(huggingface) +What does IYCM stand for?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { ?uri dbo:abbreviation 'IYCM' . },julipc-p(huggingface) +What was Brazil's lowest rank in the FIFA World Ranking?,PREFIX dbp: PREFIX res: SELECT DISTINCT ?n WHERE { res:Brazil_national_football_team dbp:fifaMin ?n . },julipc-p(huggingface) +Give me the capitals of all countries that the Himalayas run through.,PREFIX dbp: PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Himalayas dbp:country ?country . ?country dbo:capital ?uri . },julipc-p(huggingface) +Which actor played Chewbacca?,PREFIX dbp: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Chewbacca dbp:portrayer ?uri . },julipc-p(huggingface) +Which ingredients do I need for carrot cake?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Carrot_cake dbo:ingredient ?uri . },julipc-p(huggingface) +Is Cola a beverage?,PREFIX dbo: PREFIX res: PREFIX rdf: ASK WHERE { res:Cola rdf:type dbo:Beverage . },julipc-p(huggingface) +Who has Tom Cruise been married to?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { ?uri dbo:spouse res:Tom_Cruise. },julipc-p(huggingface) +Which of Tim Burton's films had the highest budget?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { ?uri dbo:director res:Tim_Burton . ?uri dbo:budget ?b . } ORDER BY ?b OFFSET 0 LIMIT 1,julipc-p(huggingface) +How heavy is Jupiter's lightest moon?,PREFIX dbo: PREFIX dbp: PREFIX res: SELECT DISTINCT ?n WHERE { ?uri dbp:satelliteOf res:Jupiter . ?uri dbo:mass ?n . } ORDER BY ASC(?n) OFFSET 0 LIMIT 1,julipc-p(huggingface) +Which actor was casted in the most movies?,PREFIX dbo: PREFIX dbp: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Actor . ?f rdf:type dbo:Film . ?f dbo:starring ?uri . } ORDER BY DESC(COUNT(DISTINCT(?f))) OFFSET 0 LIMIT 1,julipc-p(huggingface) +Is James Bond married?,PREFIX dbo: PREFIX res: ASK WHERE { res:James_Bond dbo:spouse ?uri . },julipc-p(huggingface) +Give me all Australian metalcore bands.,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Band . ?uri dbo:genre res:Metalcore . { ?uri dbo:hometown res:Australia . } UNION { ?uri dbo:hometown ?h . ?h dbo:country res:Australia . } },julipc-p(huggingface) +Give me all actors who were born in Paris after 1950.,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Actor . ?uri dbo:birthPlace res:Paris . ?uri dbo:birthDate ?date . FILTER ( ?date >= xsd:dateTime('1950-12-31T00:00:00Z')) },julipc-p(huggingface) +When was Carlo Giuliani shot?,PREFIX dbp: PREFIX res: SELECT DISTINCT ?date WHERE { res:Death_of_Carlo_Giuliani dbp:dateOfDeath ?date . },julipc-p(huggingface) +Who are the four youngest MVP basketball players?,"PREFIX dbo: PREFIX dbp: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:BasketballPlayer . ?uri dbo:birthDate ?date. ?uri dbp:highlights ?h . FILTER regex(?h,'MVP') } ORDER BY DESC(?date) OFFSET 0 LIMIT 4",julipc-p(huggingface) +Which companies have more than 1 million employees?,PREFIX dbo: PREFIX dbp: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Company . { ?uri dbo:numberOfEmployees ?n . } UNION { ?uri dbp:numEmployees ?n . } FILTER ( ?n > 1000000 ) },julipc-p(huggingface) +Give all swimmers that were born in Moscow.,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Swimmer . ?uri dbo:birthPlace res:Moscow . },julipc-p(huggingface) +Who was called Rodzilla?,"PREFIX dbp: SELECT DISTINCT ?uri WHERE { ?uri dbp:nickname ""Rodzilla""@en . }",julipc-p(huggingface) +Show me the book that Muhammad Ali wrote.,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Book . ?uri dbo:author res:Muhammad_Ali . },julipc-p(huggingface) +How many museums does Paris have?,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Museum . ?uri dbo:location res:Paris . },julipc-p(huggingface) +Which city has the most inhabitants?,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:City . ?uri dbo:populationTotal ?pop . } ORDER BY DESC(?pop) OFFSET 0 LIMIT 1,julipc-p(huggingface) +Which city has the least inhabitants?,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:City . ?uri dbo:populationTotal ?pop . } ORDER BY ASC(?pop) OFFSET 0 LIMIT 1,julipc-p(huggingface) +Give me all the TV shows with Neil Patrick Harris.,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:TelevisionShow . ?uri dbo:starring res:Neil_Patrick_Harris . },julipc-p(huggingface) +Who wrote The Hunger Games?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { res:The_Hunger_Games dbo:author ?uri . },julipc-p(huggingface) +Show a list of soccer clubs that play in the Bundesliga.,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:SoccerClub . ?uri dbo:league res:Bundesliga . },julipc-p(huggingface) +What country is Mount Everest in?,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { res:Mount_Everest dbo:locatedInArea ?uri . ?uri rdf:type dbo:Country . },julipc-p(huggingface) +Who is the founder of Penguin Books?,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { res:Penguin_Books dbo:founder ?uri . },julipc-p(huggingface) +Which programming languages influenced Javascript?,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:ProgrammingLanguage . ?uri dbo:influenced res:JavaScript . },julipc-p(huggingface) +Did Che Guevara have children?,PREFIX dbo: PREFIX res: ASK WHERE { res:Che_Guevara dbo:child ?uri . },julipc-p(huggingface) +List all the musicals with music by Elton John.,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Musical . ?uri dbo:musicBy res:Elton_John . },julipc-p(huggingface) +Show me all the breweries in Australia.,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri ?x WHERE { ?uri rdf:type dbo:Brewery . { ?uri dbo:location res:Australia . } UNION { ?uri dbo:location ?x . ?x dbo:country res:Australia . } },julipc-p(huggingface) +When was the Titanic completed?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?date WHERE { res:RMS_Titanic dbo:completionDate ?date . },julipc-p(huggingface) +How much did Pulp Fiction cost?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?n WHERE { res:Pulp_Fiction dbo:budget ?n . },julipc-p(huggingface) +How many airlines are there?,PREFIX dbo: PREFIX rdf: SELECT COUNT(DISTINCT ?uri) WHERE { ?uri rdf:type dbo:Airline . },julipc-p(huggingface) +Who played Agent Smith in Matrix?,PREFIX dbp: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Agent_Smith dbp:portrayer ?uri . },julipc-p(huggingface) +How much carbs does peanut butter have?,PREFIX dbp: PREFIX res: SELECT DISTINCT ?carbs WHERE { res:Peanut_butter dbp:carbs ?carbs . },julipc-p(huggingface) +Which book has the most pages?,PREFIX dbo: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Book . ?uri dbo:numberOfPages ?n . } ORDER BY DESC(?n) OFFSET 0 LIMIT 1,julipc-p(huggingface) +Which bridges cross the Seine?,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Bridge . ?uri dbo:crosses res:Seine . },julipc-p(huggingface) +Who is the mayor of the capital of French Polynesia?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { res:French_Polynesia dbo:capital ?x . ?x dbo:mayor ?uri . },julipc-p(huggingface) +When did Dracula's creator die?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?date WHERE { res:Count_Dracula dbo:creator ?x . ?x dbo:deathDate ?date . },julipc-p(huggingface) +What is the location of the Houses of Parliament?,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT ?uri WHERE { res:Palace_of_Westminster dbo:location ?uri . },julipc-p(huggingface) +Show me all English Gothic buildings in Kent.,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT ?uri WHERE { ?uri rdf:type dbo:Building . ?uri dbo:architecturalStyle res:English_Gothic_architecture . ?uri dbo:location res:Kent . },julipc-p(huggingface) +Who was the pope that founded the Vatican Television?,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT ?uri WHERE { ?uri rdf:type dbo:Pope . res:Vatican_Television_Center dbo:foundedBy ?uri . },julipc-p(huggingface) +What airlines are part of the SkyTeam alliance?,PREFIX res: PREFIX dbp: PREFIX dbo: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Airline . { ?uri dbp:alliance res:SkyTeam . } UNION { ?uri dbo:Alliance res:SkyTeam . } },julipc-p(huggingface) +"What is the total population of Melbourne, Florida?","PREFIX dbo: SELECT ?uri WHERE { dbo:populationTotal ?uri . }",julipc-p(huggingface) +Which airports does Air China serve?,PREFIX res: PREFIX dbo: SELECT DISTINCT ?uri WHERE { res:Air_China dbo:targetAirport ?uri . },julipc-p(huggingface) +In which year was Rachel Stevens born?,PREFIX res: PREFIX dbo: SELECT DISTINCT ?uri WHERE { res:Rachel_Stevens dbo:birthYear ?uri . },julipc-p(huggingface) +Where was JFK assassinated?,PREFIX res: PREFIX dbo: SELECT DISTINCT ?uri WHERE { res:John_F._Kennedy dbo:deathPlace ?uri . },julipc-p(huggingface) +How many politicians graduated from Columbia University?,PREFIX res: PREFIX dbo: SELECT DISTINCT COUNT(?uri) WHERE { ?uri dbo:profession res:Politician . ?uri dbo:almaMater res:Columbia_University . },julipc-p(huggingface) +Which scientist is known for the Manhattan Project and the Nobel Peace Prize?,PREFIX res: PREFIX dbo: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri dbo:knownFor res:Manhattan_Project . ?uri rdf:type dbo:Scientist . ?uri dbo:knownFor res:Nobel_Peace_Prize . },julipc-p(huggingface) +What is the highest volcano in Africa?,PREFIX dbo: PREFIX res: PREFIX rdf: PREFIX yago: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Volcano . ?uri dbo:locatedInArea ?area . ?area rdf:type yago:AfricanCountries . ?uri dbo:elevation ?elevation . } ORDER BY DESC(?elevation) OFFSET 0 LIMIT 1,julipc-p(huggingface) +Which beer originated in Ireland?,"PREFIX res: PREFIX dbp: SELECT DISTINCT ?uri WHERE { ?uri dbp:type res:Beer . ?uri dbp:origin ""Ireland""@en . }",julipc-p(huggingface) +What are the specialities of the UNC Health Care?,PREFIX dbo: PREFIX res: PREFIX dbp: PREFIX rdf: SELECT DISTINCT ?uri WHERE { res:UNC_Health_Care dbp:speciality ?uri . },julipc-p(huggingface) +Who is the owner of Facebook?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Facebook dbo:foundedBy ?uri . },julipc-p(huggingface) +From which region is the Melon de Bourgogne?,PREFIX res: PREFIX dbo: SELECT DISTINCT ?uri WHERE { res:Melon_de_Bourgogne dbo:wineRegion ?uri . },julipc-p(huggingface) +Who was influenced by Socrates?,PREFIX res: PREFIX dbo: SELECT DISTINCT ?uri WHERE { ?uri dbo:influencedBy res:Socrates . },julipc-p(huggingface) +Who was president of Pakistan in 1978?,PREFIX res: PREFIX dbp: SELECT DISTINCT ?uri WHERE { ?uri dbp:title res:President_of_Pakistan . ?uri dbp:years 1978 . },julipc-p(huggingface) +Give me English actors starring in Lovesick.,PREFIX res: PREFIX dbo: PREFIX yago: SELECT DISTINCT ?uri WHERE { res:Lovesick dbo:starring ?uri . { ?uri dbo:birthPlace res:England . } UNION { ?uri rdf:type yago:EnglishFilmActors . } },julipc-p(huggingface) +Give me all types of eating disorders.,PREFIX yago: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type yago:EatingDisorders . },julipc-p(huggingface) +Who was married to president Chirac?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Jacques_Chirac dbo:spouse ?uri . },julipc-p(huggingface) +What is the largest metropolitan area in Washington state?,PREFIX res: PREFIX dbp: SELECT DISTINCT ?uri WHERE { dbp:largestmetro ?uri . },julipc-p(huggingface) +Where in France is sparkling wine produced?,PREFIX res: PREFIX dbo: SELECT DISTINCT ?uri WHERE { ?uri dbo:wineProduced res:Sparkling_wine . ?uri dbo:location res:France . },julipc-p(huggingface) +Where did Hillel Slovak die?,PREFIX res: PREFIX dbo: SELECT DISTINCT ?uri WHERE { res:Hillel_Slovak dbo:deathPlace ?uri . },julipc-p(huggingface) +What is the timezone in San Pedro de Atacama?,PREFIX res: PREFIX dbo: SELECT DISTINCT ?uri WHERE { res:San_Pedro_de_Atacama dbo:timezone ?uri . },julipc-p(huggingface) +In which city does the Chile Route 68 end?,PREFIX res: PREFIX dbo: SELECT DISTINCT ?uri WHERE { res:Chile_Route_68 dbo:routeEnd ?uri . },julipc-p(huggingface) +Give me all ESA astronauts.,PREFIX rdf: PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Astronaut . ?uri dbo:type res:European_Space_Agency . },julipc-p(huggingface) +Give me all Swedish holidays.,PREFIX rdf: PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Holiday . ?uri dbo:country res:Sweden . },julipc-p(huggingface) +Who is the youngest Pulitzer Prize winner?,PREFIX rdf: PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { ?uri dbo:award res:Pulitzer_Prize . ?uri dbo:birthDate ?d . } ORDER BY DESC(?d) OFFSET 0 LIMIT 1,julipc-p(huggingface) +Which animals are critically endangered?,PREFIX dbo: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Animal . ?uri dbo:conservationStatus 'CR' . },julipc-p(huggingface) +Which soccer players were born on Malta?,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:SoccerPlayer . ?uri dbo:birthPlace res:Malta . },julipc-p(huggingface) +Did Arnold Schwarzenegger attend a university?,PREFIX dbo: PREFIX res: PREFIX rdf: ASK WHERE { res:Arnold_Schwarzenegger dbo:almaMater ?x . ?x rdf:type dbo:University . },julipc-p(huggingface) +Which programming languages were influenced by Perl?,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:ProgrammingLanguage . { ?uri dbo:influencedBy res:Perl . } UNION { res:Perl dbo:influenced ?uri . } },julipc-p(huggingface) +Is Barack Obama a democrat?,PREFIX dbo: PREFIX res: ASK WHERE { res:Barack_Obama dbo:party . },julipc-p(huggingface) +How many children does Eddie Murphy have?,PREFIX dbp: PREFIX res: SELECT DISTINCT ?n WHERE { res:Eddie_Murphy dbp:children ?n . },julipc-p(huggingface) +Who is the oldest child of Meryl Streep?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Meryl_Streep dbo:child ?uri . ?uri dbo:birthDate ?d . } ORDER BY ASC(?d) OFFSET 0 LIMIT 1,julipc-p(huggingface) +Who killed John Lennon?,PREFIX rdf: PREFIX dbo: PREFIX res: PREFIX dbp: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Person. ?uri dbp:conviction res:Death_of_John_Lennon. },julipc-p(huggingface) +Which frequent flyer program has the most airlines?,PREFIX dbo: PREFIX dbp: PREFIX rdf: PREFIX yago: SELECT ?uri WHERE { ?airline rdf:type dbo:Airline. ?airline dbp:frequentFlyer ?uri. ?uri rdf:type yago:FrequentFlyerPrograms. } ORDER BY DESC(COUNT(DISTINCT ?airline)) OFFSET 0 LIMIT 1,julipc-p(huggingface) +In which city is Air China headquartered?,PREFIX res: PREFIX yago: PREFIX dbo: SELECT DISTINCT ?uri WHERE { res:Air_China dbo:headquarter ?uri . ?uri rdf:type yago:City108524735 . },julipc-p(huggingface) +Which artists were born on the same date as Rachel Stevens?,PREFIX res: PREFIX dbp: PREFIX dbo: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Artist. res:Rachel_Stevens dbp:dateOfBirth ?date . ?uri dbp:dateOfBirth ?date . },julipc-p(huggingface) +How many scientists graduated from an Ivy League university?,PREFIX res: PREFIX dbo: SELECT DISTINCT count (?uri) WHERE { ?uri rdf:type dbo:Scientist . ?uri dbo:almaMater ?university . ?university dbo:affiliation res:Ivy_League . },julipc-p(huggingface) +Which types of grapes grow in Oregon?,PREFIX res: PREFIX dbo: SELECT DISTINCT ?uri WHERE { res:Oregon_wine dbo:growingGrape ?uri . },julipc-p(huggingface) +Who is starring in Spanish movies produced by Benicio del Toro?,PREFIX res: PREFIX dbo: PREFIX rdf: PREFIX dbp: SELECT DISTINCT ?uri WHERE { ?film rdf:type dbo:Film . ?film dbo:country res:Spain . ?film dbo:producer res:Benicio_del_Toro . ?film dbo:starring ?uri . ?uri rdf:type dbo:Person . },julipc-p(huggingface) +Who is the manager of Real Madrid?,PREFIX dbo: SELECT DISTINCT ?uri WHERE { dbo:manager ?uri . },julipc-p(huggingface) +Give me the currency of China.,PREFIX res: PREFIX dbo: SELECT DISTINCT ?uri WHERE { res:China dbo:currency ?uri . },julipc-p(huggingface) +Which movies starring Brad Pitt were directed by Guy Ritchie?,PREFIX res: PREFIX dbo: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Film . ?uri dbo:starring res:Brad_Pitt . ?uri dbo:director res:Guy_Ritchie . },julipc-p(huggingface) +How many companies were founded by the founder of Facebook?,PREFIX dbo: PREFIX res: SELECT DISTINCT COUNT(?c) WHERE { res:Facebook dbo:foundedBy ?uri . ?c dbo:foundedBy ?uri . },julipc-p(huggingface) +How many companies were founded in the same year as Google?,PREFIX dbo: PREFIX res: SELECT COUNT(DISTINCT ?c) WHERE { ?c rdf:type dbo:Company . ?c dbo:foundingYear ?year . res:Google dbo:foundingYear ?year . },julipc-p(huggingface) +Which subsidiary of Lufthansa serves both Dortmund and Berlin Tegel?,PREFIX res: PREFIX dbo: SELECT DISTINCT ?uri WHERE { res:Lufthansa dbo:subsidiary ?uri . ?uri dbo:targetAirport res:Dortmund_Airport . ?uri dbo:targetAirport res:Berlin_Tegel_Airport . },julipc-p(huggingface) +How many airlines are members of the Star Alliance?,PREFIX dbo: PREFIX dbp: PREFIX res: PREFIX rdf: SELECT COUNT(DISTINCT ?uri) WHERE { ?uri rdf:type dbo:Airline . ?uri dbp:alliance res:Star_Alliance . },julipc-p(huggingface) +Give me all spacecrafts that flew to Mars.,PREFIX dbo: PREFIX dbp: PREFIX res: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Spacecraft . ?uri dbp:planet res:Mars . },julipc-p(huggingface) +Which musician wrote the most books?,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri dbo:occupation res:Musician . ?x dbo:author ?uri . ?x rdf:type dbo:Book . } ORDER BY DESC(COUNT(?x)) OFFSET 0 LIMIT 1,julipc-p(huggingface) +Show me everyone who was born on Halloween.,PREFIX dbp: PREFIX res: PREFIX dbo: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Person . { ?uri dbo:birthDate ?date . } UNION { ?uri dbp:birthDate ?date . } res:Halloween dbp:date ?date . },julipc-p(huggingface) +Give me all Swiss non-profit organizations.,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { ?uri dbo:type res:Nonprofit_organization . { ?uri dbo:locationCountry res:Switzerland . } UNION { ?uri dbo:location ?x . ?x dbo:country res:Switzerland . } },julipc-p(huggingface) +In which country is Mecca located?,PREFIX res: PREFIX dbo: SELECT DISTINCT ?uri WHERE { res:Mecca dbo:country ?uri . },julipc-p(huggingface) +What is the net income of Apple?,PREFIX dbo: SELECT DISTINCT ?ni WHERE { dbo:netIncome ?ni . },julipc-p(huggingface) +What does the abbreviation FIFA stand for?,PREFIX res: PREFIX dbp: SELECT DISTINCT ?name WHERE { res:FIFA dbp:name ?name . },julipc-p(huggingface) +When did the Ming dynasty dissolve?,PREFIX res: PREFIX dbo: SELECT DISTINCT ?date WHERE { res:Ming_dynasty dbo:dissolutionDate ?date . },julipc-p(huggingface) +Which museum in New York has the most visitors?,PREFIX res: PREFIX dbo: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Museum . ?uri dbo:location res:New_York_City . ?uri dbo:numberOfVisitors ?num . } ORDER BY DESC(?num) OFFSET 0 LIMIT 1,julipc-p(huggingface) +Is Lake Baikal bigger than the Great Bear Lake?,PREFIX res: PREFIX dbo: ASK WHERE { res:Lake_Baikal dbo:areaTotal ?a1 . res:Great_Bear_Lake dbo:areaTotal ?a2 . FILTER (?a1 > ?a2) },julipc-p(huggingface) +Desserts from which country contain fish?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { ?x dbo:type res:Dessert . ?x dbo:origin ?uri . ?x dbo:ingredient res:Fish . },julipc-p(huggingface) +What is the highest mountain in Italy?,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Mountain . ?uri dbo:locatedInArea res:Italy . ?uri dbo:elevation ?num . } ORDER BY DESC(?num) OFFSET 0 LIMIT 1,julipc-p(huggingface) +Where did the architect of the Eiffel Tower study?,PREFIX dbp: PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Eiffel_Tower dbo:architect ?x . ?x dbp:almaMater ?uri . },julipc-p(huggingface) +Which Greek parties are pro-European?,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:PoliticalParty . ?uri dbo:country res:Greece . ?uri dbo:ideology res:Pro-Europeanism . },julipc-p(huggingface) +What is the height difference between Mount Everest and K2?,PREFIX dbo: PREFIX res: SELECT DISTINCT (?h1-?h2) WHERE { res:Mount_Everest dbo:elevation ?h1 . res:K2 dbo:elevation ?h2 . },julipc-p(huggingface) +Who is the mayor of Rotterdam?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Rotterdam dbo:leaderName ?uri . },julipc-p(huggingface) +How high is the Yokohama Marine Tower?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?num WHERE { res:Yokohama_Marine_Tower dbo:height ?num . },julipc-p(huggingface) +Are Taiko a kind of Japanese musical instruments?,PREFIX yago: PREFIX res: ASK WHERE { res:Taiko rdf:type yago:JapaneseMusicalInstruments . },julipc-p(huggingface) +How many ethnic groups live in Slovenia?,PREFIX dbo: PREFIX res: SELECT COUNT(DISTINCT ?uri) WHERE { res:Slovenia dbo:ethnicGroup ?uri . },julipc-p(huggingface) +List the seven kings of Rome.,PREFIX res: PREFIX dbp: SELECT DISTINCT ?uri WHERE { ?uri dbp:title res:King_of_Rome . },julipc-p(huggingface) +Who were the parents of Queen Victoria?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Queen_Victoria dbo:parent ?uri . },julipc-p(huggingface) +Who is the heaviest player of the Chicago Bulls?,PREFIX dbo: PREFIX dbp: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Person . ?uri dbo:weight ?num . { ?uri dbp:team res:Chicago_Bulls . } UNION { ?uri dbp:draftTeam res:Chicago_Bulls . } UNION { ?uri dbo:draftTeam res:Chicago_Bulls . } } ORDER BY DESC(?num) OFFSET 0 LIMIT 1,julipc-p(huggingface) +Which volcanos in Japan erupted since 2000?,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Volcano . ?uri dbo:locatedInArea res:Japan . ?uri dbo:eruptionYear ?date . FILTER (year(?date) >= 2000) },julipc-p(huggingface) +Who is the tallest basketball player?,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:BasketballPlayer . ?uri dbo:height ?num . } ORDER BY DESC(?num) OFFSET 0 LIMIT 1,julipc-p(huggingface) +Give me all school types.,PREFIX rdfs: PREFIX rdf: PREFIX yago: SELECT DISTINCT ?uri ?string WHERE { ?uri rdf:type yago:SchoolTypes . OPTIONAL {?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } },julipc-p(huggingface) +Which presidents were born in 1945?,"PREFIX rdfs: PREFIX rdf: PREFIX onto: PREFIX yago: SELECT DISTINCT ?uri ?string WHERE { { ?uri rdf:type onto:President . ?uri onto:birthDate ?date . FILTER regex(?date,'^1945') . OPTIONAL {?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } } UNION { ?uri rdf:type yago:President. ?uri onto:birthDate ?date . FILTER regex(?date, '^1945') . OPTIONAL {?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } } }",julipc-p(huggingface) +Who are the presidents of the United States?,PREFIX rdf: PREFIX yago: PREFIX onto: PREFIX res: PREFIX rdfs: PREFIX prop: SELECT DISTINCT ?uri ?string WHERE { { ?uri rdf:type yago:PresidentsOfTheUnitedStates. } UNION { ?uri rdf:type onto:President. ?uri prop:title res:President_of_the_United_States. } OPTIONAL {?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } },julipc-p(huggingface) +Who was the wife of President Lincoln?,PREFIX rdfs: PREFIX rdf: PREFIX foaf: PREFIX onto: SELECT ?uri ?string WHERE { ?person rdf:type onto:President . ?person foaf:surname 'Lincoln'@en . ?person onto:spouse ?uri. OPTIONAL {?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } },julipc-p(huggingface) +Who developed the video game World of Warcraft?,PREFIX rdfs: PREFIX rdf: PREFIX onto: SELECT ?uri ?string WHERE { ?subject rdf:type onto:Software . ?subject rdfs:label 'World of Warcraft'@en . ?subject onto:developer ?uri . OPTIONAL {?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } },julipc-p(huggingface) +List all episodes of the first season of the HBO television series The Sopranos!,PREFIX rdfs: PREFIX onto: PREFIX res: SELECT ?uri ?string WHERE { ?uri onto:series res:The_Sopranos . ?uri onto:seasonNumber 1 . OPTIONAL {?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } },julipc-p(huggingface) +Who produced the most films?,PREFIX rdfs: PREFIX rdf: PREFIX onto: SELECT ?uri ?string WHERE { ?film rdf:type onto:Film . ?film onto:producer ?uri . OPTIONAL {?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } } ORDER BY DESC(COUNT(?film)) LIMIT 1,julipc-p(huggingface) +Is there a video game called Battle Chess?,"PREFIX rdf: PREFIX onto: PREFIX rdfs: ASK WHERE { ?software rdf:type onto:Software . ?software rdfs:label ?name . FILTER (regex(?name, 'Battle Chess')) }",julipc-p(huggingface) +Which mountains are higher than the Nanga Parbat?,PREFIX rdfs: PREFIX rdf: PREFIX onto: PREFIX prop: SELECT ?uri ?string WHERE { ?uri rdf:type onto:Mountain . ?acon rdfs:label 'Nanga Parbat'@en . ?acon prop:elevationM ?elevation . ?uri prop:elevationM ?allelevation . FILTER (?allelevation > ?elevation) . OPTIONAL {?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } },julipc-p(huggingface) +Who created English Wikipedia?,PREFIX onto: PREFIX rdf: PREFIX rdfs: SELECT ?uri ?string WHERE { ?website rdf:type onto:Website . ?website onto:author ?uri . ?website rdfs:label 'English Wikipedia'@en . OPTIONAL {?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } },julipc-p(huggingface) +Give me all actors starring in Batman Begins.,PREFIX rdfs: PREFIX rdf: PREFIX foaf: PREFIX onto: SELECT ?uri ?string WHERE { ?film rdf:type onto:Film . ?film onto:starring ?uri . ?film foaf:name 'Batman Begins'@en . OPTIONAL {?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } },julipc-p(huggingface) +Which software has been developed by organizations founded in California?,PREFIX rdfs: PREFIX onto: PREFIX res: SELECT ?uri ?string WHERE { ?company rdf:type onto:Organisation . ?company onto:foundationPlace res:California . ?uri onto:developer ?company . ?uri rdf:type onto:Software . OPTIONAL {?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } },julipc-p(huggingface) +Which companies work in the aerospace industry as well as on nuclear reactor technology?,PREFIX rdfs: PREFIX rdf: PREFIX onto: PREFIX res: PREFIX prop: SELECT ?uri ?string WHERE { ?uri rdf:type onto:Company . ?uri prop:industry res:Aerospace . ?uri prop:industry res:Nuclear_reactor_technology . OPTIONAL {?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } },julipc-p(huggingface) +Is Christian Bale starring in Batman Begins?,PREFIX rdf: PREFIX foaf: PREFIX onto: ASK WHERE { ?film rdf:type onto:Film . ?film onto:starring ?actors . ?actors rdfs:label 'Christian Bale'@en . ?film foaf:name 'Batman Begins'@en },julipc-p(huggingface) +Give me the websites of companies with more than 500000 employees.,PREFIX rdf: PREFIX prop: PREFIX xsd: PREFIX foaf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?subject rdf:type onto:Company . ?subject prop:numEmployees ?employees . FILTER( xsd:integer(?employees) >= 500000 ) . ?subject foaf:homepage ?uri . },julipc-p(huggingface) +Which actors were born in Germany?,PREFIX rdfs: PREFIX rdf: PREFIX onto: PREFIX res: PREFIX yago: SELECT DISTINCT ?uri ?string WHERE { ?uri rdf:type onto:Actor . { ?uri onto:birthPlace res:Germany . } UNION { ?uri onto:birthPlace ?city . ?city rdf:type yago:StatesOfGermany . } OPTIONAL {?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } },julipc-p(huggingface) +Which country does the Airedale Terrier come from?,PREFIX rdfs: PREFIX prop: SELECT ?string WHERE { ?dog rdfs:label 'Airedale Terrier'@en . ?dog prop:country ?string },julipc-p(huggingface) +Which birds are there in the United States?,PREFIX yago: PREFIX rdfs: PREFIX rdf: SELECT DISTINCT ?uri ?string WHERE { ?uri rdf:type yago:BirdsOfTheUnitedStates. OPTIONAL {?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } },julipc-p(huggingface) +Give me all European Capitals!,PREFIX yago: PREFIX rdfs: PREFIX rdf: SELECT ?uri ?string WHERE { ?uri rdf:type yago:CapitalsInEurope. OPTIONAL {?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } },julipc-p(huggingface) +Which cities have more than 2 million inhabitants?,PREFIX rdfs: PREFIX rdf: PREFIX prop: PREFIX xsd: PREFIX onto: SELECT DISTINCT ?uri ?string WHERE { ?uri rdf:type onto:City. { ?uri prop:population ?population. } UNION { ?uri prop:populationUrban ?population. } FILTER (xsd:integer(?population) > 2000000) . OPTIONAL {?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } },julipc-p(huggingface) +Who was Tom Hanks married to?,PREFIX rdfs: PREFIX prop: SELECT DISTINCT ?uri ?string WHERE { ?person rdfs:label 'Tom Hanks'@en . ?person prop:spouse ?string . OPTIONAL { ?uri rdfs:label ?string . } },julipc-p(huggingface) +When was DBpedia released?,PREFIX onto: PREFIX rdf: PREFIX rdfs: SELECT ?date WHERE { ?website rdf:type onto:Software . ?website onto:releaseDate ?date . ?website rdfs:label 'DBpedia'@en },julipc-p(huggingface) +Which people were born in Heraklion?,PREFIX rdfs: PREFIX rdf: PREFIX onto: PREFIX yago: SELECT DISTINCT ?uri ?string WHERE { ?uri rdf:type onto:Person . ?uri onto:birthPlace ?city . ?city rdfs:label 'Heraklion'@en OPTIONAL {?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } },julipc-p(huggingface) +Which caves have more than 3 entrances?,PREFIX rdfs: PREFIX onto: PREFIX rdf: SELECT ?uri ?string WHERE { ?uri rdf:type onto:Cave . ?uri onto:numberOfEntrances ?entrance . FILTER (?entrance > 3) . OPTIONAL {?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } },julipc-p(huggingface) +Give me all films produced by Hal Roach.,PREFIX rdfs: PREFIX rdf: PREFIX foaf: PREFIX onto: SELECT DISTINCT ?uri ?string WHERE { ?uri rdf:type onto:Film . ?uri onto:producer ?producer . ?producer rdfs:label 'Hal Roach'@en . OPTIONAL {?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } },julipc-p(huggingface) +Which software has been published by Mean Hamster Software?,PREFIX rdfs: PREFIX rdf: PREFIX onto: PREFIX prop: PREFIX res: SELECT DISTINCT ?uri ?string WHERE { ?uri rdf:type onto:Software . { ?uri prop:publisher 'Mean Hamster Software'@en . } UNION { ?uri onto:publisher res:Mean_Hamster_Software . } OPTIONAL {?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } },julipc-p(huggingface) +What languages are spoken in Estonia?,"PREFIX rdfs: PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri ?string WHERE { ?country rdf:type onto:Country. { ?country onto:language ?uri . } UNION { ?uri onto:spokenIn ?country . } FILTER (regex(?country, 'Estonia')). OPTIONAL {?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } }",julipc-p(huggingface) +Who owns Aldi?,PREFIX rdfs: PREFIX rdf: PREFIX onto: SELECT ?uri ?string WHERE { ?orga rdf:type onto:Organisation . ?orga onto:keyPerson ?uri . ?orga rdfs:label 'Aldi'@en . OPTIONAL {?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } FILTER (lang(?string) = 'en') },julipc-p(huggingface) +Which capitals in Europe were host cities of the summer olympic games?,PREFIX rdfs: PREFIX rdf: PREFIX yago: SELECT ?uri ?string WHERE { ?uri rdf:type yago:CapitalsInEurope . ?uri rdf:type yago:HostCitiesOfTheSummerOlympicGames . OPTIONAL {?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } },julipc-p(huggingface) +Who has been the 5th president of the United States of America?,PREFIX rdf: PREFIX onto: PREFIX rdfs: SELECT ?uri ?string WHERE { ?uri rdf:type onto:President . ?uri onto:orderInOffice '5th President of the United States'@en . OPTIONAL {?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } },julipc-p(huggingface) +Who is called Dana?,"PREFIX rdf: PREFIX rdfs: PREFIX foaf: PREFIX prop: SELECT DISTINCT ?uri ?string WHERE { { ?uri rdf:type foaf:Person. ?uri foaf:givenName 'Dana'@en. } UNION { ?uri prop:alias ?alias . FILTER regex(?alias,'Dana') . } OPTIONAL {?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } }",julipc-p(huggingface) +Which music albums contain the song Last Christmas?,PREFIX rdfs: PREFIX rdf: PREFIX foaf: PREFIX onto: SELECT DISTINCT ?uri ?string WHERE { ?single rdf:type onto:Single . ?single onto:album ?uri . ?single foaf:name 'Last Christmas'@en . OPTIONAL {?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } },julipc-p(huggingface) +Which books were written by Danielle Steel?,PREFIX rdfs: PREFIX rdf: PREFIX foaf: PREFIX onto: SELECT ?uri ?string WHERE { ?uri rdf:type onto:Book . ?uri onto:author ?author . ?author foaf:name 'Danielle Steel'@en . OPTIONAL {?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } },julipc-p(huggingface) +"Which companies are located in California, USA?",PREFIX rdfs: PREFIX onto: PREFIX res: SELECT DISTINCT ?uri ?string WHERE { ?uri rdf:type onto:Organisation . ?uri onto:location res:California . OPTIONAL {?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } },julipc-p(huggingface) +Which genre does DBpedia belong to?,PREFIX prop: PREFIX onto: PREFIX rdf: PREFIX rdfs: SELECT ?uri ?string WHERE { ?dbpedia rdf:type onto:Software . ?dbpedia onto:genre ?uri . ?dbpedia rdfs:label 'DBpedia'@en . OPTIONAL {?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } },julipc-p(huggingface) +Which country has the most official languages?,PREFIX onto: PREFIX rdf: PREFIX rdfs: SELECT ?uri ?string WHERE { ?uri rdf:type onto:Country . ?uri onto:language ?language . OPTIONAL {?uri rdfs:label ?string . FILTER (lang(?string) = 'en')} } ORDER BY DESC(count(?language)) LIMIT 1,julipc-p(huggingface) +In which programming language is GIMP written?,PREFIX prop: PREFIX res: SELECT ?string WHERE { res:GIMP prop:programmingLanguage ?string . },julipc-p(huggingface) +Who produced films starring Natalie Portman?,PREFIX rdfs: PREFIX rdf: PREFIX foaf: PREFIX onto: SELECT DISTINCT ?uri ?string WHERE { ?film rdf:type onto:Film . ?film onto:starring ?actors . ?actors foaf:name 'Natalie Portman'@en . ?film onto:producer ?uri . OPTIONAL {?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } },julipc-p(huggingface) +Give me all movies with Tom Cruise!,PREFIX rdfs: PREFIX onto: PREFIX res: PREFIX rdf: PREFIX prop: SELECT DISTINCT ?uri ?string WHERE { ?uri rdf:type onto:Film. { ?uri prop:starring res:Tom_Cruise . } UNION { ?uri onto:starring res:Tom_Cruise . } OPTIONAL {?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } },julipc-p(huggingface) +In which films did Julia Roberts as well as Richard Gere play?,PREFIX rdfs: PREFIX rdf: PREFIX onto: PREFIX res: SELECT ?uri ?string WHERE { ?uri rdf:type onto:Film . ?uri onto:starring res:Julia_Roberts . ?uri onto:starring res:Richard_Gere. OPTIONAL {?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } },julipc-p(huggingface) +Give me all female German chancellors!,"PREFIX rdf: PREFIX rdfs: PREFIX yago: PREFIX prop: SELECT ?uri ?string WHERE { ?uri rdf:type yago:FemaleHeadsOfGovernment. ?uri prop:office ?office . FILTER regex(?office, 'Chancellor of Germany'). OPTIONAL {?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } }",julipc-p(huggingface) +Who wrote the book The pillars of the Earth?,PREFIX rdfs: PREFIX rdf: PREFIX rdfs: PREFIX onto: SELECT ?uri ?string WHERE { ?books rdf:type onto:Book . ?books onto:author ?uri . ?books rdfs:label 'The Pillars of the Earth'@en . OPTIONAL {?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } },julipc-p(huggingface) +How many films did Leonardo DiCaprio star in?,PREFIX rdf: PREFIX foaf: PREFIX onto: SELECT COUNT(?film) WHERE { ?film rdf:type onto:Film . ?film onto:starring ?actors . ?actors foaf:name 'Leonardo DiCaprio'@en . },julipc-p(huggingface) +Give me all soccer clubs in the Premier League.,PREFIX rdfs: PREFIX onto: PREFIX resource: SELECT DISTINCT ?uri ?string WHERE { ?uri onto:league resource:Premier_League . OPTIONAL {?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } },julipc-p(huggingface) +When was Capcom founded?,PREFIX res: PREFIX prop: SELECT ?date WHERE { res:Capcom prop:foundation ?date . },julipc-p(huggingface) +Which organizations were founded in 1950?,"PREFIX rdf: PREFIX onto: PREFIX prop: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { ?uri rdf:type onto:Organisation . ?uri prop:foundation ?date . FILTER regex(?date,'^1950') . OPTIONAL {?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } }",julipc-p(huggingface) +What is the highest mountain?,PREFIX rdfs: PREFIX onto: PREFIX rdf: SELECT ?uri ?string WHERE { ?uri rdf:type onto:Mountain . ?uri onto:elevation ?elevation . OPTIONAL {?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } } ORDER BY DESC(?elevation) LIMIT 1,julipc-p(huggingface) +Is Natalie Portman an actress?,PREFIX rdfs: PREFIX rdf: PREFIX onto: ASK WHERE { ?subject rdf:type onto:Actor. ?subject rdfs:label 'Natalie Portman'@en. },julipc-p(huggingface) +How high is the lighthouse in Colombo?,SELECT DISTINCT ?num WHERE { ?num . },julipc-p(huggingface) +How much did Pulp Fiction cost?,SELECT DISTINCT ?n WHERE { ?n . },julipc-p(huggingface) +When did Operation Overlord commence?,SELECT DISTINCT ?d WHERE { ?d . },julipc-p(huggingface) +In which city does the Chile Route 68 end?,SELECT DISTINCT ?uri WHERE { ?uri . },julipc-p(huggingface) +Which cities does the Weser flow through?,SELECT DISTINCT ?uri WHERE { ?uri . },julipc-p(huggingface) +How many seats does the home stadium of FC Porto have?,SELECT DISTINCT ?n WHERE { ?x . ?x ?n . },julipc-p(huggingface) +Who is the daughter of Robert Kennedy married to?,SELECT DISTINCT ?uri WHERE { ?child . ?child ?uri . },julipc-p(huggingface) +Which books by Kerouac were published by Viking Press?,SELECT DISTINCT ?uri WHERE { ?uri . ?uri . ?uri . },julipc-p(huggingface) +How tall is Amazon Eve?,SELECT DISTINCT ?height WHERE { ?height . },julipc-p(huggingface) +Who wrote the book Les Piliers de la terre?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { res:The_Pillars_of_the_Earth dbo:author ?uri . },julipc-p(huggingface) +How much did the Lego Movie cost?,SELECT DISTINCT ?n WHERE { ?n . },julipc-p(huggingface) +Where does Piccadilly start?,SELECT DISTINCT ?uri WHERE { ?uri . },julipc-p(huggingface) +How many languages are spoken in Turkmenistan?,SELECT (COUNT(DISTINCT ?x) as ?c) WHERE { ?x . },julipc-p(huggingface) +In which films did Julia Roberts as well as Richard Gere play?,SELECT DISTINCT ?uri WHERE { ?uri . ?uri . ?uri . },julipc-p(huggingface) +In which year was Rachel Stevens born?,SELECT DISTINCT ?uri WHERE { ?uri . },julipc-p(huggingface) +How often did Jane Fonda marry?,SELECT (COUNT(DISTINCT ?uri) as ?c) WHERE { ?uri . },julipc-p(huggingface) +How many people live in Poland?,SELECT DISTINCT ?uri WHERE { ?uri . },julipc-p(huggingface) +What is the location of the Houses of Parliament?,SELECT ?uri WHERE { ?uri . },julipc-p(huggingface) +What was the last movie with Alec Guinness?,SELECT DISTINCT ?uri WHERE { ?uri . ?uri . ?uri ?date . } ORDER BY DESC(?date) LIMIT 1,julipc-p(huggingface) +What is the highest mountain in Australia?,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Mountain . ?uri dbo:locatedInArea res:Australia . ?uri dbo:elevation ?elevation . } ORDER BY DESC(?elevation) LIMIT 1,julipc-p(huggingface) +Who created Family Guy?,SELECT DISTINCT ?uri WHERE { ?uri . },julipc-p(huggingface) +Give me all actors starring in movies directed by William Shatner.,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +Which ingredients do I need for carrot cake?,SELECT DISTINCT ?uri WHERE { ?uri . },julipc-p(huggingface) +Which computer scientist won an oscar?,"SELECT DISTINCT ?uri WHERE { { ?uri . } UNION { ?uri ?s . FILTER regex(?s,'computer scientist','i') } ?uri . }",julipc-p(huggingface) +How many companies were founded in the same year as Google?,SELECT (COUNT(DISTINCT ?uri) as ?c) WHERE { ?uri . ?uri ?year . ?year . },julipc-p(huggingface) +List all episodes of the first season of the HBO television series The Sopranos!,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { ?uri dbo:series res:The_Sopranos . ?uri dbo:seasonNumber 1 . },julipc-p(huggingface) +Who created Batman?,SELECT DISTINCT ?uri WHERE { ?uri . },julipc-p(huggingface) +How many Aldi stores are there?,SELECT DISTINCT ?number WHERE { ?number . },julipc-p(huggingface) +What is the capital of Cameroon?,SELECT DISTINCT ?uri WHERE { ?uri. },julipc-p(huggingface) +Give me all movies directed by Francis Ford Coppola.,SELECT DISTINCT ?uri WHERE { ?uri . ?uri . },julipc-p(huggingface) +Which movies starring Mickey Rourke were directed by Guy Ritchie?,SELECT DISTINCT ?uri WHERE { ?uri . ?uri . ?uri . },julipc-p(huggingface) +When did Dracula's creator die?,SELECT DISTINCT ?date WHERE { ?x . ?x ?date . },julipc-p(huggingface) +What form of government does Russia have?,SELECT DISTINCT ?uri WHERE { ?uri . },julipc-p(huggingface) +How many companies were founded by the founder of Facebook?,SELECT (COUNT(DISTINCT ?uri) as ?c) WHERE { ?uri . ?uri ?uri . },julipc-p(huggingface) +How many children did Benjamin Franklin have?,SELECT (COUNT(DISTINCT ?uri) as ?c) WHERE { ?uri . },julipc-p(huggingface) +Which airports does Yeti Airlines serve?,SELECT DISTINCT ?uri WHERE { ?uri . },julipc-p(huggingface) +How many ethnic groups live in Slovenia?,SELECT (COUNT(DISTINCT ?uri) as ?c) WHERE { ?uri . },julipc-p(huggingface) +Who is the president of Eritrea?,SELECT DISTINCT ?uri WHERE { ?uri . 'President'@en . },julipc-p(huggingface) +Who composed the soundtrack for Cameron's Titanic?,SELECT DISTINCT ?uri WHERE { ?uri . },julipc-p(huggingface) +In which time zone is Rome?,SELECT DISTINCT ?uri WHERE { ?uri . },julipc-p(huggingface) +Does Abraham Lincoln's death place have a website?,PREFIX dbo: PREFIX res: ASK WHERE { res:Abraham_Lincoln dbo:deathPlace ?p . ?p dbo:website ?w . },julipc-p(huggingface) +Who is the king of the Netherlands?,SELECT DISTINCT ?uri WHERE { ?uri . ?uri a . },julipc-p(huggingface) +Who is the Formula 1 race driver with the most races?,SELECT DISTINCT ?uri WHERE { ?uri . ?uri ?x . } ORDER BY DESC(?x) OFFSET 0 LIMIT 1,julipc-p(huggingface) +Did Elvis Presley have children?,ASK WHERE { ?uri . },julipc-p(huggingface) +In which city was the president of Montenegro born?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?uri a . },julipc-p(huggingface) +In which countries do people speak Japanese?,SELECT DISTINCT ?uri WHERE { ?uri a . ?uri . },julipc-p(huggingface) +What are the nicknames of San Francisco?,SELECT DISTINCT ?string WHERE { ?string . },julipc-p(huggingface) +Through which countries does the Yenisei river flow?,PREFIX res: PREFIX dbp: SELECT DISTINCT ?uri WHERE { res:Yenisei_River dbp:country ?uri . },julipc-p(huggingface) +Whom did Lance Bass marry?,SELECT DISTINCT ?uri WHERE { ?uri . },julipc-p(huggingface) +When did Boris Becker end his active career?,SELECT DISTINCT ?d WHERE { ?d . },julipc-p(huggingface) +Which types of grapes grow in Oregon?,SELECT DISTINCT ?uri WHERE { ?uri . },julipc-p(huggingface) +In which city are the headquarters of the United Nations?,SELECT DISTINCT ?uri WHERE { ?uri . ?uri a . },julipc-p(huggingface) +When was Jack Wolfskin founded?,SELECT DISTINCT ?year WHERE { ?year . },julipc-p(huggingface) +Who is the tallest basketball player?,SELECT DISTINCT ?uri WHERE { ?uri . ?uri ?num . } ORDER BY DESC(?num) OFFSET 0 LIMIT 1,julipc-p(huggingface) +Which city has the least inhabitants?,SELECT DISTINCT ?uri WHERE { ?uri . ?uri ?pop . } ORDER BY ASC(?pop) OFFSET 0 LIMIT 1,julipc-p(huggingface) +Where is Fort Knox located?,SELECT DISTINCT ?uri WHERE { ?uri . },julipc-p(huggingface) +Where is Syngman Rhee buried?,SELECT DISTINCT ?uri WHERE { ?uri . },julipc-p(huggingface) +What is the timezone in San Pedro de Atacama?,SELECT DISTINCT ?uri WHERE { ?uri . },julipc-p(huggingface) +To which artistic movement did the painter of The Three Dancers belong?,SELECT DISTINCT ?uri WHERE { ?person . ?person ?uri . },julipc-p(huggingface) +Show me all books in Asimov's Foundation series.,SELECT DISTINCT ?uri WHERE { ?uri . },julipc-p(huggingface) +Give me all cities in New Jersey with more than 100000 inhabitants.,PREFIX dbo: PREFIX dbp: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:City . ?uri dbo:isPartOf res:New_Jersey . ?uri dbp:populationTotal ?inhabitants . FILTER (?inhabitants > 100000) . },julipc-p(huggingface) +Which museum in New York has the most visitors?,SELECT DISTINCT ?uri WHERE { ?uri . ?uri . ?uri ?num . } ORDER BY DESC(?num) OFFSET 0 LIMIT 1,julipc-p(huggingface) +Give me all members of Prodigy.,SELECT DISTINCT ?uri WHERE { ?uri . },julipc-p(huggingface) +Who is starring in Spanish movies produced by Benicio del Toro?,SELECT DISTINCT ?uri WHERE { ?film . ?film . ?film . ?film ?uri . ?uri . },julipc-p(huggingface) +Which subsidiary of TUI Travel serves both Glasgow and Dublin?,SELECT DISTINCT ?uri WHERE { ?uri . ?uri . ?uri . },julipc-p(huggingface) +How many languages are spoken in Colombia?,SELECT (COUNT(DISTINCT ?uri) as ?c) WHERE { ?uri . ?uri . },julipc-p(huggingface) +Give me all anarcho punk bands that were formed in the 80s.,"PREFIX yago: PREFIX bio: SELECT DISTINCT ?uri ?string WHERE { ?uri rdf:type yago:Anarcho-punkGroups . ?uri owl:sameAs ?mb_band . ?mb_band bio:event ?event . ?event rdf:type bio:Birth . ?event bio:date ?date . { ?event bio:date ?date . FILTER (?date <= '1989-12-31'^^xsd:date || ?date >= '1980-01-01'^^xsd:date ) } UNION { ?event bio:date ?date . FILTER regex(?date,'^198') } OPTIONAL { ?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } }",julipc-p(huggingface) +Give me all animals that are extinct.,PREFIX dbo: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Animal . ?uri dbo:conservationStatus EX . },julipc-p(huggingface) +What is the most frequent death cause?,PREFIX dbo: SELECT DISTINCT ?x WHERE { ?uri dbo:deathCause ?x . } ORDER BY DESC(COUNT(DISTINCT ?uri)) OFFSET 0 LIMIT 1,julipc-p(huggingface) +Give me all actors called Baldwin.,PREFIX dbo: PREFIX res: PREFIX foaf: SELECT DISTINCT ?uri WHERE { ?uri foaf:surname Baldwin . { ?uri dbo:occupation res:Actor . } UNION { ?uri rdf:type dbo:Actor . } },julipc-p(huggingface) +Which spaceflights were launched from Baikonur?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { ?uri dbo:launchPad res:Baikonur_Cosmodrome . },julipc-p(huggingface) +What does CPU stand for?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { ?uri dbo:abbreviation CPU . },julipc-p(huggingface) +Give me all actors who were born in Paris after 1950.,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Actor . ?uri dbo:birthPlace res:Paris . ?uri dbo:birthDate ?date . FILTER ( ?date >= xsd:dateTime(1950-12-31T00:00:00Z)) },julipc-p(huggingface) +Who are the four youngest MVP basketball players?,"PREFIX dbo: PREFIX dbp: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:BasketballPlayer . ?uri dbo:birthDate ?date. ?uri dbp:highlights ?h . FILTER regex(?h,MVP) } ORDER BY DESC(?date) OFFSET 0 LIMIT 4",julipc-p(huggingface) +Give me all animals that are extinct.,"PREFIX dbo: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Animal . ?uri dbo:conservationStatus ""EX""@en . }",julipc-p(huggingface) +Who are the four youngest MVP basketball players?,"PREFIX dbo: PREFIX dbp: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:BasketballPlayer . ?uri dbo:birthDate ?date. ?uri dbp:highlights ?h . FILTER regex(?h,""MVP"") } ORDER BY DESC(?date) OFFSET 0 LIMIT 4",julipc-p(huggingface) +Give me all actors who were born in Paris after 1950.,"PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Actor . ?uri dbo:birthPlace res:Paris . ?uri dbo:birthDate ?date . FILTER ( ?date >= xsd:dateTime(""1950-12-31T00:00:00Z"")) }",julipc-p(huggingface) +Give me all actors called Baldwin.,"PREFIX dbo: PREFIX res: PREFIX foaf: SELECT DISTINCT ?uri WHERE { ?uri foaf:surname ""Baldwin""@en . { ?uri dbo:occupation res:Actor . } UNION { ?uri rdf:type dbo:Actor . } }",julipc-p(huggingface) +What does CPU stand for?,"PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { ?uri dbo:abbreviation ""CPU""@en . }",julipc-p(huggingface) +Who assassinated President McKinley?,PREFIX rdf: PREFIX dbo: PREFIX dct: PREFIX dbc: select distinct ?uri where { ?uri rdf:type dbo:Person . ?uri dct:subject dbc:American_assassins . ?uri dct:subject dbc:Assassination_of_William_McKinley . },julipc-p(huggingface) +Who was buried in the Great Pyramid of Giza?,PREFIX dbo: PREFIX dbr: select ?uri where { ?uri dbo:restingPlace dbr:Great_Pyramid_of_Giza . },julipc-p(huggingface) +Give me the websites of companies with more than 500000 employees.,PREFIX foaf: PREFIX dbo: PREFIX dbp: PREFIX rdf: PREFIX xsd: SELECT DISTINCT ?string WHERE { ?subject rdf:type dbo:Company . ?subject dbp:numEmployees ?employees . FILTER( xsd:integer(?employees) > 500000 ) . ?subject foaf:homepage ?string . },julipc-p(huggingface) +Which states of Germany are governed by the Social Democratic Party?,PREFIX dbp: PREFIX res: PREFIX yago: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type yago:StatesOfGermany . { ?uri dbp:rulingParty 'SPD'@en . } UNION { ?uri dbp:rulingParty res:Social_Democratic_Party_of_Germany . } },julipc-p(huggingface) +What is the highest place of Karakoram?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Karakoram dbo:highestPlace ?uri . },julipc-p(huggingface) +Which mountain is the highest after the Annapurna?,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { res:Annapurna dbo:elevation ?elevation . ?uri rdf:type dbo:Mountain . ?uri dbo:elevation ?otherelevation . FILTER (?otherelevation < ?elevation) . } ORDER BY DESC(?otherelevation) LIMIT 1,julipc-p(huggingface) +Which classis do tree frogs belong to?,PREFIX dbp: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Hylidae dbp:classis ?uri . },julipc-p(huggingface) +Who is the mayor of New York City?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { res:New_York_City dbo:leaderName ?uri . },julipc-p(huggingface) +Which organizations were founded in 1950?,"PREFIX dbo: PREFIX dbp: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Organisation . { ?uri dbo:formationYear ?date . } UNION { ?uri dbo:foundingYear ?date. } UNION { ?uri dbp:foundation ?date . } UNION { ?uri dbp:formation ?date . } FILTER regex(?date,'^1950') . }",julipc-p(huggingface) +Which presidents were born in 1945?,"PREFIX dbo: PREFIX yago: PREFIX rdf: SELECT DISTINCT ?uri WHERE { { ?uri rdf:type dbo:President . } UNION { ?uri rdf:type yago:Presidents . } ?uri dbo:birthDate ?date . FILTER regex(?date, '^1945') . }",julipc-p(huggingface) +Which museum exhibits The Scream by Munch?,PREFIX dbp: PREFIX res: SELECT DISTINCT ?uri WHERE { res:The_Scream dbp:museum ?uri . },julipc-p(huggingface) +Which countries have places with more than two caves?,PREFIX dbo: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?cave rdf:type dbo:Cave . ?cave dbo:location ?uri . ?uri rdf:type dbo:Country . } GROUP BY ?uri HAVING (COUNT(?cave) > 2),julipc-p(huggingface) +Which European countries have a constitutional monarchy?,PREFIX dbo: PREFIX res: PREFIX yago: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type yago:EuropeanCountries . ?uri dbo:governmentType res:Constitutional_monarchy . },julipc-p(huggingface) +"Which airports are located in California, USA?",PREFIX dbo: PREFIX dbp: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Airport . { ?uri dbo:location res:California . } UNION { ?uri dbp:location res:California . } UNION { ?uri dbo:city res:California . } UNION { ?uri dbo:city ?city . ?city dbo:isPartOf res:California . } UNION { ?uri dbo:operator res:California . } UNION { ?uri dbp:cityServed res:California . } },julipc-p(huggingface) +Which monarchs of the United Kingdom were married to a German?,PREFIX yago: PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type yago:MonarchsOfTheUnitedKingdom . ?uri dbo:spouse ?spouse . ?spouse dbo:birthPlace res:Germany. },julipc-p(huggingface) +Give me all female German chancellors.,PREFIX yago: PREFIX dbp: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type yago:FemaleHeadsOfGovernment. ?uri dbp:office res:Chancellor_of_Germany . },julipc-p(huggingface) +Give me all video games published by Mean Hamster Software.,PREFIX dbo: PREFIX dbp: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:VideoGame . { ?uri dbp:publisher 'Mean Hamster Software'@en . } UNION { ?uri dbo:publisher res:Mean_Hamster_Software . } },julipc-p(huggingface) +Give me all school types.,PREFIX yago: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type yago:SchoolTypes . },julipc-p(huggingface) +Give me all presidents of the United States.,PREFIX yago: PREFIX dbo: PREFIX dbp: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Person . { ?uri rdf:type yago:PresidentsOfTheUnitedStates. } UNION { ?uri rdf:type dbo:President. ?uri dbp:title res:President_of_the_United_States. } },julipc-p(huggingface) +Who produced the most films?,PREFIX dbo: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?film rdf:type dbo:Film . ?film dbo:producer ?uri . } ORDER BY DESC(COUNT(?film)) LIMIT 1,julipc-p(huggingface) +Which languages are spoken in Estonia?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { { res:Estonia dbo:language ?uri . } UNION { ?uri dbo:spokenIn res:Estonia . } },julipc-p(huggingface) +Which mountains are higher than the Nanga Parbat?,PREFIX dbo: PREFIX dbp: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { res:Nanga_Parbat dbp:elevationM ?elevation . ?uri rdf:type dbo:Mountain . ?uri dbp:elevationM ?otherelevation . FILTER (?otherelevation > ?elevation) . },julipc-p(huggingface) +Which telecommunications organizations are located in Belgium?,"PREFIX dbo: PREFIX dbp: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Organisation . { ?uri dbp:industry res:Telecommunications . } UNION { ?uri dbp:industry ?industry . FILTER (regex(?industry, 'Telecommunication')) . } { ?uri dbo:location res:Belgium. } UNION { ?uri dbp:location res:Belgium. } UNION { ?uri dbp:locationCountry 'Belgium'@en . } }",julipc-p(huggingface) +Which companies work in the aerospace industry as well as on nuclear reactor technology?,PREFIX dbo: PREFIX dbp: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Company . ?uri dbp:industry res:Aerospace . ?uri dbp:industry res:Nuclear_reactor_technology . },julipc-p(huggingface) +Which state of the USA has the highest population density?,PREFIX yago: PREFIX dbp: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type yago:StatesOfTheUnitedStates . ?uri dbp:densityrank ?rank . } ORDER BY ASC(?rank) LIMIT 1,julipc-p(huggingface) +What is the highest mountain?,PREFIX dbo: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Mountain . ?uri dbo:elevation ?elevation . } ORDER BY DESC(?elevation) LIMIT 1,julipc-p(huggingface) +Who owns Aldi?,PREFIX res: PREFIX dbo: SELECT DISTINCT ?uri WHERE { res:Aldi dbo:keyPerson ?uri . },julipc-p(huggingface) +What are the official languages of the Philippines?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Philippines dbo:officialLanguage ?uri . },julipc-p(huggingface) +Which country has the most official languages?,PREFIX dbo: PREFIX dbp: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Country . ?uri dbp:officialLanguages ?language . } ORDER BY DESC(COUNT(?language)) LIMIT 1,julipc-p(huggingface) +Which U.S. states possess gold minerals?,"PREFIX yago: PREFIX dbp: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type yago:StatesOfTheUnitedStates . ?uri dbp:mineral ?mineral . FILTER (regex(?mineral,'gold','i')) . }",julipc-p(huggingface) +Who is the daughter of Ingrid Bergman married to?,PREFIX dbo: PREFIX res: PREFIX rdfs: SELECT DISTINCT ?uri WHERE { res:Ingrid_Bergman dbo:child ?child . ?child dbo:spouse ?uri . },julipc-p(huggingface) +Which bridges are of the same type as the Manhattan Bridge?,"PREFIX dbo: PREFIX dbp: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Bridge . ?uri dbp:design ?design . res:Manhattan_Bridge dbp:design ?mdesign . FILTER (regex(?design, ?mdesign)). FILTER (?uri != res:Manhattan_Bridge) . }",julipc-p(huggingface) +Which software has been developed by organizations founded in California?,PREFIX rdf: PREFIX dbo: PREFIX dbp: PREFIX res: SELECT DISTINCT ?uri WHERE { ?company rdf:type dbo:Organisation . { ?uri dbo:developer ?company . } UNION { ?uri dbp:developer ?company .} ?uri rdf:type dbo:Software . ?company dbo:foundationPlace res:California . },julipc-p(huggingface) +Who has been the 5th president of the United States of America?,PREFIX dbo: SELECT DISTINCT ?uri WHERE { ?uri dbo:orderInOffice '5th President of the United States'@en . },julipc-p(huggingface) +Which music albums contain the song Last Christmas?,PREFIX foaf: PREFIX dbo: SELECT DISTINCT ?uri WHERE { ?single dbo:album ?uri . ?single foaf:name 'Last Christmas'@en . },julipc-p(huggingface) +Give me all female Russian astronauts.,PREFIX yago: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type yago:RussianCosmonauts . ?uri rdf:type yago:FemaleAstronauts . },julipc-p(huggingface) +Give me all actors starring in Last Action Hero.,PREFIX dbp: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Last_Action_Hero dbp:starring ?uri . },julipc-p(huggingface) +Give me all companies in the advertising industry.,"PREFIX dbp: PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Company . ?uri dbp:industry ?industry . FILTER regex(?industry,'advertising','i') . }",julipc-p(huggingface) +Which countries in the European Union adopted the Euro?,PREFIX dbp: PREFIX res: PREFIX yago: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type yago:EuropeanUnionMemberStates . { ?uri dbp:currency res:Euro . } UNION { ?uri dbp:currencyCode 'EUR'@en . } UNION { ?uri dbp:currencyCode 'Euro'@en . } },julipc-p(huggingface) +Which presidents of the United States had more than three children?,PREFIX rdf: PREFIX rdfs: PREFIX onto: PREFIX yago: SELECT DISTINCT ?uri ?string WHERE { ?uri rdf:type yago:PresidentsOfTheUnitedStates . ?uri onto:child ?child . OPTIONAL {?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } } HAVING (count(?child) > 3),julipc-p(huggingface) +Give me the official websites of actors of the television show Charmed.,PREFIX rdfs: PREFIX rdf: PREFIX foaf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?film rdf:type onto:TelevisionShow . ?film rdfs:label 'Charmed'@en . ?film onto:starring ?actors . ?actors foaf:homepage ?uri . },julipc-p(huggingface) +Who is the daughter of Bill Clinton married to?,PREFIX res: PREFIX dbpedia2: PREFIX onto: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { res:Bill_Clinton onto:child ?child . ?child dbpedia2:spouse ?string . ?uri rdfs:label ?string . },julipc-p(huggingface) +Which river does the Brooklyn Bridge cross?,PREFIX res: PREFIX dbpedia2: SELECT DISTINCT ?uri ?string WHERE { res:Brooklyn_Bridge dbpedia2:crosses ?string . ?uri dbpedia2:name ?string . },julipc-p(huggingface) +How many monarchical countries are there in Europe?,"PREFIX onto: PREFIX yago: PREFIX rdf: SELECT COUNT(DISTINCT ?uri) WHERE { ?uri rdf:type yago:EuropeanCountries . ?uri onto:governmentType ?govern . FILTER regex(?govern,'monarchy') . }",julipc-p(huggingface) +Where did Abraham Lincoln die?,PREFIX onto: PREFIX res: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { res:Abraham_Lincoln onto:deathPlace ?uri . OPTIONAL {?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } },julipc-p(huggingface) +Is the wife of President Obama called Michelle?,"PREFIX rdfs: PREFIX onto: PREFIX res: ASK WHERE { res:Barack_Obama onto:spouse ?spouse . ?spouse rdfs:label ?name . FILTER(regex(?name,'Michelle')) }",julipc-p(huggingface) +Which states of Germany are governed by the Social Democratic Party?,PREFIX onto: PREFIX rdf: PREFIX rdfs: PREFIX yago: SELECT DISTINCT ?uri ?string WHERE { ?uri rdf:type yago:StatesOfGermany . ?uri onto:leaderParty res:Social_Democratic_Party_of_Germany . OPTIONAL {?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } },julipc-p(huggingface) +Which U.S. states possess gold minerals?,"PREFIX yago: PREFIX rdf: PREFIX rdfs: PREFIX dbpedia2: SELECT DISTINCT ?uri ?string WHERE { ?uri rdf:type yago:StatesOfTheUnitedStates . ?uri dbpedia2:mineral ?mineral . FILTER (regex(?mineral,'Gold')) . OPTIONAL {?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } }",julipc-p(huggingface) +In which country does the Nile start?,PREFIX onto: PREFIX rdfs: PREFIX res: SELECT ?uri ?string WHERE { res:Nile onto:sourceCountry ?uri . OPTIONAL {?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } },julipc-p(huggingface) +Which locations have more than two caves?,PREFIX onto: PREFIX rdf: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { ?cave rdf:type onto:Cave . ?cave onto:location ?uri . OPTIONAL {?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } } HAVING (count(?cave) > 2),julipc-p(huggingface) +Is proinsulin a protein?,PREFIX res: PREFIX rdf: PREFIX onto: ASK WHERE { res:Proinsulin rdf:type onto:Protein . },julipc-p(huggingface) +Which classis does the Millepede belong to?,PREFIX dbpedia2: PREFIX res: SELECT ?string WHERE { res:Millipede dbpedia2:classis ?string . },julipc-p(huggingface) +How tall is Claudia Schiffer?,PREFIX res: PREFIX onto: SELECT ?number WHERE { res:Claudia_Schiffer onto:height ?number . },julipc-p(huggingface) +Who created Goofy?,PREFIX res: PREFIX prop: SELECT DISTINCT ?uri ?string WHERE { res:Goofy prop:creator ?string . ?uri prop:name ?string . },julipc-p(huggingface) +Give me the capitals of all U.S. states.,PREFIX onto: PREFIX rdf: PREFIX rdfs: PREFIX yago: SELECT DISTINCT ?uri ?string WHERE { ?states rdf:type yago:StatesOfTheUnitedStates . ?states onto:capital ?uri . OPTIONAL {?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } },julipc-p(huggingface) +Give me all cities in New Jersey with more than 100000 inhabitants.,"PREFIX rdf: PREFIX rdfs: PREFIX dbpedia2: PREFIX onto: SELECT DISTINCT ?uri ?string WHERE { ?uri rdf:type onto:City . ?uri dbpedia2:subdivisionName ?location . FILTER (regex(?location, 'New Jersey')) . ?uri dbpedia2:populationTotal ?inhabitants . FILTER (?inhabitants > 100000) . OPTIONAL {?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } }",julipc-p(huggingface) +Which museum exhibits The Scream by Munch?,PREFIX res: PREFIX dbpedia2: PREFIX rdfs: SELECT ?uri ?string WHERE { res:The_Scream dbpedia2:museum ?string . OPTIONAL { ?uri rdfs:label ?string. } },julipc-p(huggingface) +Is Egypts largest city also its capital?,PREFIX res: PREFIX onto: ASK WHERE { res:Egypt onto:largestCity ?large . res:Egypt onto:capital ?capital . FILTER (?large = ?capital) },julipc-p(huggingface) +What is the revenue of IBM?,PREFIX onto: PREFIX res: SELECT ?number WHERE { res:IBM onto:revenue ?number . },julipc-p(huggingface) +Which states border Utah?,PREFIX res: PREFIX dbpedia2: PREFIX yago: SELECT DISTINCT ?uri ?string WHERE { {res:Kansas dbpedia2:north ?string.} UNION {res:Kansas dbpedia2:northeast ?string.} UNION {res:Kansas dbpedia2:south ?string.} UNION {res:Kansas dbpedia2:southeast ?string.} UNION {res:Kansas dbpedia2:east ?string.} UNION {res:Kansas dbpedia2:west ?string.} OPTIONAL { ?uri rdf:type yago:StatesOfTheUnitedStates . ?uri dbpedia2:name ?string . } },julipc-p(huggingface) +In which country is the Limerick Lake?,PREFIX onto: PREFIX rdfs: PREFIX res: SELECT DISTINCT ?uri ?string WHERE { res:Limerick_Lake onto:country ?uri . OPTIONAL { ?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } },julipc-p(huggingface) +Which television shows were created by Walt Disney?,PREFIX onto: PREFIX rdf: PREFIX rdfs: PREFIX res: SELECT DISTINCT ?uri ?string WHERE { ?uri rdf:type onto:TelevisionShow . ?uri onto:creator res:Walt_Disney . OPTIONAL {?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } },julipc-p(huggingface) +Which mountain is the highest after the Annapurna?,PREFIX onto: PREFIX rdf: PREFIX rdfs: PREFIX res: SELECT ?uri ?string WHERE { res:Annapurna onto:elevation ?elev . ?uri rdf:type onto:Mountain . ?uri onto:elevation ?all . FILTER (?all < ?elev) . OPTIONAL {?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } } ORDER BY DESC(?all) LIMIT 1,julipc-p(huggingface) +In which films directed by Garry Marshall was Julia Roberts starring?,PREFIX rdf: PREFIX rdfs: PREFIX onto: PREFIX res: SELECT DISTINCT ?uri ?string WHERE { ?uri rdf:type onto:Film . ?uri onto:starring res:Julia_Roberts . ?uri onto:director res:Garry_Marshall . OPTIONAL {?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } },julipc-p(huggingface) +Which bridges are of the same type as the Manhattan Bridge?,"PREFIX onto: PREFIX rdf: PREFIX rdfs: PREFIX res: PREFIX dbpedia2: SELECT DISTINCT ?uri ?string WHERE { ?uri rdf:type onto:Bridge . ?uri dbpedia2:design ?design . res:Manhattan_Bridge dbpedia2:design ?manha . FILTER (regex(?design, ?manha)). FILTER (?uri != res:Manhattan_Bridge) . OPTIONAL {?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } }",julipc-p(huggingface) +Was U.S. president Jackson involved in a war?,"PREFIX onto: PREFIX yago: PREFIX rdf: PREFIX rdfs: PREFIX dbpedia2: ASK WHERE { ?uri rdf:type yago:PresidentsOfTheUnitedStates . ?uri dbpedia2:name ?name . FILTER (regex(?name, 'Jackson')) . OPTIONAL {?uri onto:battle ?battle .} FILTER BOUND(?battle). }",julipc-p(huggingface) +Which European countries are a constitutional monarchy?,PREFIX onto: PREFIX yago: PREFIX rdf: PREFIX rdfs: PREFIX res: SELECT DISTINCT ?uri ?string WHERE { ?uri rdf:type yago:EuropeanCountries . ?uri onto:governmentType res:Constitutional_monarchy . OPTIONAL {?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } },julipc-p(huggingface) +Who is the author of WikiLeaks?,PREFIX res: PREFIX rdfs: PREFIX onto: SELECT ?uri ?string WHERE { res:WikiLeaks onto:author ?uri . OPTIONAL {?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } },julipc-p(huggingface) +Which state of the United States of America has the highest density?,PREFIX yago: PREFIX rdf: PREFIX rdfs: PREFIX dbpedia2: SELECT ?uri ?string WHERE { ?uri rdf:type yago:StatesOfTheUnitedStates . ?uri dbpedia2:densityrank ?density OPTIONAL {?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } } ORDER BY ASC(?density) LIMIT 1,julipc-p(huggingface) +What is the currency of the Czech Republic?,PREFIX dbpedia2: PREFIX res: PREFIX rdfs: SELECT ?uri ?string WHERE { res:Czech_Republic dbpedia2:currency ?string . ?uri rdfs:label ?string . },julipc-p(huggingface) +Which countries in the European Union adopted the Euro?,"PREFIX dbpedia2: PREFIX res: PREFIX rdfs: PREFIX yago: PREFIX rdf: SELECT DISTINCT ?uri ?string WHERE { ?uri rdf:type yago:EuropeanUnionMemberStates . { ?uri dbpedia2:currency res:Euro . } UNION { ?uri dbpedia2:currencyCode ?code . FILTER regex(?code,'EUR') } OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } }",julipc-p(huggingface) +What is the area code of Berlin?,PREFIX onto: PREFIX res: SELECT ?string WHERE { res:Berlin onto:areaCode ?string . },julipc-p(huggingface) +Which countries have more than two official languages?,PREFIX onto: PREFIX rdf: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { ?uri rdf:type onto:Country . ?uri onto:officialLanguage ?language . OPTIONAL {?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } } HAVING (count(?language) > 2),julipc-p(huggingface) +Who is the owner of Universal Studios?,PREFIX onto: PREFIX res: PREFIX rdfs: SELECT ?uri ?string WHERE { res:Universal_Studios onto:owner ?uri . OPTIONAL {?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } },julipc-p(huggingface) +Through which countries does the Yenisei river flow?,"PREFIX res: PREFIX dbpedia2: SELECT DISTINCT ?uri ?string WHERE { res:Yenisei_River dbpedia2:country ?string . OPTIONAL { ?uri dbpedia2:commonName ?name . } FILTER regex(?name,?string) . OPTIONAL { ?uri dbpedia2:dateEnd ?date . } FILTER (!BOUND(?date)) }",julipc-p(huggingface) +When did Germany join the EU?,PREFIX res: PREFIX dbpedia2: SELECT ?date WHERE { res:Germany dbpedia2:accessioneudate ?date . },julipc-p(huggingface) +Which monarchs of the United Kingdom were married to a German?,PREFIX yago: PREFIX onto: PREFIX rdf: PREFIX rdfs: PREFIX res: SELECT DISTINCT ?uri ?string WHERE { ?uri rdf:type yago:MonarchsOfTheUnitedKingdom . { ?uri onto:spouse ?spouse . } UNION { ?spouse onto:spouse ?uri . } ?spouse onto:birthPlace res:Germany. OPTIONAL {?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } },julipc-p(huggingface) +When was the Battle of Gettysburg?,PREFIX res: PREFIX onto: SELECT ?string WHERE { res:Battle_of_Gettysburg onto:date ?string . },julipc-p(huggingface) +What is the highest mountain in Germany?,"PREFIX rdf: PREFIX rdfs: PREFIX onto: SELECT ?uri ?string WHERE { ?uri rdf:type onto:Mountain . ?uri onto:elevation ?elevation . ?uri onto:locatedInArea ?area . FILTER (regex(?area,'Germany')) . OPTIONAL {?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } } ORDER BY DESC(?elevation) LIMIT 1",julipc-p(huggingface) +Give me all soccer clubs in Spain.,"PREFIX rdf: PREFIX rdfs: PREFIX onto: PREFIX prop: SELECT DISTINCT ?uri ?string WHERE { ?uri rdf:type onto:SoccerClub . { ?uri onto:ground ?ground . } UNION { ?uri prop:ground ?ground . } FILTER (regex(?ground, 'Spain')) . OPTIONAL {?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } }",julipc-p(huggingface) +What are the official languages of the Philippines?,PREFIX onto: PREFIX res: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { res:Philippines onto:officialLanguage ?uri . OPTIONAL {?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } },julipc-p(huggingface) +Who is the mayor of New York City?,PREFIX res: PREFIX onto: PREFIX rdfs: SELECT ?uri ?string WHERE { res:New_York_City onto:leaderName ?uri . OPTIONAL {?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } },julipc-p(huggingface) +Who designed the Brooklyn Bridge?,PREFIX res: PREFIX dbpedia2: SELECT DISTINCT ?uri ?string WHERE { res:Brooklyn_Bridge dbpedia2:designer ?string . ?uri dbpedia2:name ?string . },julipc-p(huggingface) +Which telecommunications organizations are located in Belgium?,"PREFIX rdfs: PREFIX rdf: PREFIX dbpedia2: PREFIX onto: PREFIX res: SELECT ?uri ?string WHERE { ?uri rdf:type onto:Organisation . ?uri dbpedia2:industry ?indus . { ?uri onto:location res:Belgium. } UNION { ?uri dbpedia2:location res:Belgium. } UNION { ?uri dbpedia2:locationCountry 'Belgium'@en . } FILTER (regex(?indus, 'Telecommunication')) . OPTIONAL {?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } }",julipc-p(huggingface) +What is the profession of Frank Herbert?,PREFIX dbpedia2: PREFIX res: SELECT DISTINCT ?string WHERE { res:Frank_Herbert dbpedia2:occupation ?string . },julipc-p(huggingface) +What is the highest place of Karakoram?,PREFIX onto: PREFIX rdfs: PREFIX res: SELECT ?uri ?string WHERE { res:Karakoram onto:highestPlace ?uri . OPTIONAL {?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } },julipc-p(huggingface) +Give me the homepage of Forbes.,PREFIX res: PREFIX foaf: SELECT DISTINCT ?uri WHERE { res:Forbes foaf:homepage ?uri . },julipc-p(huggingface) +Which companies are in the computer software industry?,"PREFIX rdfs: PREFIX rdf: PREFIX dbpedia2: PREFIX onto: PREFIX res: SELECT DISTINCT ?uri ?string WHERE { ?uri rdf:type onto:Company . ?uri dbpedia2:industry ?indus . FILTER regex(?indus,'Computer') . FILTER regex(?indus,'software','i') . OPTIONAL {?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } }",julipc-p(huggingface) +What did Bruce Carver die from?,PREFIX res: PREFIX onto: SELECT ?uri ?string WHERE { res:Bruce_Carver onto:deathCause ?uri . OPTIONAL {?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } },julipc-p(huggingface) +Did Robin Cook attend a university?,PREFIX dbo: PREFIX res: PREFIX rdf: ASK WHERE { res:Robin_Cook dbo:almaMater ?x . ?x rdf:type dbo:University },julipc-p(huggingface) +Did Tony Fry influence Aristotle?,PREFIX dbo: PREFIX res: ASK WHERE { res:Aristotle dbo:influencedBy res:Tony_Fry },julipc-p(huggingface) +Does Por tu amor have more episodes than Game of Thrones?,PREFIX dbo: PREFIX res: ASK WHERE { res:Por_tu_amor dbo:numberOfEpisodes ?x . res:Game_of_Thrones dbo:numberOfEpisodes ?y FILTER ( ?x > ?y ) },julipc-p(huggingface) +Does the Alba River flow into a lake?,PREFIX dbo: PREFIX res: PREFIX rdf: ASK WHERE { ?x dbo:inflow res:Alba_River ; rdf:type dbo:Lake },julipc-p(huggingface) +From which region is the Refosco dal Peduncolo Rosso?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Refosco_dal_Peduncolo_Rosso dbo:wineRegion ?uri },julipc-p(huggingface) +Give me all Avant-garde jazz record labels.,"PREFIX dbo: PREFIX res: PREFIX rdfs: PREFIX rdf: SELECT DISTINCT ?uri ?string WHERE { ?uri rdf:type dbo:RecordLabel ; dbo:genre res:Avant-garde_jazz OPTIONAL { ?uri rdfs:label ?string FILTER ( lang(?string) = ""en"" ) } }",julipc-p(huggingface) +Give me all books written by David Foster Wallace.,PREFIX dbo: PREFIX res: PREFIX dbp: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Book ; dbp:author res:David_Foster_Wallace },julipc-p(huggingface) +Give me all cars that are produced in Netherlands.,PREFIX dbo: PREFIX res: PREFIX dbp: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Automobile { ?uri dbo:assembly res:Netherlands } UNION { ?uri dbp:assembly res:Netherlands } UNION { { ?uri dbo:manufacturer ?x } UNION { ?uri dbp:manufacturer ?x } { ?x dbo:locationCountry res:Netherlands } UNION { ?x dbo:location res:Netherlands } } },julipc-p(huggingface) +Give me all companies in Jena.,"PREFIX dbo: PREFIX res: PREFIX rdfs: PREFIX rdf: SELECT DISTINCT ?uri ?string WHERE { ?uri rdf:type dbo:Company { ?uri dbo:location res:Jena } UNION { ?uri dbo:headquarter res:Jena } UNION { ?uri dbo:locationCity res:Jena } OPTIONAL { ?uri rdfs:label ?string FILTER ( lang(?string) = ""en"" ) } }",julipc-p(huggingface) +Give me all inflows of the Lake Houston.,PREFIX dbo: SELECT DISTINCT ?uri WHERE { dbo:inflow ?uri },julipc-p(huggingface) +Give me all members of The Who.,"PREFIX dbo: PREFIX res: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { res:The_Who dbo:bandMember ?uri OPTIONAL { ?uri rdfs:label ?string FILTER ( lang(?string) = ""en"" ) } }",julipc-p(huggingface) +Give me all professional skateboarders from Sweden.,"PREFIX dbo: PREFIX res: PREFIX rdfs: PREFIX dbp: SELECT DISTINCT ?uri ?string WHERE { ?uri dbo:occupation res:Skateboarding { ?uri dbo:birthPlace res:Sweden } UNION { ?uri dbo:birthPlace ?place . ?place dbo:country res:Sweden } OPTIONAL { ?uri rdfs:label ?string FILTER ( lang(?string) = ""en"" ) } }",julipc-p(huggingface) +Give me all soccer clubs in Qatar.,"PREFIX dbo: PREFIX res: PREFIX rdfs: PREFIX dbp: PREFIX rdf: SELECT DISTINCT ?uri ?string WHERE { ?uri rdf:type dbo:SoccerClub { ?uri dbo:ground res:Qatar } UNION { ?uri dbp:ground ?ground FILTER regex(?ground, ""Qatar"") } OPTIONAL { ?uri rdfs:label ?string FILTER ( lang(?string) = ""en"" ) } }",julipc-p(huggingface) +Give me all video games published by Black Isle Studios.,"PREFIX dbo: PREFIX res: PREFIX rdfs: PREFIX dbp: PREFIX rdf: SELECT DISTINCT ?uri ?string WHERE { ?uri rdf:type dbo:VideoGame { ?uri dbp:publisher ""Black Isle Studios""@en } UNION { ?uri dbo:publisher res:Black_Isle_Studios } OPTIONAL { ?uri rdfs:label ?string FILTER ( lang(?string) = ""en"" ) } }",julipc-p(huggingface) +Give me the children of David Foster.,PREFIX dbo: PREFIX res: SELECT DISTINCT ?child WHERE { res:David_Foster dbo:child ?child },julipc-p(huggingface) +Give me the homepage of Metropolitan Home.,PREFIX res: PREFIX foaf: SELECT DISTINCT ?string WHERE { res:Metropolitan_Home foaf:homepage ?string },julipc-p(huggingface) +How big is the Mammoth Pool Reservoir?,PREFIX dbo: SELECT ?area WHERE { dbo:areaTotal ?area },julipc-p(huggingface) +How deep is Steinsee?,PREFIX dbo: SELECT DISTINCT ?n WHERE { dbo:maximumDepth ?n },julipc-p(huggingface) +How high is the Doe Hill Mountain?,PREFIX dbo: PREFIX res: SELECT ?num WHERE { res:Doe_Hill_Mountain dbo:elevation ?num },julipc-p(huggingface) +How high is the Volcano Mountain?,PREFIX dbo: PREFIX res: SELECT ?num WHERE { res:Volcano_Mountain dbo:elevation ?num },julipc-p(huggingface) +How high is the Landegode Lighthouse?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?num WHERE { res:Landegode_Lighthouse dbo:height ?num },julipc-p(huggingface) +How many employees does Staedtler have?,PREFIX dbo: PREFIX res: SELECT ?number WHERE { res:Staedtler dbo:numberOfEmployees ?number },julipc-p(huggingface) +How many ethnic groups live in Spain?,PREFIX dbo: PREFIX res: SELECT (COUNT(DISTINCT ?uri) AS ?count) WHERE { res:Spain dbo:ethnicGroup ?uri },julipc-p(huggingface) +How many inhabitants does Nagamangala have?,PREFIX dbo: PREFIX res: SELECT ?num WHERE { res:Nagamangala dbo:populationTotal ?num },julipc-p(huggingface) +How many museums does Sofia have?,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT (COUNT(DISTINCT ?uri) AS ?count) WHERE { ?uri rdf:type dbo:Museum ; dbo:location res:Sofia },julipc-p(huggingface) +How many pages does The Man with the Red Tattoo have?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?n WHERE { res:The_Man_with_the_Red_Tattoo dbo:numberOfPages ?n },julipc-p(huggingface) +How many people live in the capital of Togo?,PREFIX dbo: PREFIX res: SELECT ?num WHERE { res:Togo dbo:capital ?x . ?x dbo:populationTotal ?num },julipc-p(huggingface) +How many politicians graduated from Stanford University?,PREFIX dbo: PREFIX res: SELECT (COUNT(DISTINCT ?uri) AS ?count) WHERE { ?uri dbo:profession res:Politician ; dbo:almaMater res:Stanford_University },julipc-p(huggingface) +How many scientists graduated from Washburn University?,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT (COUNT(DISTINCT ?uri) AS ?count) WHERE { ?uri rdf:type dbo:Scientist ; dbo:almaMater res:Washburn_University },julipc-p(huggingface) +How many students does the Texas Tech University have?,PREFIX dbo: PREFIX res: SELECT ?num WHERE { res:Texas_Tech_University dbo:numberOfStudents ?num },julipc-p(huggingface) +How much did Vanilla Sky cost?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?n WHERE { res:Vanilla_Sky dbo:budget ?n },julipc-p(huggingface) +How often did Teresa Mo marry?,PREFIX dbo: PREFIX res: SELECT (COUNT(DISTINCT ?uri) AS ?count) WHERE { res:Teresa_Mo dbo:spouse ?uri },julipc-p(huggingface) +How tall is John Windsor?,PREFIX dbo: PREFIX res: SELECT ?num WHERE { res:John_Windsor dbo:height ?num },julipc-p(huggingface) +How tall is Kate Upton?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?height WHERE { res:Kate_Upton dbo:height ?height },julipc-p(huggingface) +In which country is Solaize located?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Solaize dbo:country ?uri },julipc-p(huggingface) +In which country is the Tasman Lake?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Tasman_Lake dbo:country ?uri },julipc-p(huggingface) +In which country is the Tiefer See?,"PREFIX dbo: PREFIX res: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { res:Tiefer_See dbo:country ?uri OPTIONAL { ?uri rdfs:label ?string FILTER ( lang(?string) = ""en"" ) } }",julipc-p(huggingface) +In which programming language is QuickTime written?,"PREFIX dbo: PREFIX res: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { res:QuickTime dbo:programmingLanguage ?uri OPTIONAL { ?uri rdfs:label ?string FILTER ( lang(?string) = ""en"" ) } }",julipc-p(huggingface) +Is Campari a beverage?,PREFIX dbo: PREFIX res: PREFIX rdf: ASK WHERE { res:Campari rdf:type dbo:Beverage },julipc-p(huggingface) +Is Lisa Guerrero a model?,PREFIX dbo: PREFIX res: PREFIX rdf: ASK WHERE { res:Lisa_Guerrero rdf:type dbo:Model },julipc-p(huggingface) +Is Sol Tax a scientist?,PREFIX dbo: PREFIX res: PREFIX rdf: ASK WHERE { res:Sol_Tax rdf:type dbo:Scientist },julipc-p(huggingface) +Is Joe Biden a democrat?,PREFIX dbo: PREFIX res: ASK WHERE { res:Joe_Biden dbo:party },julipc-p(huggingface) +Is David Macaulay still alive?,PREFIX dbo: PREFIX res: ASK WHERE { OPTIONAL { res:David_Macaulay dbo:deathDate ?date } FILTER ( ! bound(?date) ) },julipc-p(huggingface) +Is Wilma Flintstone married?,PREFIX dbo: PREFIX res: ASK WHERE { res:Wilma_Flintstone dbo:spouse ?uri },julipc-p(huggingface) +Is there a video game called Flappy Bird?,"PREFIX dbo: PREFIX rdfs: PREFIX rdf: ASK WHERE { ?uri rdf:type dbo:VideoGame ; rdfs:label ""Flappy Bird""@en }",julipc-p(huggingface) +Show me everyone who was born on Boxing Day.,PREFIX dbo: PREFIX res: PREFIX dbp: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Person { ?uri dbo:birthDate ?date } UNION { ?uri dbp:birthDate ?date } res:Boxing_Day dbp:date ?date },julipc-p(huggingface) +Was Peter Isola a chemist?,PREFIX dbo: PREFIX res: ASK WHERE { res:Peter_Isola dbo:profession res:Chemist },julipc-p(huggingface) +Was Denis Dutton born in Sioux City?,PREFIX dbo: PREFIX res: ASK WHERE { res:Denis_Dutton dbo:birthPlace res:Sioux_City },julipc-p(huggingface) +Was Vannes Wu born in Aachen-Mitte?,PREFIX dbo: PREFIX res: ASK WHERE { res:Vanness_Wu dbo:birthPlace res:Aachen-Mitte },julipc-p(huggingface) +What are the official languages of Tunisia?,"PREFIX dbo: PREFIX res: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { res:Tunisia dbo:officialLanguage ?uri OPTIONAL { ?uri rdfs:label ?string FILTER ( lang(?string) = ""en"" ) } }",julipc-p(huggingface) +What is the area code of Aegina?,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?string WHERE { res:Aegina dbo:areaCode ?string },julipc-p(huggingface) +What is the capital of Venezuela?,"PREFIX dbo: PREFIX res: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { res:Venezuela dbo:capital ?uri OPTIONAL { ?uri rdfs:label ?string FILTER ( lang(?string) = ""en"" ) } }",julipc-p(huggingface) +What is the currency of Rhodesia?,"PREFIX dbo: PREFIX res: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { res:Rhodesia dbo:currency ?uri OPTIONAL { ?uri rdfs:label ?string FILTER ( lang(?string) = ""en"" ) } }",julipc-p(huggingface) +What is the eye color of Liza Kennedy?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?color WHERE { res:Liza_Kennedy dbo:eyeColor ?color },julipc-p(huggingface) +What is the hair color of Marlon Teixeira?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?color WHERE { res:Marlon_Teixeira dbo:hairColor ?color },julipc-p(huggingface) +What is the official color of the Carleton University?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?string WHERE { res:Carleton_University dbo:officialSchoolColour ?string },julipc-p(huggingface) +What is the ruling party in Lo Espejo?,"PREFIX res: PREFIX rdfs: PREFIX dbp: SELECT DISTINCT ?uri ?string WHERE { res:Lo_Espejo dbp:leaderParty ?uri OPTIONAL { ?uri rdfs:label ?string FILTER ( lang(?string) = ""en"" ) } }",julipc-p(huggingface) +When did Jules Bergman die?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?date WHERE { res:Jules_Bergman dbo:deathDate ?date },julipc-p(huggingface) +When did Red Sonja's creator die?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?date WHERE { res:Red_Sonja dbo:creator ?x . ?x dbo:deathDate ?date },julipc-p(huggingface) +When is Gibraltar Diamond Jubilee Flotilla?,PREFIX res: PREFIX dbp: SELECT DISTINCT ?date WHERE { res:Gibraltar_Diamond_Jubilee_Flotilla dbp:date ?date },julipc-p(huggingface) +When was Sevcon founded?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?date WHERE { res:Sevcon dbo:foundingDate ?date },julipc-p(huggingface) +When was Albert Schweitzer born?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?date WHERE { res:Albert_Schweitzer dbo:birthDate ?date },julipc-p(huggingface) +When was the Cobble Hill Tunnel built?,PREFIX res: PREFIX dbp: SELECT ?num WHERE { res:Cobble_Hill_Tunnel dbp:built ?num },julipc-p(huggingface) +When was the Riverdale Monument built?,PREFIX res: PREFIX dbp: SELECT ?num WHERE { res:Riverdale_Monument dbp:built ?num },julipc-p(huggingface) +When was the Operation Purple Haze?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?date WHERE { res:Operation_Purple_Haze dbo:date ?date },julipc-p(huggingface) +Where did Queen Emma of Hawaii die?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Queen_Emma_of_Hawaii dbo:deathPlace ?uri },julipc-p(huggingface) +Where is the Sandhammaren located?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Sandhammaren dbo:location ?uri },julipc-p(huggingface) +Which airports are located in Chios?,PREFIX dbo: PREFIX res: PREFIX dbp: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Airport { ?uri dbo:location res:Chios } UNION { ?uri dbp:location res:Chios } UNION { ?uri dbo:city res:Chios } UNION { ?uri dbo:city ?city . ?city dbo:isPartOf res:Chios } UNION { ?uri dbo:operator res:Chios } UNION { ?uri dbp:cityServed res:Chios } },julipc-p(huggingface) +Which artist made the album Old School Prankstas?,PREFIX dbo: SELECT DISTINCT ?uri WHERE { dbo:artist ?uri },julipc-p(huggingface) +Which books were published by DAW Books?,"PREFIX dbo: PREFIX res: PREFIX rdfs: PREFIX rdf: SELECT DISTINCT ?uri ?string WHERE { ?uri rdf:type dbo:Book ; dbo:publisher res:DAW_Books OPTIONAL { ?uri rdfs:label ?string FILTER ( lang(?string) = ""en"" ) } }",julipc-p(huggingface) +Which bridges cross the Prut?,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Bridge ; dbo:crosses res:Prut },julipc-p(huggingface) +Which instruments does Courtney Love play?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Courtney_Love dbo:instrument ?uri },julipc-p(huggingface) +Which languages are spoken in Romania?,"PREFIX dbo: PREFIX res: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { { res:Romania dbo:language ?uri } UNION { ?uri dbo:spokenIn res:Romania } OPTIONAL { ?uri rdfs:label ?string FILTER ( lang(?string) = ""en"" ) } }",julipc-p(huggingface) +Which museum exhibits The Skater?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { res:The_Skater dbo:museum ?uri },julipc-p(huggingface) +Which music albums contain the song Into Your Arms?,"PREFIX dbo: PREFIX rdfs: SELECT DISTINCT ?uri WHERE { ?single dbo:album ?uri ; rdfs:label ""Into Your Arms""@en }",julipc-p(huggingface) +Which organizations were founded in 1918?,"PREFIX dbo: PREFIX rdfs: PREFIX dbp: PREFIX rdf: SELECT DISTINCT ?uri ?string WHERE { ?uri rdf:type dbo:Organisation { ?uri dbp:foundation ?date } UNION { ?uri dbo:formationYear ?date } FILTER regex(?date, ""^1918"") OPTIONAL { ?uri rdfs:label ?string FILTER ( lang(?string) = ""en"" ) } }",julipc-p(huggingface) +Which presidents were born in 1891?,"PREFIX dbo: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:President ; dbo:birthDate ?date FILTER regex(?date, ""^1891"") }",julipc-p(huggingface) +Which professional surfers were born in Australia?,"PREFIX dbo: PREFIX res: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { ?uri dbo:occupation res:Surfing ; dbo:birthPlace res:Australia OPTIONAL { ?uri rdfs:label ?string FILTER ( lang(?string) = ""en"" ) } }",julipc-p(huggingface) +Who created Retrocrush?,"PREFIX dbo: PREFIX res: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { res:Retrocrush dbo:author ?uri OPTIONAL { ?uri rdfs:label ?string FILTER ( lang(?string) = ""en"" ) } }",julipc-p(huggingface) +Who created Miss Marple?,"PREFIX dbo: PREFIX res: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { res:Miss_Marple dbo:creator ?uri OPTIONAL { ?uri rdfs:label ?string FILTER ( lang(?string) = ""en"" ) } }",julipc-p(huggingface) +Who created the comic Old Man Logan?,"PREFIX dbo: PREFIX res: PREFIX rdfs: SELECT ?uri ?string WHERE { res:Old_Man_Logan dbo:writer ?uri OPTIONAL { ?uri rdfs:label ?string FILTER ( lang(?string) = ""en"" ) } }",julipc-p(huggingface) +Who designed the Langebro?,"PREFIX res: PREFIX rdfs: PREFIX dbp: SELECT DISTINCT ?uri ?string WHERE { res:Langebro dbp:designer ?uri OPTIONAL { ?uri rdfs:label ?string FILTER ( lang(?string) = ""en"" ) } }",julipc-p(huggingface) +Who developed Quake engine?,"PREFIX dbo: PREFIX res: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { res:Quake_engine dbo:developer ?uri OPTIONAL { ?uri rdfs:label ?string FILTER ( lang(?string) = ""en"" ) } }",julipc-p(huggingface) +Who developed the video game Duke Nukem 3D?,"PREFIX dbo: PREFIX res: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { res:Duke_Nukem_3D dbo:developer ?uri OPTIONAL { ?uri rdfs:label ?string FILTER ( lang(?string) = ""en"" ) } }",julipc-p(huggingface) +Who founded Sony?,"PREFIX dbo: PREFIX res: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { res:Sony dbo:foundedBy ?uri OPTIONAL { ?uri rdfs:label ?string FILTER ( lang(?string) = ""en"" ) } }",julipc-p(huggingface) +Who is the editor of Semana?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Semana dbo:editor ?uri },julipc-p(huggingface) +Who is the founder of DC Comics?,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { res:DC_Comics dbo:founder ?uri },julipc-p(huggingface) +Who is the heaviest player of the ASK Riga?,PREFIX dbo: PREFIX res: PREFIX dbp: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Person ; dbo:weight ?num { ?uri dbp:team res:ASK_Riga } UNION { ?uri dbp:draftTeam res:ASK_Riga } UNION { ?uri dbo:draftTeam res:ASK_Riga } } ORDER BY DESC(?num) OFFSET 0 LIMIT 1,julipc-p(huggingface) +Who is the manager of Gazelle FC?,PREFIX dbo: SELECT DISTINCT ?uri WHERE { dbo:manager ?uri },julipc-p(huggingface) +Who is the mayor of Virar?,"PREFIX dbo: PREFIX res: PREFIX rdfs: SELECT ?uri ?string WHERE { res:Virar dbo:leaderName ?uri OPTIONAL { ?uri rdfs:label ?string FILTER ( lang(?string) = ""en"" ) } }",julipc-p(huggingface) +Who is the mayor of the capital of New Caledonia?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { res:New_Caledonia dbo:capital ?x . ?x dbo:mayor ?uri },julipc-p(huggingface) +Who is the owner of Mazda?,"PREFIX dbo: PREFIX res: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { res:Mazda dbo:owner ?uri OPTIONAL { ?uri rdfs:label ?string FILTER ( lang(?string) = ""en"" ) } }",julipc-p(huggingface) +Who is the tallest player of Udinese Calcio?,PREFIX dbo: PREFIX res: PREFIX dbp: SELECT DISTINCT ?uri WHERE { ?uri dbo:team res:Udinese_Calcio ; dbo:height ?h } ORDER BY DESC(?h) OFFSET 0 LIMIT 1,julipc-p(huggingface) +Who is the youngest Snooker player?,PREFIX dbo: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:SnookerPlayer ; dbo:birthDate ?date } ORDER BY DESC(?date) OFFSET 0 LIMIT 1,julipc-p(huggingface) +Who painted Unfinished portrait of General Bonaparte?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Unfinished_portrait_of_General_Bonaparte dbo:author ?uri },julipc-p(huggingface) +Who produces Red Bull?,"PREFIX dbo: PREFIX res: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { ?uri dbo:product res:Red_Bull OPTIONAL { ?uri rdfs:label ?string FILTER ( lang(?string) = ""en"" ) } }",julipc-p(huggingface) +Who were the parents of Maria of Antioch?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Maria_of_Antioch dbo:parent ?uri },julipc-p(huggingface) +Who wrote the book Leave It to Psmith?,"PREFIX dbo: PREFIX res: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { res:Leave_It_to_Psmith dbo:author ?uri OPTIONAL { ?uri rdfs:label ?string FILTER ( lang(?string) = ""en"" ) } }",julipc-p(huggingface) +Which companies work in the aerospace industry as well as on nuclear reactor technology?,"PREFIX rdfs: PREFIX rdf: PREFIX onto: PREFIX res: PREFIX prop: SELECT ?uri ?string WHERE { ?uri rdf:type onto:Company . ?uri prop:industry res:Aerospace . ?uri prop:industry res:Nuclear_reactor_technology . OPTIONAL {?uri rdfs:label ?string .} FILTER (lang(?string) = ""en"") }",julipc-p(huggingface) +Give me all school types.,"PREFIX rdfs: PREFIX rdf: PREFIX yago: SELECT ?uri ?string WHERE { ?uri rdf:type yago:SchoolTypes . OPTIONAL {?uri rdfs:label ?string .} FILTER (lang(?string) = ""en"") }",julipc-p(huggingface) +Which presidents were born in 1945?,"PREFIX rdfs: PREFIX rdf: PREFIX onto: PREFIX yago: SELECT DISTINCT ?uri ?string WHERE { { ?uri rdf:type onto:President . ?uri onto:birthDate ?date . FILTER regex(?date, ""^1945"") . OPTIONAL {?uri rdfs:label ?string .} FILTER (lang(?string) = ""en"") } UNION { ?uri rdf:type yago:President. ?uri onto:birthDate ?date . FILTER regex(?date, ""^1945"") . OPTIONAL {?uri rdfs:label ?string .} FILTER (lang(?string) = ""en"") } }",julipc-p(huggingface) +Who was the wife of President Lincoln?,"PREFIX rdfs: PREFIX rdf: PREFIX foaf: PREFIX onto: SELECT ?uri ?string WHERE { ?person rdf:type onto:President . ?person foaf:surname ""Lincoln""@en . ?person onto:spouse ?uri. OPTIONAL {?uri rdfs:label ?string .} FILTER (lang(?string) = ""en"") }",julipc-p(huggingface) +Which software has been published by Electronic Arts?,"PREFIX rdfs: PREFIX rdf: PREFIX onto: PREFIX prop: SELECT ?uri ?string WHERE { ?uri rdf:type onto:Software . ?uri prop:publisher ""Electronic Arts""@en . OPTIONAL {?uri rdfs:label ?string .} FILTER (lang(?string) = ""en"") }",julipc-p(huggingface) +"List all episodes of the first season of the HBO television series ""The Sopranos""!","PREFIX rdfs: PREFIX onto: PREFIX res: SELECT ?uri ?string WHERE { ?uri onto:series res:The_Sopranos . ?uri onto:seasonNumber 1 . OPTIONAL {?uri rdfs:label ?string .} FILTER (lang(?string) = ""en"") }",julipc-p(huggingface) +Who produced the most films?,"PREFIX rdfs: PREFIX rdf: PREFIX onto: SELECT ?uri ?string WHERE { ?film rdf:type onto:Film . ?film onto:producer ?uri . OPTIONAL {?uri rdfs:label ?string .} FILTER (lang(?string) = ""en"") } ORDER BY DESC(COUNT(?film)) LIMIT 1",julipc-p(huggingface) +Give me all female German chancellors!,"PREFIX rdf: PREFIX rdfs: PREFIX yago: PREFIX prop: SELECT ?uri ?string WHERE { ?uri rdf:type yago:FemaleHeadsOfGovernment. ?uri prop:office ?office . FILTER regex(?office, ""Chancellor of Germany""). OPTIONAL {?uri rdfs:label ?string .} FILTER (lang(?string) = ""en"") }",julipc-p(huggingface) +When was DBpedia released?,"PREFIX onto: PREFIX rdf: PREFIX rdfs: SELECT ?date WHERE { ?website rdf:type onto:Software . ?website onto:releaseDate ?date . ?website rdfs:label ""DBpedia""@en }",julipc-p(huggingface) +Which mountains are higher than the Nanga Parbat?,"PREFIX rdfs: PREFIX rdf: PREFIX onto: PREFIX prop: SELECT ?uri ?string WHERE { ?uri rdf:type onto:Mountain . ?acon rdfs:label ""Nanga Parbat""@en . ?acon prop:elevationM ?elevation . ?uri prop:elevationM ?allelevation . FILTER (?allelevation > ?elevation) . OPTIONAL {?uri rdfs:label ?string .} FILTER (lang(?string) = ""en"") }",julipc-p(huggingface) +Who created English Wikipedia?,"PREFIX onto: PREFIX rdf: PREFIX rdfs: SELECT ?uri ?string WHERE { ?website rdf:type onto:Website . ?website onto:author ?uri . ?website rdfs:label ""English Wikipedia""@en . OPTIONAL {?uri rdfs:label ?string .} FILTER (lang(?string) = ""en"") }",julipc-p(huggingface) +Give me all European Capitals!,"PREFIX yago: PREFIX rdfs: PREFIX rdf: SELECT ?uri ?string WHERE { ?uri rdf:type yago:CapitalsInEurope. OPTIONAL {?uri rdfs:label ?string .} FILTER (lang(?string) = ""en"") }",julipc-p(huggingface) +"Is Christian Bale starring in ""Batman Begins""?","PREFIX rdf: PREFIX foaf: PREFIX onto: ASK WHERE { ?film rdf:type onto:Film . ?film onto:starring ?actors . ?actors rdfs:label ""Christian Bale""@en . ?film foaf:name ""Batman Begins""@en }",julipc-p(huggingface) +Give me the websites of companies with more than 500000 employees.,PREFIX rdf: PREFIX prop: PREFIX xsd: PREFIX foaf: PREFIX onto: SELECT DISTINCT ?uri WHERE { ?subject rdf:type onto:Company . ?subject prop:numEmployees ?employees . FILTER ( xsd:integer(?employees) >= 500000 ) . ?subject foaf:homepage ?uri . },julipc-p(huggingface) +Which actors were born in Germany?,"PREFIX rdfs: PREFIX rdf: PREFIX onto: PREFIX res: PREFIX yago: SELECT DISTINCT ?uri ?string WHERE { ?uri rdf:type onto:Actor . { ?uri onto:birthPlace res:Germany . } UNION { ?uri onto:birthPlace ?city . ?city rdf:type yago:StatesOfGermany . } OPTIONAL {?uri rdfs:label ?string .} FILTER (lang(?string) = ""en"") }",julipc-p(huggingface) +Which country does the Airedale Terrier come from?,"PREFIX rdfs: PREFIX prop: SELECT ?string WHERE { ?dog rdfs:label ""Airedale Terrier""@en . ?dog prop:country ?string }",julipc-p(huggingface) +Which birds are there in the United States?,"PREFIX yago: PREFIX rdfs: PREFIX rdf: SELECT ?uri ?string WHERE { ?uri rdf:type yago:BirdsOfTheUnitedStates. ?uri rdfs:label ?label. FILTER (lang(?label) = ""en"") . OPTIONAL {?uri rdfs:label ?string .} FILTER (lang(?string) = ""en"") }",julipc-p(huggingface) +Give me all actors starring in Batman Begins.,"PREFIX rdfs: PREFIX rdf: PREFIX foaf: PREFIX onto: SELECT ?uri ?string WHERE { ?film rdf:type onto:Film . ?film onto:starring ?uri . ?film foaf:name ""Batman Begins""@en . OPTIONAL {?uri rdfs:label ?string .} FILTER (lang(?string) = ""en"") }",julipc-p(huggingface) +How many films did Leonardo DiCaprio star in?,"PREFIX rdf: PREFIX foaf: PREFIX onto: SELECT count(?film) AS ?number WHERE { ?film rdf:type onto:Film . ?film onto:starring ?actors . ?actors foaf:name ""Leonardo DiCaprio""@en . }",julipc-p(huggingface) +Who is called Dana?,"PREFIX rdf: PREFIX rdfs: PREFIX foaf: PREFIX onto: SELECT DISTINCT ?uri ?string WHERE { ?uri a foaf:Person. ?uri rdf:type onto:Person. ?uri foaf:givenName ""Dana""@en. OPTIONAL {?uri rdfs:label ?string .} FILTER (lang(?string) = ""en"") }",julipc-p(huggingface) +Which caves have more than 3 entrances?,"PREFIX rdfs: PREFIX onto: PREFIX rdf: SELECT ?uri ?string WHERE { ?uri rdf:type onto:Cave . ?uri onto:numberOfEntrances ?entrance . FILTER (?entrance > 3) . OPTIONAL {?uri rdfs:label ?string .} FILTER (lang(?string) = ""en"") }",julipc-p(huggingface) +Give me all films produced by Hal Roach.,"PREFIX rdfs: PREFIX rdf: PREFIX foaf: PREFIX onto: SELECT ?uri ?string WHERE { ?uri rdf:type onto:Film . ?uri onto:producer ?producer . ?producer rdfs:label ""Hal Roach""@en . OPTIONAL {?uri rdfs:label ?string .} FILTER (lang(?string) = ""en"") }",julipc-p(huggingface) +Who developed the video game World of Warcraft?,"PREFIX rdfs: PREFIX rdf: PREFIX onto: SELECT ?uri ?string WHERE { ?subject rdf:type onto:Software . ?subject rdfs:label ""World of Warcraft""@en . ?subject onto:developer ?uri . OPTIONAL {?uri rdfs:label ?string .} FILTER (lang(?string) = ""en"") }",julipc-p(huggingface) +What languages are spoken in Estonia?,"PREFIX rdfs: PREFIX rdf: PREFIX onto: SELECT DISTINCT ?uri ?string WHERE { ?country rdf:type onto:Country. { ?country onto:language ?uri . } UNION { ?uri onto:spokenIn ?country . } FILTER (regex(?country, ""Estonia"")). OPTIONAL {?uri rdfs:label ?string .} FILTER (lang(?string) = ""en"") }",julipc-p(huggingface) +Who owns Aldi?,"PREFIX rdfs: PREFIX rdf: PREFIX onto: SELECT ?uri ?string WHERE { ?orga rdf:type onto:Organisation . ?orga onto:keyPerson ?uri . ?orga rdfs:label ""Aldi""@en . OPTIONAL {?uri rdfs:label ?string .} FILTER (lang(?string) = ""en"") }",julipc-p(huggingface) +Which capitals in Europe were host cities of the summer olympic games?,"PREFIX rdfs: PREFIX rdf: PREFIX yago: SELECT ?uri ?string WHERE { ?uri rdf:type yago:CapitalsInEurope . ?uri rdf:type yago:HostCitiesOfTheSummerOlympicGames . OPTIONAL {?uri rdfs:label ?string .} FILTER (lang(?string) = ""en"") }",julipc-p(huggingface) +Which genre does DBpedia belong to?,"PREFIX prop: PREFIX onto: PREFIX rdf: PREFIX rdfs: SELECT ?uri ?string WHERE { ?website rdf:type onto:Software . ?website onto:genre ?uri . ?website rdfs:label ""DBpedia""@en . OPTIONAL {?uri rdfs:label ?string .} FILTER (lang(?string) = ""en"") }",julipc-p(huggingface) +Which people were born in Heraklion?,"PREFIX rdfs: PREFIX rdf: PREFIX onto: PREFIX yago: SELECT DISTINCT ?uri ?string WHERE { ?uri rdf:type onto:Person . ?uri onto:birthPlace ?city . ?city rdfs:label ""Heraklion""@en OPTIONAL {?uri rdfs:label ?string .} FILTER (lang(?string) = ""en"") }",julipc-p(huggingface) +Which music albums contain the song Last Christmas?,"PREFIX rdfs: PREFIX rdf: PREFIX foaf: PREFIX onto: SELECT ?uri ?string WHERE { ?single rdf:type onto:Single . ?single onto:album ?uri . ?single foaf:name ""Last Christmas""@en . OPTIONAL {?uri rdfs:label ?string .} FILTER (lang(?string) = ""en"") }",julipc-p(huggingface) +Which books were written by Danielle Steel?,"PREFIX rdfs: PREFIX rdf: PREFIX foaf: PREFIX onto: SELECT ?uri ?string WHERE { ?uri rdf:type onto:Book . ?uri onto:author ?author . ?author foaf:name ""Danielle Steel""@en . OPTIONAL {?uri rdfs:label ?string .} FILTER (lang(?string) = ""en"") }",julipc-p(huggingface) +"Which companies were founded in California, USA?","PREFIX rdfs: PREFIX onto: PREFIX res: SELECT ?uri ?string WHERE { ?uri a onto:Organisation . ?uri onto:foundationPlace res:California . OPTIONAL {?uri rdfs:label ?string .} FILTER (lang(?string) = ""en"") }",julipc-p(huggingface) +Which country has the most official languages?,"PREFIX onto: PREFIX rdf: PREFIX rdfs: SELECT ?uri ?string WHERE { ?uri rdf:type onto:Country . ?uri onto:language ?language . OPTIONAL {?uri rdfs:label ?string .} FILTER (lang(?string) = ""en"") } ORDER BY DESC(count(?language)) LIMIT 1",julipc-p(huggingface) +Give me all films with Tom Cruise!,"PREFIX rdfs: PREFIX onto: PREFIX res: PREFIX rdf: PREFIX prop: SELECT ?uri ?string WHERE { ?uri rdf:type onto:Film. ?uri prop:starring res:Tom_Cruise. OPTIONAL {?uri rdfs:label ?string .} FILTER (lang(?string) = ""en"") }",julipc-p(huggingface) +Which people have as their given name Jimmy?,"PREFIX rdfs: PREFIX rdf: PREFIX foaf: PREFIX onto: SELECT DISTINCT ?uri ?string WHERE { ?uri a foaf:Person. ?uri rdf:type onto:Person. ?uri foaf:givenName ""Jimmy""@en . OPTIONAL {?uri rdfs:label ?string .} FILTER (lang(?string) = ""en"") }",julipc-p(huggingface) +Which software has been developed by organizations in California?,"PREFIX rdfs: PREFIX onto: PREFIX res: SELECT ?uri ?string WHERE { ?company a onto:Organisation . ?company onto:foundationPlace res:California . ?uri onto:developer ?company . ?uri a onto:Software . OPTIONAL {?uri rdfs:label ?string .} FILTER (lang(?string) = ""en"") }",julipc-p(huggingface) +Who has been the 5th president of the United states of America?,"PREFIX rdf: PREFIX onto: PREFIX rdfs: SELECT ?uri ?string WHERE { ?uri rdf:type onto:President . ?uri onto:orderInOffice ""5th President of the United States""@en . OPTIONAL {?uri rdfs:label ?string .} FILTER (lang(?string) = ""en"") }",julipc-p(huggingface) +Who produced films starring Natalie Portman?,"PREFIX rdfs: PREFIX rdf: PREFIX foaf: PREFIX onto: SELECT ?uri ?string WHERE { ?film rdf:type onto:Film . ?film onto:starring ?actors . ?actors foaf:name ""Natalie Portman""@en . ?film onto:producer ?uri . OPTIONAL {?uri rdfs:label ?string .} FILTER (lang(?string) = ""en"") }",julipc-p(huggingface) +Is Natalie Portman an actress?,"PREFIX rdfs: PREFIX rdf: PREFIX onto: ASK WHERE { ?subject rdf:type onto:Actor. ?subject rdfs:label ""Natalie Portman""@en. }",julipc-p(huggingface) +In which films did Julia Roberts as well as Richard Gere play?,"PREFIX rdfs: PREFIX rdf: PREFIX onto: PREFIX res: SELECT ?uri ?string WHERE { ?uri rdf:type onto:Film . ?uri onto:starring res:Julia_Roberts . ?uri onto:starring res:Richard_Gere. OPTIONAL {?uri rdfs:label ?string .} FILTER (lang(?string) = ""en"") }",julipc-p(huggingface) +Which are the presidents of the United States of America?,"PREFIX rdf: PREFIX yago: PREFIX onto: PREFIX res: PREFIX rdfs: PREFIX prop: SELECT DISTINCT ?uri ?string WHERE { { ?uri rdf:type yago:PresidentsOfTheUnitedStates. OPTIONAL {?uri rdfs:label ?string.} FILTER (lang(?string) = ""en"") } UNION { ?uri rdf:type onto:President. ?uri prop:title res:President_of_the_United_States. OPTIONAL {?uri rdfs:label ?string.} FILTER (lang(?string) = ""en"") } }",julipc-p(huggingface) +Who wrote the book The pillars of the Earth?,"PREFIX rdfs: PREFIX rdf: PREFIX rdfs: PREFIX onto: SELECT ?uri ?string WHERE { ?books rdf:type onto:Book . ?books onto:author ?uri . ?books rdfs:label ""The Pillars of the Earth""@en . OPTIONAL {?uri rdfs:label ?string .} FILTER (lang(?string) = ""en"") }",julipc-p(huggingface) +Which cities have more than 2 million inhabitants?,"PREFIX rdfs: PREFIX rdf: PREFIX prop: PREFIX xsd: PREFIX onto: SELECT DISTINCT ?uri ?string WHERE { { ?uri rdf:type onto:City. ?uri prop:population ?population. FILTER (xsd:integer(?population) > 2000000). OPTIONAL {?uri rdfs:label ?string .} FILTER (lang(?string) = ""en"") } UNION { ?uri rdf:type onto:City. ?uri prop:populationUrban ?population. FILTER (xsd:integer(?population) > 2000000) . OPTIONAL {?uri rdfs:label ?string .} FILTER (lang(?string) = ""en"") } }",julipc-p(huggingface) +Who was Tom Hanks married to?,"PREFIX rdfs: PREFIX prop: SELECT ?string WHERE { ?person rdfs:label ""Tom Hanks""@en . ?person prop:spouse ?string }",julipc-p(huggingface) +Give me all soccer clubs in the Premier League.,"PREFIX rdfs: PREFIX onto: PREFIX resource: SELECT ?uri ?string WHERE { ?uri onto:league resource:Premier_League . OPTIONAL {?uri rdfs:label ?string .} FILTER (lang(?string) = ""en"") }",julipc-p(huggingface) +When was Lucas Arts founded?,PREFIX res: PREFIX prop: SELECT ?date WHERE { res:LucasArts prop:foundation ?date . },julipc-p(huggingface) +Is there a video game called Battle Chess?,"PREFIX rdf: PREFIX onto: PREFIX prop: ASK WHERE { ?software rdf:type onto:Software . ?software prop:name ?name . FILTER (regex(?name, ""Battle Chess"")) }",julipc-p(huggingface) +Which organizations were founded in 1950?,"PREFIX rdf: PREFIX onto: PREFIX prop: PREFIX rdfs: SELECT ?uri ?string WHERE { ?uri rdf:type onto:Organisation . ?uri prop:foundation ?date . FILTER regex(?date, ""^1950"") . OPTIONAL {?uri rdfs:label ?string .} FILTER (lang(?string) = ""en"") }",julipc-p(huggingface) +What is the highest mountain?,"PREFIX rdfs: PREFIX onto: PREFIX rdf: SELECT ?uri ?string WHERE { ?uri rdf:type onto:Mountain . ?uri onto:elevation ?elevation . OPTIONAL {?uri rdfs:label ?string .} FILTER (lang(?string) = ""en"") } ORDER BY DESC(?elevation) LIMIT 1",julipc-p(huggingface) +Which German cities have more than 250000 inhabitants?,PREFIX dbo: PREFIX res: PREFIX rdf: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { { ?uri rdf:type dbo:City . } UNION { ?uri rdf:type dbo:Town . } ?uri dbo:country res:Germany . ?uri dbo:populationTotal ?population . FILTER ( ?population > 250000 ) OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } },julipc-p(huggingface) +Who was the successor of John F. Kennedy?,PREFIX dbo: PREFIX res: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { res:John_F._Kennedy dbo:successor ?uri . OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } },julipc-p(huggingface) +Who is the mayor of Berlin?,PREFIX dbo: PREFIX res: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { res:Berlin dbo:leader ?uri . OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } },julipc-p(huggingface) +How many students does the Free University in Amsterdam have?,PREFIX dbo: PREFIX res: SELECT ?num WHERE { res:Vrije_Universiteit dbo:numberOfStudents ?num . },julipc-p(huggingface) +What is the second highest mountain on Earth?,PREFIX dbo: PREFIX rdf: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { ?uri rdf:type dbo:Mountain . ?uri dbo:elevation ?elevation . OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } } ORDER BY DESC(?elevation) OFFSET 1 LIMIT 1,julipc-p(huggingface) +Give me all professional skateboarders from Sweden.,PREFIX dbo: PREFIX dbp: PREFIX res: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { ?uri dbo:occupation res:Skateboarding . { ?uri dbo:birthPlace res:Sweden . } UNION { ?uri dbo:birthPlace ?place . ?place dbo:country res:Sweden . } OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } },julipc-p(huggingface) +When was Alberta admitted as province?,PREFIX dbp: PREFIX res: SELECT ?date WHERE { res:Alberta dbp:admittancedate ?date . },julipc-p(huggingface) +To which countries does the Himalayan mountain system extend?,PREFIX dbo: PREFIX res: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { res:Himalayas dbo:country ?uri . OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } },julipc-p(huggingface) +Give me a list of all trumpet players that were bandleaders.,PREFIX dbo: PREFIX res: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { ?uri dbo:occupation res:Bandleader . ?uri dbo:instrument res:Trumpet . OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } },julipc-p(huggingface) +What is the total amount of men and women serving in the FDNY?,PREFIX dbp: PREFIX res: SELECT ?num WHERE { res:New_York_City_Fire_Department dbp:strength ?num . },julipc-p(huggingface) +Who is the Formula 1 race driver with the most races?,PREFIX dbo: PREFIX res: PREFIX rdf: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { ?uri rdf:type dbo:FormulaOneRacer . ?uri dbo:races ?x . OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } } ORDER BY DESC(?x) OFFSET 0 LIMIT 1,julipc-p(huggingface) +Give me all world heritage sites designated within the past five years.,"PREFIX dbo: PREFIX dbp: PREFIX rdf: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { ?uri rdf:type dbo:WorldHeritageSite . ?uri dbp:year ?x . FILTER ( ?x >= ""2007""^^xsd:integer) OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } }",julipc-p(huggingface) +Who is the youngest player in the Premier League?,PREFIX dbo: PREFIX res: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { ?uri dbo:team ?x . ?x dbo:league res:Premier_League . ?uri dbo:birthDate ?y . OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } } ORDER BY DESC(?y) OFFSET 0 LIMIT 1,julipc-p(huggingface) +Give me all members of Prodigy.,PREFIX dbo: PREFIX res: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { res:The_Prodigy dbo:bandMember ?uri . OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } },julipc-p(huggingface) +What is the longest river?,PREFIX dbo: PREFIX dbp: PREFIX rdf: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { ?uri rdf:type dbo:River . ?uri dbp:length ?x . OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } } ORDER BY DESC(?x) OFFSET 0 LIMIT 1,julipc-p(huggingface) +Give me all cars that are produced in Germany.,PREFIX dbo: PREFIX dbp: PREFIX res: PREFIX yago: PREFIX rdf: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { ?uri rdf:type dbo:Automobile . { ?uri dbp:production res:Germany . } UNION { ?uri dbp:assembly res:Germany . } UNION { ?uri dbp:manufacturer ?x . { ?x dbo:locationCountry res:Germany . } UNION { ?x rdf:type yago:AutomotiveCompaniesOfGermany . } } OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } },julipc-p(huggingface) +Give me all people that were born in Vienna and died in Berlin.,PREFIX dbo: PREFIX res: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { ?uri dbo:birthPlace res:Vienna . ?uri dbo:deathPlace res:Berlin . OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } },julipc-p(huggingface) +How tall is Michael Jordan?,PREFIX dbo: PREFIX res: SELECT ?num WHERE { res:Michael_Jordan dbo:height ?num . },julipc-p(huggingface) +What is the capital of Canada?,PREFIX dbo: PREFIX res: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { res:Canada dbo:capital ?uri . OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } },julipc-p(huggingface) +Who is the governor of Texas?,PREFIX res: PREFIX dbp: PREFIX foaf: SELECT DISTINCT ?uri ?string WHERE { res:Texas dbp:governor ?string . ?uri foaf:name ?string. },julipc-p(huggingface) +"Do Harry and William, Princes of Wales, have the same mother?","PREFIX dbp: ASK WHERE { dbp:mother ?x . dbp:mother ?y . FILTER (?x = ?y) }",julipc-p(huggingface) +Who was the father of Queen Elizabeth II?,PREFIX res: PREFIX dbp: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { res:Elizabeth_II dbp:father ?uri . OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } },julipc-p(huggingface) +Which U.S. state has been admitted latest?,PREFIX res: PREFIX dbp: PREFIX yago: PREFIX rdf: PREFIX rdfs: SELECT DISTINCT ?uri ?string ?x WHERE { ?uri rdf:type yago:StatesOfTheUnitedStates . ?uri dbp:admittancedate ?x . OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } } ORDER BY DESC(?x) OFFSET 0 LIMIT 1,julipc-p(huggingface) +Sean Parnell is the governor of which U.S. state?,PREFIX yago: PREFIX dbp: PREFIX res: PREFIX rdf: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { ?uri rdf:type yago:StatesOfTheUnitedStates . ?uri dbp:governor res:Sean_Parnell . OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } },julipc-p(huggingface) +Give me all movies directed by Francis Ford Coppola.,PREFIX dbo: PREFIX res: PREFIX rdf: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { ?uri rdf:type dbo:Film . ?uri dbo:director res:Francis_Ford_Coppola . OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } },julipc-p(huggingface) +Give me all actors starring in movies directed by and starring William Shatner.,PREFIX dbo: PREFIX dbp: PREFIX res: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { ?x dbo:director res:William_Shatner . ?x dbo:starring res:William_Shatner . { ?x dbo:starring ?uri . } UNION { ?x dbp:starring ?uri . } OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } },julipc-p(huggingface) +Give me all current Methodist national leaders.,PREFIX dbp: PREFIX res: PREFIX yago: PREFIX rdf: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { ?uri rdf:type yago:CurrentNationalLeaders . ?uri dbp:religion res:Methodism . OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } },julipc-p(huggingface) +Give me all Australian nonprofit organizations.,PREFIX dbo: PREFIX res: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { ?uri dbo:type res:Nonprofit_organization . { ?uri dbo:locationCountry res:Australia . } UNION { ?uri dbo:location ?x . ?x dbo:country res:Australia . } OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } },julipc-p(huggingface) +In which military conflicts did Lawrence of Arabia participate?,PREFIX dbo: PREFIX res: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { res:T._E._Lawrence dbo:battle ?uri . OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } },julipc-p(huggingface) +Who developed Skype?,PREFIX dbo: PREFIX res: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { res:Skype dbo:developer ?uri . OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } },julipc-p(huggingface) +How many inhabitants does Maribor have?,PREFIX dbo: PREFIX res: SELECT ?num WHERE { res:Maribor dbo:populationTotal ?num . },julipc-p(huggingface) +Give me all companies in Munich.,PREFIX dbo: PREFIX res: PREFIX rdf: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { ?uri rdf:type dbo:Company . { ?uri dbo:location res:Munich . } UNION { ?uri dbo:headquarter res:Munich . } UNION { ?uri dbo:locationCity res:Munich . } OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } },julipc-p(huggingface) +List all boardgames by GMT.,PREFIX dbo: PREFIX res: PREFIX rdfs: SELECT ?uri ?string WHERE { ?uri dbo:publisher res:GMT_Games . OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } },julipc-p(huggingface) +Who founded Intel?,PREFIX dbo: PREFIX res: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { res:Intel dbo:foundedBy ?uri . OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } },julipc-p(huggingface) +Who is the husband of Amanda Palmer?,PREFIX dbp: PREFIX res: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { res:Amanda_Palmer dbp:spouse ?uri . OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } },julipc-p(huggingface) +Give me all breeds of the German Shepherd dog.,PREFIX dbp: PREFIX res: PREFIX rdfs: SELECT ?uri WHERE { ?uri dbp:breed res:German_Shepherd_Dog . OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } },julipc-p(huggingface) +Which cities does the Weser flow through?,PREFIX dbo: PREFIX res: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { res:Weser dbo:city ?uri . OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } },julipc-p(huggingface) +Which countries are connected by the Rhine?,PREFIX dbo: PREFIX res: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { res:Rhine dbo:country ?uri . OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } },julipc-p(huggingface) +Which professional surfers were born on the Philippines?,PREFIX dbo: PREFIX res: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { ?uri dbo:occupation res:Surfing . ?uri dbo:birthPlace res:Philippines . OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } },julipc-p(huggingface) +In which UK city are the headquarters of the MI6?,PREFIX res: PREFIX dbo: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { res:Secret_Intelligence_Service dbo:headquarter ?uri . ?uri dbo:country res:United_Kingdom . OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } },julipc-p(huggingface) +Which other weapons did the designer of the Uzi develop?,PREFIX dbo: PREFIX dbp: PREFIX res: PREFIX rdf: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { ?uri rdf:type dbo:Weapon . ?uri dbp:designer ?x . res:Uzi dbp:designer ?x . FILTER (?uri != res:Uzi) OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } },julipc-p(huggingface) +Give me all Frisian islands that belong to the Netherlands.,PREFIX dbo: PREFIX res: PREFIX yago: PREFIX rdf: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { ?uri rdf:type yago:FrisianIslands . ?uri dbo:country res:Netherlands . OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } },julipc-p(huggingface) +What is the ruling party in Lisbon?,PREFIX dbp: PREFIX res: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { res:Lisbon dbp:leaderParty ?uri . OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } },julipc-p(huggingface) +Which Greek goddesses dwelt on Mount Olympus?,PREFIX dbp: PREFIX res: PREFIX yago: PREFIX rdf: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { ?uri rdf:type yago:GreekGoddesses . ?uri dbp:abode res:Mount_Olympus . OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } },julipc-p(huggingface) +When were the Hells Angels founded?,PREFIX dbp: PREFIX res: SELECT ?date WHERE { res:Hells_Angels dbp:founded ?date . },julipc-p(huggingface) +Give me the Apollo 14 astronauts.,PREFIX dbo: PREFIX res: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { ?uri dbo:mission res:Apollo_14 . OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } },julipc-p(huggingface) +What is the time zone of Salt Lake City?,PREFIX res: PREFIX dbp: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { res:Salt_Lake_City dbp:timezone ?uri . OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } },julipc-p(huggingface) +Which U.S. states are in the same timezone as Utah?,PREFIX res: PREFIX dbp: PREFIX yago: PREFIX rdf: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { res:Utah dbp:timezone ?x . ?uri rdf:type yago:StatesOfTheUnitedStates . ?uri dbp:timezone ?x . FILTER (?uri != res:Utah) OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } },julipc-p(huggingface) +Give me a list of all lakes in Denmark.,PREFIX dbo: PREFIX res: PREFIX yago: PREFIX rdf: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { { ?uri rdf:type dbo:Lake . ?uri dbo:country res:Denmark . } UNION { ?uri rdf:type yago:LakesOfDenmark . } OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } },julipc-p(huggingface) +How many space missions have there been?,PREFIX res: PREFIX dbo: PREFIX rdf: SELECT COUNT(DISTINCT ?uri) WHERE { ?uri rdf:type dbo:SpaceMission . },julipc-p(huggingface) +Did Socrates influence Aristotle?,PREFIX dbo: PREFIX res: PREFIX rdfs: ASK WHERE { res:Aristotle dbo:influencedBy res:Socrates . OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } },julipc-p(huggingface) +Give me all Argentine films.,PREFIX dbo: PREFIX dbp: PREFIX res: PREFIX yago: PREFIX rdf: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { { ?uri rdf:type yago:ArgentineFilms . } UNION { ?uri rdf:type dbo:Film . { ?uri dbo:country res:Argentina . } UNION { ?uri dbp:country 'Argentina'@en . } } OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } },julipc-p(huggingface) +Give me all launch pads operated by NASA.,PREFIX dbo: PREFIX res: PREFIX rdf: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { ?uri rdf:type dbo:LaunchPad . ?uri dbo:operator res:NASA . OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } },julipc-p(huggingface) +Which instruments did John Lennon play?,PREFIX dbo: PREFIX res: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { res:John_Lennon dbo:instrument ?uri . OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } },julipc-p(huggingface) +Which ships were called after Benjamin Franklin?,PREFIX res: PREFIX dbp: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { ?uri dbp:shipNamesake res:Benjamin_Franklin . OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } },julipc-p(huggingface) +Who are the parents of the wife of Juan Carlos I?,PREFIX dbo: PREFIX res: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { res:Juan_Carlos_I_of_Spain dbo:spouse ?x . ?x dbo:parent ?uri . OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } },julipc-p(huggingface) +How many employees does Google have?,PREFIX res: PREFIX dbo: SELECT ?num WHERE { res:Google dbo:numberOfEmployees ?num . },julipc-p(huggingface) +When was the Statue of Liberty built?,PREFIX dbp: PREFIX res: SELECT ?num WHERE { res:Statue_of_Liberty dbp:built ?num . },julipc-p(huggingface) +In which U.S. state is Area 51 located?,PREFIX dbo: PREFIX res: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { res:Area_51 dbo:location ?uri . ?uri dbo:country res:United_States . OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } },julipc-p(huggingface) +How many children did Benjamin Franklin have?,PREFIX res: PREFIX dbo: SELECT COUNT(DISTINCT ?uri) { res:Benjamin_Franklin dbo:child ?uri . },julipc-p(huggingface) +Which daughters of British earls died in the same place they were born in?,PREFIX dbo: PREFIX yago: PREFIX rdf: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { ?uri rdf:type yago:DaughtersOfBritishEarls . ?uri dbo:birthPlace ?x . ?uri dbo:deathPlace ?y . FILTER (?x != ?y) . OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } },julipc-p(huggingface) +List the children of Margaret Thatcher.,PREFIX res: PREFIX dbo: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { res:Margaret_Thatcher dbo:child ?uri . OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } },julipc-p(huggingface) +Who was called Scarface?,PREFIX dbp: PREFIX res: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { ?uri dbp:nickname res:Scarface . OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } },julipc-p(huggingface) +Give me all books by William Goldman with more than 300 pages.,PREFIX dbo: PREFIX res: PREFIX rdf: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { ?uri rdf:type dbo:Book . ?uri dbo:author res:William_Goldman . ?uri dbo:numberOfPages ?x . FILTER (?x > 300) OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } },julipc-p(huggingface) +Which books by Kerouac were published by Viking Press?,PREFIX dbo: PREFIX res: PREFIX rdf: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { ?uri rdf:type dbo:Book . ?uri dbo:publisher res:Viking_Press . ?uri dbo:author res:Jack_Kerouac . OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } },julipc-p(huggingface) +Give me a list of all American inventions.,PREFIX yago: PREFIX rdf: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { ?uri rdf:type yago:AmericanInventions . OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } },julipc-p(huggingface) +How high is the Mount Everest?,PREFIX dbo: PREFIX res: SELECT ?num WHERE { res:Mount_Everest dbo:elevation ?num. },julipc-p(huggingface) +Who created the comic Captain America?,PREFIX dbo: PREFIX res: PREFIX rdfs: SELECT ?uri ?string WHERE { res:Captain_America dbo:creator ?uri . OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } },julipc-p(huggingface) +How many people live in the capital of Australia?,PREFIX dbo: PREFIX res: SELECT ?num WHERE { res:Australia dbo:capital ?x . ?x dbo:populationTotal ?num . },julipc-p(huggingface) +What is the largest city in Australia?,PREFIX dbo: PREFIX res: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { res:Australia dbo:largestCity ?uri . OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } },julipc-p(huggingface) +Who composed the music for Harold and Maude?,PREFIX res: PREFIX dbo: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { res:Harold_and_Maude dbo:musicComposer ?uri . OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } },julipc-p(huggingface) +Which films starring Clint Eastwood did he direct himself?,PREFIX dbo: PREFIX res: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { ?uri dbo:director res:Clint_Eastwood . ?uri dbo:starring res:Clint_Eastwood . OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } },julipc-p(huggingface) +In which city was the former Dutch queen Juliana buried?,PREFIX dbo: PREFIX res: PREFIX rdf: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { res:Juliana_of_the_Netherlands dbo:restingPlace ?uri. ?uri rdf:type dbo:Settlement . OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } },julipc-p(huggingface) +Where is the residence of the prime minister of Spain?,PREFIX dbp: PREFIX res: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { res:Prime_Minister_of_Spain dbp:residence ?uri . OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } },julipc-p(huggingface) +Which U.S. State has the abbreviation MN?,PREFIX dbp: PREFIX res: PREFIX yago: PREFIX rdf: PREFIX rdfs: SELECT ?uri ?string WHERE { ?uri rdf:type yago:StatesOfTheUnitedStates . ?uri dbp:postalabbreviation 'MN'@en . OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } },julipc-p(huggingface) +Show me all songs from Bruce Springsteen released between 1980 and 1990.,PREFIX dbo: PREFIX res: PREFIX yago: PREFIX rdf: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { ?uri rdf:type dbo:Song . ?uri dbo:artist res:Bruce_Springsteen . ?uri dbo:releaseDate ?date . FILTER (?date >= '1980-01-01'^^xsd:date && ?date <= '1990-12-31'^^xsd:date) OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } },julipc-p(huggingface) +Which movies did Sam Raimi direct after Army of Darkness?,PREFIX dbo: PREFIX dbp: PREFIX res: PREFIX rdf: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { ?uri rdf:type dbo:Film . ?uri dbo:director res:Sam_Raimi . { ?uri dbo:releaseDate ?x . } UNION { ?uri dbp:released ?x . } res:Army_of_Darkness dbo:releaseDate ?y . FILTER (?x > ?y) OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } },julipc-p(huggingface) +What is the founding year of the brewery that produces Pilsner Urquell?,PREFIX dbp: PREFIX res: PREFIX rdfs: SELECT ?num WHERE { res:Pilsner_Urquell dbp:brewery ?uri . ?uri dbp:foundation ?num . OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } },julipc-p(huggingface) +Who wrote the lyrics for the Polish national anthem?,PREFIX dbo: PREFIX dbp: PREFIX res: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { res:Poland dbo:anthem ?x . ?x dbp:author ?uri . OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } },julipc-p(huggingface) +Who painted The Storm on the Sea of Galilee?,PREFIX dbp: PREFIX res: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { res:The_Storm_on_the_Sea_of_Galilee dbp:artist ?uri . OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } },julipc-p(huggingface) +Which country does the creator of Miffy come from?,PREFIX dbo: PREFIX res: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { res:Miffy dbo:creator ?x . ?x dbo:nationality ?uri . OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } },julipc-p(huggingface) +For which label did Elvis record his first album?,PREFIX dbo: PREFIX res: PREFIX rdf: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { ?x rdf:type dbo:Album . ?x dbo:artist res:Elvis_Presley . ?x dbo:releaseDate ?y . ?x dbo:recordLabel ?uri . OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } } ORDER BY ASC(?y) LIMIT 1,julipc-p(huggingface) +Who produces Orangina?,PREFIX dbo: PREFIX res: PREFIX rdfs: SELECT DISTINCT ?uri ?string WHERE { ?uri dbo:product res:Orangina . OPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') } },julipc-p(huggingface) +In which country does the Ganges start?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Ganges dbo:sourceCountry ?uri .},julipc-p(huggingface) +Which German cities have more than 250000 inhabitants?,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { { ?uri rdf:type dbo:City . } UNION { ?uri rdf:type dbo:Town . } ?uri dbo:country res:Germany . ?uri dbo:populationTotal ?population . FILTER ( ?population > 250 ) },julipc-p(huggingface) +What is the second highest mountain on Earth?,PREFIX dbo: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Mountain . ?uri dbo:elevation ?elevation . } ORDER BY DESC(?elevation) OFSET 1 LIMIT 1,julipc-p(huggingface) +When was Alberta admitted as province?,PREFIX dbp: PREFIX res: SELECT DISTINCT ?date WHERE { res:Alberta dbp:admitancedate ?date . },julipc-p(huggingface) +What is the total amount of men and women serving in the FDNY?,PREFIX dbp: PREFIX res: SELECT DISTINCT ?num WHERE { res:New_York_City_Fire_Department dbp:employes ?num . },julipc-p(huggingface) +Who is the Formula 1 race driver with the most races?,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:FormulaOneRacer . ?uri dbo:races ?x . } ORDER BY DESC(?x) OFSET 0 LIMIT 1,julipc-p(huggingface) +Give me all world heritage sites designated within the past two years.,PREFIX dbo: PREFIX dbp: PREFIX rdf: PREFIX xsd: SELECT DISTINCT ?uriWHERE { ?uri rdf:type dbo:WorldHeritageSite . { ?uri dbp:year '2013'^xsd:integer . } UNION { ?uri dbp:year '2014'^xsd:integer . },julipc-p(huggingface) +Who is the youngest player in the Premier League?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { ?uri dbo:team ?x . ?x dbo:league res:Premier_League . ?uri dbo:birthDate ?y . } ORDER BY DESC(?y) OFSET 0 LIMIT 1,julipc-p(huggingface) +What is the longest river?,PREFIX dbo: PREFIX dbp: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:River . { ?uri dbo:length ?l . } UNION { ?uri dbp:length ?l . } } ORDER BY DESC(?l) OFSET 0 LIMIT 1,julipc-p(huggingface) +Give me all cars that are produced in Germany.,PREFIX dbo: PREFIX dbp: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Automobile . { ?uri dbo:assembly res:Germany . } UNION { ?uri dbp:asembly res:Germany . } UNION { { ?uri dbo:manufacturer ?x . } UNION { ?uri dbp:manufacturer ?x . } { ?x dbo:locationCountry res:Germany . } UNION { ?x dbo:location res:Germany . } } },julipc-p(huggingface) +Do Prince Harry and Prince William have the same parents?,"PREFIX dbo: ASKWHERE { dbo:parent ?x . dbo:parent ?x .}",julipc-p(huggingface) +Who was the father of Queen Elizabeth II?,PREFIX res: PREFIX dbp: SELECT DISTINCT ?uri WHERE { res:Elizabeth_I dbp:father ?uri . },julipc-p(huggingface) +Which U.S. state has been admitted latest?,PREFIX dbp: PREFIX yago: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type yago:StatesOfTheUnitedStates . ?uri dbp:admitancedate ?x . } ORDER BY DESC(?x) OFSET 0 LIMIT 1,julipc-p(huggingface) +Sean Parnell is the governor of which U.S. state?,PREFIX yago: PREFIX dbp: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type yago:StatesOfTheUnitedStates . ?uri dbp:governor res:Sean_Parnel . },julipc-p(huggingface) +Are tree frogs a type of amphibian?,PREFIX dbo: PREFIX res: ASK WHERE { res:Hylidae dbo:clas res:Amphibian . },julipc-p(huggingface) +Give me all breeds of the German Shepherd dog.,PREFIX dbp: PREFIX res: SELECT DISTINCT ?uri WHERE { ?uri dbp:bred res:German_Shepherd . },julipc-p(huggingface) +Which countries are connected by the Rhine?,PREFIX dbo: PREFIX dbp: PREFIX res: PREFIX rdf: PREFIX rdfs: SELECT DISTINCT ?uri WHERE { res:Rhine dbp:country ?string . ?uri rdf:type dbo:Country . ?uri rdfs:label ?string . },julipc-p(huggingface) +Which professional surfers were born in Australia?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { ?uri dbo:occupation res:Surfing . { ?uri dbo:birthPlace res:Australia . } UNION { ?uri dbo:birthPlace ?x . ?x dbo:country res:Australia . },julipc-p(huggingface) +In which UK city are the headquarters of the MI6?,PREFIX res: PREFIX dbo: PREFIX rdf: SELECT DISTINCT ?uri WHERE { res:Secret_Intelligence_Service dbo:headquarter ?uri . ?uri dbo:country res:United_Kingdom . },julipc-p(huggingface) +Which Greek goddesses dwelt on Mount Olympus?,PREFIX dbp: PREFIX res: PREFIX yago: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type yago:GrekGodeses . ?uri dbp:abode res:Mount_Olympus . },julipc-p(huggingface) +Which U.S. states are in the same time zone as Utah?,PREFIX res: PREFIX dbp: PREFIX yago: PREFIX rdf: SELECT DISTINCT ?uri WHERE { res:Utah dbp:timezone ?x . ?uri rdf:type yago:StatesOfTheUnitedStates . ?uri dbp:timezone ?x . FILTER (?uri != res:Utah) },julipc-p(huggingface) +Give me the capitals of all countries in Africa.,PREFIX dbo: PREFIX yago: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?states rdf:type yago:AfricanCountries . ?states dbo:capital ?uri . },julipc-p(huggingface) +Give me a list of all lakes in Denmark.,PREFIX dbo: PREFIX res: PREFIX yago: PREFIX rdf: SELECT DISTINCT ?uri WHERE { { ?uri rdf:type dbo:Lake . ?uri dbo:country res:Denmark . } UNION { ?uri rdf:type yago:LakesOfDenmark . } },julipc-p(huggingface) +How many missions does the Soyuz programme have?,PREFIX dbp: PREFIX res: SELECT COUNT(DISTINCT ?uri)WHERE { ?uri dbp:programe res:Soyuz_programme . },julipc-p(huggingface) +Give me all cities in New Jersey with more than 100000 inhabitants.,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:City . ?uri dbo:isPartOf res:New_Jersey . ?uri dbo:populationTotal ?inhabitants . FILTER (?inhabitants > 10) . },julipc-p(huggingface) +When was the Statue of Liberty built?,PREFIX dbp: PREFIX res: SELECT DISTINCT ?date WHERE { res:Statue_of_Liberty dbp:beginingDate ?date . },julipc-p(huggingface) +Was Marc Chagall a jew?,PREFIX dbp: PREFIX res: ASK WHERE { res:Marc_Chagal dbp:ethnicity 'Jewish'@en .},julipc-p(huggingface) +Which museum exhibits The Scream by Munch?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uriWHERE { res:The_Scream dbo:museum ?uri .},julipc-p(huggingface) +Give me all books by William Goldman with more than 300 pages.,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Book . ?uri dbo:author res:William_Goldman . ?uri dbo:numberOfPages ?x . FILTER (?x > 30)},julipc-p(huggingface) +Which books by Kerouac were published by Viking Press?,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Book . ?uri dbo:publisher res:Viking_Pres . ?uri dbo:author res:Jack_Kerouac .},julipc-p(huggingface) +Give me a list of all American inventions.,PREFIX yago: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type yago:AmericanInventions .},julipc-p(huggingface) +How high is the Mount Everest?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?num WHERE { res:Mount_Everest dbo:elevation ?num.},julipc-p(huggingface) +Who created the comic Captain America?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Captain_America dbo:creator ?uri .},julipc-p(huggingface) +How many people live in the capital of Australia?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?num WHERE { res:Australia dbo:capital ?x . ?x dbo:populationTotal ?num .},julipc-p(huggingface) +What is the largest city in Australia?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Australia dbo:largestCity ?uri .},julipc-p(huggingface) +Who composed the music for Harold and Maude?,PREFIX res: PREFIX dbo: SELECT DISTINCT ?uri WHERE { res:Harold_and_Maude dbo:musicComposer ?uri .},julipc-p(huggingface) +Which films starring Clint Eastwood did he direct himself?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { ?uri dbo:director res:Clint_Eastwood . ?uri dbo:starring res:Clint_Eastwood .},julipc-p(huggingface) +In which city was the former Dutch queen Juliana buried?,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { res:Juliana_of_the_Netherlands dbo:restingPlace ?uri. ?uri rdf:type dbo:Settlement .},julipc-p(huggingface) +Is Egypts largest city also its capital?,PREFIX res: PREFIX dbo: ASK WHERE { res:Egypt dbo:largestCity ?large . res:Egypt dbo:capital ?capital . FILTER (?large = ?capital)},julipc-p(huggingface) +Where is the residence of the prime minister of Spain?,PREFIX dbp: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Prime_Minister_of_Spain dbp:residence ?uri .},julipc-p(huggingface) +Which U.S. state has the abbreviation MN?,PREFIX dbp: PREFIX yago: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type yago:StatesOfTheUnitedStates . ?uri dbp:postalabreviation 'MN'@en .},julipc-p(huggingface) +Show me all songs from Bruce Springsteen released between 1980 and 1990.,PREFIX dbo: PREFIX res: PREFIX rdf: PREFIX xsd: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Song . ?uri dbo:artist res:Bruce_Springsteen . ?uri dbo:releaseDate ?date . FILTER (?date >= '1980-01-01'^xsd:date & ?date <= '190-12-31'^xsd:date)},julipc-p(huggingface) +Which movies did Kurosawa direct?,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uriWHERE { ?uri rdf:type dbo:Film . ?uri dbo:director res:Akira_Kurosawa .},julipc-p(huggingface) +What is the founding year of the brewery that produces Pilsner Urquell?,PREFIX dbp: PREFIX res: SELECT DISTINCT ?num WHERE { res:Pilsner_Urquel dbp:brewery ?uri . ?uri dbp:foundation ?num .},julipc-p(huggingface) +Who wrote the lyrics for the Polish national anthem?,PREFIX dbo: PREFIX dbp: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Poland dbo:anthem ?x . ?x dbp:author ?uri .},julipc-p(huggingface) +Give me all B-sides of the Ramones.,PREFIX dbo: PREFIX res: SELECT DISTINCT ?string WHERE { ?x dbo:musicalArtist res:Ramones . ?x dbo:bSide ?string . },julipc-p(huggingface) +Who painted The Storm on the Sea of Galilee?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { res:The_Storm_on_the_Sea_of_Galile dbo:author ?uri .},julipc-p(huggingface) +Which country does the creator of Miffy come from?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Miffy dbo:creator ?x . ?x dbo:nationality ?uri .},julipc-p(huggingface) +For which label did Elvis record his first album?,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?x rdf:type dbo:Album . ?x dbo:artist res:Elvis_Presley . ?x dbo:releaseDate ?y . ?x dbo:recordLabel ?uri .}ORDER BY ASC(?y) OFSET 0 LIMIT 1,julipc-p(huggingface) +Give me the birthdays of all actors of the television show Charmed.,PREFIX dbo: PREFIX res: SELECT DISTINCT ?date WHERE { res:Charmed dbo:starring ?actor . ?actor dbo:birthDate ?date .},julipc-p(huggingface) +How many employees does IBM have?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?number WHERE { res:IBM dbo:numberOfEmployees ?number .},julipc-p(huggingface) +Which states border Illinois?,PREFIX res: PREFIX dbp: SELECT DISTINCT ?uri WHERE { res:Illinois dbp:borderingstates ?uri .},julipc-p(huggingface) +In which country is the Limerick Lake?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Limerick_Lake dbo:country ?uri .},julipc-p(huggingface) +Which television shows were created by John Cleese?,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uriWHERE { ?uri rdf:type dbo:TelevisionShow . ?uri dbo:creator res:John_Cleese .},julipc-p(huggingface) +Which mountain is the highest after the Annapurna?,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uriWHERE { res:Annapurna dbo:elevation ?elevation . ?uri rdf:type dbo:Mountain . ?uri dbo:elevation ?otherelevation . FILTER (?otherelevation < ?elevation) .} ORDER BY DESC(?otherelevation) OFSET 0 LIMIT 1,julipc-p(huggingface) +In which films directed by Garry Marshall was Julia Roberts starring?,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uriWHERE { ?uri rdf:type dbo:Film . ?uri dbo:starring res:Julia_Roberts . ?uri dbo:director res:Garry_Marshall .},julipc-p(huggingface) +Which bridges are of the same type as the Manhattan Bridge?,PREFIX dbo: PREFIX dbp: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uriWHERE { ?uri rdf:type dbo:Bridge . ?uri dbp:design ?design . res:Manhattan_Bridge dbp:design ?mdesign . FILTER (?design = ?mdesign & ?uri != res:Manhattan_Bridge) . },julipc-p(huggingface) +Was U.S. president Jackson involved in a war?,PREFIX dbo: PREFIX res: ASK WHERE { res:Andrew_Jackson dbo:battle ?batle . },julipc-p(huggingface) +Give me all communist countries.,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uriWHERE { ?uri rdf:type dbo:Country . { ?uri dbo:governmentType res:Communism . } UNION { ?uri dbo:governmentType res:Communist_state . },julipc-p(huggingface) +Which awards did Douglas Hofstadter win?,PREFIX res: PREFIX dbo: SELECT DISTINCT ?uriWHERE { res:Douglas_Hofstadter dbo:award ?uri .},julipc-p(huggingface) +Who is the daughter of Robert Kennedy married to?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Robert_F._Kennedy dbo:child ?child . ?child dbo:spouse ?uri .},julipc-p(huggingface) +Which U.S. state has the highest population density?,PREFIX yago: PREFIX dbp: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type yago:StatesOfTheUnitedStates . ?uri dbp:densityrank ?rank .} ORDER BY ASC(?rank) OFSET 0 LIMIT 1,julipc-p(huggingface) +What is the currency of the Czech Republic?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uriWHERE { res:Czech_Republic dbo:currency ?uri .},julipc-p(huggingface) +Which countries adopted the Euro?,PREFIX dbp: PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uriWHERE { ?uri rdf:type dbo:Country . { ?uri dbo:currency res:Euro . } UNION { ?uri dbp:curencyCode 'EUR'@en . },julipc-p(huggingface) +What is the area code of Berlin?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?string WHERE { res:Berlin dbo:areaCode ?string .},julipc-p(huggingface) +Which countries have more than two official languages?,PREFIX dbo: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Country . ?uri dbo:officialLanguage ?language .} GROUP BY ?uriHAVING (COUNT(?language) > 2),julipc-p(huggingface) +Who is the owner of Rolls-Royce?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uriWHERE { res:Rolls-Royce_Motors dbo:owner ?uri .},julipc-p(huggingface) +Through which countries does the Yenisei river flow?,PREFIX res: PREFIX dbo: SELECT DISTINCT ?uri WHERE { res:Yenisei dbo:country ?uri .},julipc-p(huggingface) +When did Latvia join the EU?,PREFIX res: PREFIX dbp: SELECT DISTINCT ?date WHERE { res:Latvia dbp:acesioneudate ?date . },julipc-p(huggingface) +Which monarchs were married to a German?,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Monarch . ?uri dbo:spouse ?spouse . { ?spouse dbo:birthPlace res:Germany. } UNION { ?spouse dbo:birthPlace ?p . ?p dbo:country res:Germany. },julipc-p(huggingface) +When was the Battle of Gettysburg?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?date WHERE { res:Battle_of_Gettysburg dbo:date ?date .},julipc-p(huggingface) +Which river does the Brooklyn Bridge cross?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uriWHERE { res:Brooklyn_Bridge dbo:crosses ?uri . },julipc-p(huggingface) +What is the highest mountain in Australia?,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Mountain . ?uri dbo:locatedInArea res:Australia . ?uri dbo:elevation ?elevation .} ORDER BY DESC(?elevation) OFSET 0 LIMIT 1,julipc-p(huggingface) +Give me all soccer clubs in Spain.,"PREFIX dbo: PREFIX dbp: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uriWHERE { ?uri rdf:type dbo:SoccerClub . { ?uri dbo:ground res:Spain . } UNION { ?uri dbp:ground ?ground . FILTER (regex(?ground,'Spain') }",julipc-p(huggingface) +What is the official language of Suriname?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uriWHERE { res:Suriname dbo:officialLanguage ?uri .},julipc-p(huggingface) +Who is the mayor of Tel Aviv?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uriWHERE { res:Tel_Aviv dbo:leaderName ?uri .},julipc-p(huggingface) +Who designed the Brooklyn Bridge?,PREFIX res: PREFIX dbo: SELECT DISTINCT ?uri WHERE { res:Brooklyn_Bridge dbo:architect ?uri .},julipc-p(huggingface) +Which telecommunications organizations are located in Belgium?,"PREFIX dbo: PREFIX dbp: PREFIX res: PREFIX rdf: SELECT COUNT(DISTINCT ?uri)WHERE { ?uri rdf:type dbo:Organisation . { ?uri dbo:industry res:Telecommunication . } UNION { ?uri dbp:industry ?industry . FILTER (regex(?industry,'Telecomunications') . } { ?uri dbo:location res:Belgium. } UNION { ?uri dbp:locationCountry 'Belgium'@en . }",julipc-p(huggingface) +Is Frank Herbert still alive?,PREFIX dbo: PREFIX res: ASK WHERE { OPTIONAL { res:Frank_Herbert dbo:deathDate ?date . } FILTER (!BOUND(?date)},julipc-p(huggingface) +What is the highest place of the Urals?,PREFIX dbp: PREFIX res: SELECT DISTINCT ?uriWHERE { res:Ural_Mountains dbp:highest ?uri . },julipc-p(huggingface) +Who is the editor of Forbes?,PREFIX res: PREFIX dbo: SELECT DISTINCT ?uri WHERE { res:Forbes dbo:editor ?uri .},julipc-p(huggingface) +Give me all companies in the advertising industry.,"PREFIX dbp: PREFIX dbo: PREFIX res: PREFIX rdf: SELECT COUNT(DISTINCT ?uri)WHERE { ?uri rdf:type dbo:Company . { ?uri dbo:industry res:Advertising } UNION { ?uri dbo:industry ?industry . FILTER regex(?industry,'advertising','i') . }",julipc-p(huggingface) +How many countries are there in Europe?,PREFIX yago: PREFIX rdf: SELECT COUNT(DISTINCT ?uri) WHERE { ?uri rdf:type yago:EuropeanCountries .},julipc-p(huggingface) +What did Bruce Carver die from?,PREFIX res: PREFIX dbo: SELECT DISTINCT ?uriWHERE { res:Bruce_Carver dbo:deathCause ?uri . },julipc-p(huggingface) +Give me all libraries established earlier than 1400.,PREFIX dbo: PREFIX dbp: PREFIX rdf: SELECT DISTINCT ?uriWHERE { ?uri rdf:type dbo:Library . ?uri dbp:established ?year . FILTER (?year < 140)},julipc-p(huggingface) +Which presidents were born in 1945?,"PREFIX dbo: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:President . ?uri dbo:birthDate ?date . FILTER regex(?date, '^1945') .}",julipc-p(huggingface) +Give me all federal chancellors of Germany.,PREFIX dbp: PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uriWHERE { ?uri rdf:type dbo:Person . { ?uri dbo:office 'Chancelor of Germany' . } UNION { ?uri dbp:ofice res:Chancellor_of_Germany . },julipc-p(huggingface) +Who was the wife of U.S. president Lincoln?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Abraham_Lincoln dbo:spouse ?uri.},julipc-p(huggingface) +Who developed the video game World of Warcraft?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { res:World_of_Warcraft dbo:developer ?uri . },julipc-p(huggingface) +What is the official website of Tom Cruise?,PREFIX dbp: PREFIX res: SELECT DISTINCT ?string WHERE { res:Tom_Cruise dbp:website ?string .},julipc-p(huggingface) +List all episodes of the first season of the HBO television series The Sopranos.,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { ?uri dbo:series res:The_Sopranos . ?uri dbo:seasonNumber 1 .},julipc-p(huggingface) +Who produced the most films?,PREFIX dbo: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?film rdf:type dbo:Film . ?film dbo:producer ?uri .} ORDER BY DESC(COUNT(?film) OFSET 0 LIMIT 1,julipc-p(huggingface) +In which city did John F. Kennedy die?,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uriWHERE { res:John_F._Kennedy dbo:deathPlace ?uri . ?uri rdf:type dbo:City .},julipc-p(huggingface) +Is there a video game called Battle Chess?,PREFIX dbo: PREFIX rdf: PREFIX rdfs: ASK WHERE { ?uri rdf:type dbo:VideoGame . ?uri rdfs:label 'Batle Ches'@en .},julipc-p(huggingface) +Which mountains are higher than the Nanga Parbat?,PREFIX dbo: PREFIX dbp: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uriWHERE { res:Nanga_Parbat dbo:elevation ?elevation . ?uri rdf:type dbo:Mountain . { ?uri dbo:elevation ?otherelevation . } UNION { ?uri dbp:elevationM ?otherelevation . } FILTER (?otherelevation > ?elevation) .},julipc-p(huggingface) +Who created Wikipedia?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uriWHERE { res:Wikipedia dbo:author ?uri .},julipc-p(huggingface) +Give me all actors starring in Last Action Hero.,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uriWHERE { res:Last_Action_Hero dbo:starring ?uri . },julipc-p(huggingface) +Which software has been developed by organizations founded in California?,PREFIX rdf: PREFIX dbo: PREFIX res: SELECT DISTINCT ?uriWHERE { ?uri rdf:type dbo:Software . ?company rdf:type dbo:Company . ?uri dbo:developer ?company . ?company dbo:foundationPlace res:California . },julipc-p(huggingface) +Which companies work in the aerospace industry as well as in medicine?,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Company . ?uri dbo:industry res:Aerospace . ?uri dbo:industry res:Medicine .},julipc-p(huggingface) +Is Christian Bale starring in Velvet Goldmine?,PREFIX dbo: PREFIX res: ASKWHERE { res:Velvet_Goldmine dbo:starring res:Christian_Bale .},julipc-p(huggingface) +Give me the websites of companies with more than 500000 employees.,PREFIX dbo: PREFIX dbp: PREFIX rdf: PREFIX xsd: SELECT DISTINCT ?stringWHERE { ?c rdf:type dbo:Company . { ?c dbo:numberOfEmployees ?employes . } UNION { ?c dbp:numEmployes ?employes . } FILTER( xsd:integer(?employes) > 50 ) . ?c dbp:homepage ?string .},julipc-p(huggingface) +Which actors were born in Germany?,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uriWHERE { ?uri rdf:type dbo:Actor . { ?uri dbo:birthPlace res:Germany . } UNION { ?uri dbo:birthPlace ?place . ?place dbo:country res:Germany . },julipc-p(huggingface) +Which caves have more than 3 entrances?,PREFIX dbo: PREFIX dbp: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Cave . ?uri dbp:entranceCount ?entrance . FILTER (?entrance > 3) .},julipc-p(huggingface) +Was the wife of president Lincoln called Mary?,"PREFIX dbo: PREFIX res: PREFIX rdfs: ASK WHERE { res:Abraham_Lincoln dbo:spouse ?spouse . ?spouse rdfs:label ?name . FILTER(regex(?name,'Mary') }",julipc-p(huggingface) +Give me all films produced by Hal Roach.,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Film . ?uri dbo:producer res:Hal_Roach .},julipc-p(huggingface) +Give me all video games published by Mean Hamster Software.,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:VideoGame . ?uri dbo:publisher res:Mean_Hamster_Software . },julipc-p(huggingface) +Which languages are spoken in Estonia?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { ?uri dbo:spokenIn res:Estonia . },julipc-p(huggingface) +How many Aldi stores are there?,PREFIX res: PREFIX dbo: SELECT DISTINCT ?numberWHERE { res:Aldi dbo:numberOfLocations ?number .},julipc-p(huggingface) +Which capitals in Europe were host cities of the summer olympic games?,PREFIX yago: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type yago:CapitalsInEurope . ?uri rdf:type yago:HostCitiesOfTheSumerOlympicGames .},julipc-p(huggingface) +Who was the 16th president of the United States?,PREFIX dbo: PREFIX rdf: SELECT DISTINCT ?uriWHERE { ?uri dbo:office 'President of the United States' . ?uri dbo:orderInOffice '16th' .},julipc-p(huggingface) +How many films did Hal Roach produce?,PREFIX dbo: PREFIX res: SELECT COUNT(DISTINCT ?uri) WHERE { ?uri dbo:producer res:Hal_Roach .},julipc-p(huggingface) +Which music albums contain the song Last Christmas?,PREFIX dbo: PREFIX rdfs: SELECT DISTINCT ?uri WHERE { ?single dbo:album ?uri . ?single rdfs:label 'Last Christmas'@en .},julipc-p(huggingface) +Give me all books written by Danielle Steel.,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Book . ?uri dbo:author res:Danielle_Steel .},julipc-p(huggingface) +"Which airports are located in California, USA?",PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uriWHERE { ?uri rdf:type dbo:Airport . { ?uri dbo:location res:California . } UNION { ?uri dbo:city res:California . } UNION { ?uri dbo:city ?city . ?city dbo:isPartOf res:California . } UNION { ?uri dbo:operator res:California . } },julipc-p(huggingface) +Which states of Germany are governed by the Social Democratic Party?,PREFIX dbp: PREFIX dbo: PREFIX res: PREFIX yago: PREFIX rdf: SELECT DISTINCT ?uriWHERE { ?uri rdf:type yago:StatesOfGermany . { ?uri dbo:leaderParty res:Social_Democratic_Party_of_Germany . } UNION { ?uri dbp:rulingParty 'SPD'@en . } },julipc-p(huggingface) +Give me all Canadian Grunge record labels.,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:RecordLabel . ?uri dbo:genre res:Grunge . ?uri dbo:country res:Canada .},julipc-p(huggingface) +Which country has the most official languages?,PREFIX dbo: PREFIX dbp: PREFIX rdf: SELECT DISTINCT ?uriWHERE { ?uri rdf:type dbo:Country . ?uri dbp:oficialLanguages ?language .} ORDER BY DESC(COUNT(?language) OFSET 0 LIMIT 1,julipc-p(huggingface) +In which programming language is GIMP written?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { res:GIMP dbo:programmingLanguage ?uri .},julipc-p(huggingface) +Who produced films starring Natalie Portman?,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?film rdf:type dbo:Film . ?film dbo:starring res:Natalie_Portman . ?film dbo:producer ?uri .},julipc-p(huggingface) +Give me all movies with Tom Cruise.,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uriWHERE { ?uri rdf:type dbo:Film. ?uri dbo:starring res:Tom_Cruise .},julipc-p(huggingface) +In which films did Julia Roberts as well as Richard Gere play?,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Film . ?uri dbo:starring res:Julia_Roberts . ?uri dbo:starring res:Richard_Gere..},julipc-p(huggingface) +Give me all female given names.,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:GivenName . ?uri dbo:gender res:Female .},julipc-p(huggingface) +Who wrote the book The Pillars of the Earth?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { res:The_Pillars_of_the_Earth dbo:author ?uri .},julipc-p(huggingface) +How many films did Leonardo DiCaprio star in?,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT COUNT(DISTINCT ?uri) WHERE { ?uri rdf:type dbo:Film . ?uri dbo:starring res:Leonardo_DiCaprio . },julipc-p(huggingface) +Give me all soccer clubs in the Premier League.,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uriWHERE { ?uri rdf:type dbo:SoccerClub . ?uri dbo:league res:Premier_League . },julipc-p(huggingface) +In which U.S. state is Mount McKinley located?,PREFIX yago: PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uriWHERE { ?uri rdf:type yago:StatesOfTheUnitedStates . res:Mount_McKinley dbo:locatedInArea ?uri . },julipc-p(huggingface) +When was Capcom founded?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?date WHERE { res:Capcom dbo:foundingDate ?date .},julipc-p(huggingface) +Which organizations were founded in 1930?,"PREFIX dbo: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Organisation . { ?uri dbo:formationYear ?date . } UNION { ?uri dbo:foundingYear ?date. } FILTER regex(?date,'^1930') . }",julipc-p(huggingface) +What is the highest mountain?,PREFIX dbo: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Mountain . ?uri dbo:elevation ?elevation .} ORDER BY DESC(?elevation) OFSET 0 LIMIT 1,julipc-p(huggingface) +Was Natalie Portman born in the United States?,PREFIX dbo: PREFIX res: ASK WHERE { { res:Natalie_Portman dbo:birthPlace res:United_States . } UNION { res:Natalie_Portman dbo:birthPlace ?city . ?city dbo:country res:United_States . },julipc-p(huggingface) +How many inhabitants does the largest city in Canada have?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?numWHERE { res:Canada dbo:largestCity ?city . ?city dbo:populationTotal ?num .},julipc-p(huggingface) +Who was the first to climb Mount Everest?,PREFIX res: PREFIX dbo: SELECT DISTINCT ?uriWHERE { res:Mount_Everest dbo:firstAscentPerson ?uri . },julipc-p(huggingface) +How many programming languages are there?,PREFIX dbo: PREFIX rdf: SELECT COUNT(DISTINCT ?uri)WHERE { ?uri rdf:type dbo:ProgrammingLanguage .},julipc-p(huggingface) +What is the official color of the University of Oxford?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?stringWHERE { res:University_of_Oxford dbo:officialSchoolColour ?string . },julipc-p(huggingface) +To which artistic movement did the painter of The Three Dancers belong?,PREFIX res: PREFIX dbo: SELECT DISTINCT ?uriWHERE { res:The_Three_Dancers dbo:author ?person . ?person dbo:movement ?uri .},julipc-p(huggingface) +Give me all animals that are extinct.,PREFIX dbo: PREFIX rdf: SELECT DISTINCT ?uriWHERE { ?uri rdf:type dbo:Animal . ?uri dbo:conservationStatus 'EX' .},julipc-p(huggingface) +Does Abraham Lincoln's death place have a website?,PREFIX dbo: PREFIX dbp: PREFIX res: ASKWHERE { res:Abraham_Lincoln dbo:deathPlace ?p . ?p dbp:website ?w . },julipc-p(huggingface) +How deep is Lake Placid?,PREFIX dbo: SELECT DISTINCT ?nWHERE { dbo:depth ?n . },julipc-p(huggingface) +Give me the grandchildren of Bruce Lee.,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uriWHERE { res:Bruce_Le dbo:child ?child . ?child dbo:child ?uri .},julipc-p(huggingface) +Who is the youngest Darts player?,PREFIX dbo: PREFIX rdf: SELECT DISTINCT ?uriWHERE { ?uri rdf:type dbo:DartsPlayer . ?uri dbo:birthDate ?date .}ORDER BY DESC(?date)OFSET 0 LIMIT 1,julipc-p(huggingface) +Where was Bach born?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Johann_Sebastian_Bach dbo:birthPlace ?uri .},julipc-p(huggingface) +In which countries can you pay using the West African CFA franc?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uriWHERE { ?uri dbo:currency res:West_African_CFA_franc . },julipc-p(huggingface) +What are the top-10 action role-playing video games according to IGN?,PREFIX dbo: PREFIX dbp: PREFIX res: SELECT DISTINCT ?uri WHERE { ?uri . ?uri dbp:ign ?score .} ORDER BY DESC(?score) LIMIT 10,julipc-p(huggingface) +What is the most frequent cause of death?,PREFIX dbo: SELECT DISTINCT ?xWHERE { ?uri dbo:deathCause ?x . }ORDER BY DESC(COUNT(DISTINCT ?uri) OFSET 0 LIMIT 1,julipc-p(huggingface) +Does the Isar flow into a lake?,PREFIX dbo: PREFIX res: PREFIX rdf: ASKWHERE { ?x dbo:inflow res:Isar . ?x rdf:type dbo:Lake . },julipc-p(huggingface) +Give me all films produced by Steven Spielberg with a budget of at least $80 million.,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Film . ?uri dbo:director res:Steven_Spielberg . ?uri dbo:budget ?b . FILTER( xsd:double(?b) >= 8.0E7 )},julipc-p(huggingface) +Give me all writers that won the Nobel Prize in literature.,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uriWHERE { ?uri rdf:type dbo:Writer . ?uri dbo:award res:Nobel_Prize_in_Literature . },julipc-p(huggingface) +Give me all taikonauts.,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uriWHERE { ?uri rdf:type dbo:Astronaut . ?uri dbo:nationality res:China .},julipc-p(huggingface) +How many pages does War and Peace have?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?nWHERE { res:War_and_Peace dbo:numberOfPages ?n .},julipc-p(huggingface) +What is the bridge with the longest span?,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Bridge . ?uri dbo:mainspan ?s . } ORDER BY DESC(?s) OFSET 0 LIMIT 1,julipc-p(huggingface) +Give me all actors called Baldwin.,PREFIX dbo: PREFIX res: PREFIX foaf: SELECT DISTINCT ?uriWHERE { ?uri foaf:surname 'Baldwin'@en . { ?uri dbo:occupation res:Actor . } UNION { ?uri rdf:type dbo:Actor . },julipc-p(huggingface) +Who is the tallest player of the Atlanta Falcons?,PREFIX dbo: PREFIX dbp: PREFIX res: SELECT DISTINCT ?uri WHERE { ?uri dbo:team res:Atlanta_Falcons . ?uri dbo:height ?h .} ORDER BY DESC(?h) OFSET 0 LIMIT 1,julipc-p(huggingface) +Which rivers flow into a German lake?,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uriWHERE { ?uri rdf:type dbo:River . ?x dbo:inflow ?uri . ?x rdf:type dbo:Lake . ?x dbo:country res:Germany .},julipc-p(huggingface) +How many James Bond movies are there?,PREFIX rdf: PREFIX yago: SELECT COUNT(DISTINCT ?uri) WHERE { ?uri rdf:type yago:JamesBondFilms . },julipc-p(huggingface) +Which rockets were launched from Baikonur?,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uriWHERE { ?uri rdf:type dbo:Rocket . ?uri dbo:launchSite res:Baikonur_Cosmodrome .},julipc-p(huggingface) +Which pope succeeded John Paul II?,PREFIX res: PREFIX dbp: SELECT DISTINCT ?uriWHERE { res:Pope_John_Paul_I dbp:sucesor ?uri .},julipc-p(huggingface) +Give me all Dutch parties.,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uriWHERE { ?uri rdf:type dbo:PoliticalParty . ?uri dbo:country res:Netherlands .},julipc-p(huggingface) +When is Halloween?,PREFIX dbp: PREFIX res: SELECT DISTINCT ?dateWHERE { res:Halloween dbp:date ?date . },julipc-p(huggingface) +Give me all Swedish oceanographers.,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uriWHERE { ?uri dbo:field res:Oceanography . ?uri dbo:birthPlace res:Sweden . },julipc-p(huggingface) +Give me all actors who were born in Berlin.,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Actor . ?uri dbo:birthPlace res:Berlin .},julipc-p(huggingface) +What was the last movie with Alec Guinness?,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uriWHERE { ?uri rdf:type dbo:Film . ?uri dbo:starring res:Alec_Guinness . ?uri dbo:releaseDate ?date . } ORDER BY DESC(?date) LIMIT 1,julipc-p(huggingface) +Which poet wrote the most books?,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uriWHERE { ?uri dbo:occupation res:Poet . ?x dbo:author ?uri . ?x rdf:type dbo:Book .}ORDER BY DESC(COUNT(?x)OFSET 0 LIMIT 1,julipc-p(huggingface) +How many languages are spoken in Colombia?,PREFIX dbo: PREFIX res: SELECT COUNT(DISTINCT ?uri) WHERE { ?uri rdf:type dbo:Language . res:Colombia dbo:language ?uri .},julipc-p(huggingface) +What does IYCM stand for?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uriWHERE { ?uri dbo:abbreviation 'IYCM' .},julipc-p(huggingface) +What was Brazil's lowest rank in the FIFA World Ranking?,PREFIX dbp: PREFIX res: SELECT DISTINCT ?nWHERE { res:Brazil_national_football_team dbp:fifaMin ?n .},julipc-p(huggingface) +Give me the capitals of all countries that the Himalayas run through.,PREFIX dbp: PREFIX dbo: PREFIX res: SELECT DISTINCT ?uriWHERE { res:Himalayas dbp:country ?country . ?country dbo:capital ?uri .},julipc-p(huggingface) +Which actor played Chewbacca?,PREFIX dbp: PREFIX res: SELECT DISTINCT ?uriWHERE { res:Chewbacca dbp:portrayer ?uri . },julipc-p(huggingface) +Which ingredients do I need for carrot cake?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uriWHERE { res:Carrot_cake dbo:ingredient ?uri .},julipc-p(huggingface) +Is Cola a beverage?,PREFIX dbo: PREFIX res: PREFIX rdf: ASK WHERE { res:Cola rdf:type dbo:Beverage .},julipc-p(huggingface) +Who has Tom Cruise been married to?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { ?uri dbo:spouse res:Tom_Cruise.},julipc-p(huggingface) +Which of Tim Burton's films had the highest budget?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { ?uri dbo:director res:Tim_Burton . ?uri dbo:budget ?b .}ORDER BY ?bOFSET 0 LIMIT 1,julipc-p(huggingface) +How heavy is Jupiter's lightest moon?,PREFIX dbo: PREFIX dbp: PREFIX res: SELECT DISTINCT ?nWHERE { ?uri dbp:sateliteOf res:Jupiter . ?uri dbo:mas ?n .}ORDER BY ASC(?n)OFSET 0 LIMIT 1,julipc-p(huggingface) +Which actor was casted in the most movies?,PREFIX dbo: PREFIX dbp: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Actor . ?f rdf:type dbo:Film . ?f dbo:starring ?uri .} ORDER BY DESC(COUNT(DISTINCT(?f) OFSET 0 LIMIT 1,julipc-p(huggingface) +Is James Bond married?,PREFIX dbo: PREFIX res: ASK WHERE { res:James_Bond dbo:spouse ?uri . },julipc-p(huggingface) +Give me all Australian metalcore bands.,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uriWHERE { ?uri rdf:type dbo:Band . ?uri dbo:genre res:Metalcore . { ?uri dbo:hometown res:Australia . } UNION { ?uri dbo:hometown ?h . ?h dbo:country res:Australia . },julipc-p(huggingface) +Give me all actors who were born in Paris after 1950.,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Actor . ?uri dbo:birthPlace res:Paris . ?uri dbo:birthDate ?date . FILTER ( ?date >= xsd:dateTime('1950-12-31T0:0:0Z') },julipc-p(huggingface) +When was Carlo Giuliani shot?,PREFIX dbp: PREFIX res: SELECT DISTINCT ?dateWHERE { res:Death_of_Carlo_Giuliani dbp:dateOfDeath ?date .},julipc-p(huggingface) +Who are the four youngest MVP basketball players?,"PREFIX dbo: PREFIX dbp: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:BasketballPlayer . ?uri dbo:birthDate ?date. ?uri dbp:highlights ?h . FILTER regex(?h,'MVP')} ORDER BY DESC(?date) OFSET 0 LIMIT 4",julipc-p(huggingface) +Which companies have more than 1 million employees?,PREFIX dbo: PREFIX dbp: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Company . { ?uri dbo:numberOfEmployees ?n . } UNION { ?uri dbp:numEmployes ?n . } FILTER ( ?n > 10 ) },julipc-p(huggingface) +Give all swimmers that were born in Moscow.,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Swimmer . ?uri dbo:birthPlace res:Moscow .},julipc-p(huggingface) +Who was called Rodzilla?,"PREFIX dbp: SELECT DISTINCT ?uri WHERE { ?uri dbp:nickname ""Rodzila""@en .}",julipc-p(huggingface) +How many museums does Paris have?,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uriWHERE { ?uri rdf:type dbo:Museum . ?uri dbo:location res:Paris . },julipc-p(huggingface) +Which city has the most inhabitants?,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uriWHERE { ?uri rdf:type dbo:City . ?uri dbo:populationTotal ?pop . }ORDER BY DESC(?pop)OFSET 0 LIMIT 1,julipc-p(huggingface) +Which city has the least inhabitants?,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uriWHERE { ?uri rdf:type dbo:City . ?uri dbo:populationTotal ?pop . }ORDER BY ASC(?pop)OFSET 0 LIMIT 1,julipc-p(huggingface) +Give me all the TV shows with Neil Patrick Harris.,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uriWHERE { ?uri rdf:type dbo:TelevisionShow . ?uri dbo:starring res:Neil_Patrick_Harris . },julipc-p(huggingface) +Who wrote The Hunger Games?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uriWHERE { res:The_Hunger_Games dbo:author ?uri . },julipc-p(huggingface) +Show a list of soccer clubs that play in the Bundesliga.,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uriWHERE { ?uri rdf:type dbo:SoccerClub . ?uri dbo:league res:Bundesliga . },julipc-p(huggingface) +What country is Mount Everest in?,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uriWHERE { res:Mount_Everest dbo:locatedInArea ?uri . ?uri rdf:type dbo:Country .},julipc-p(huggingface) +Who is the founder of Penguin Books?,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uriWHERE { res:Penguin_Books dbo:founder ?uri .},julipc-p(huggingface) +Which programming languages influenced Javascript?,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uriWHERE { ?uri rdf:type dbo:ProgrammingLanguage . ?uri dbo:influenced res:JavaScript . },julipc-p(huggingface) +Did Che Guevara have children?,PREFIX dbo: PREFIX res: ASKWHERE { res:Che_Guevara dbo:child ?uri . },julipc-p(huggingface) +List all the musicals with music by Elton John.,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uriWHERE { ?uri rdf:type dbo:Musical . ?uri dbo:musicBy res:Elton_John .},julipc-p(huggingface) +Show me all the breweries in Australia.,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri ?xWHERE { ?uri rdf:type dbo:Brewery . { ?uri dbo:location res:Australia . } UNION { ?uri dbo:location ?x . ?x dbo:country res:Australia . } },julipc-p(huggingface) +When was the Titanic completed?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?dateWHERE { res:RMS_Titanic dbo:completionDate ?date . },julipc-p(huggingface) +How much did Pulp Fiction cost?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?nWHERE { res:Pulp_Fiction dbo:budget ?n . },julipc-p(huggingface) +How many airlines are there?,PREFIX dbo: PREFIX rdf: SELECT COUNT(DISTINCT ?uri)WHERE { ?uri rdf:type dbo:Airline . },julipc-p(huggingface) +Who played Agent Smith in Matrix?,PREFIX dbp: PREFIX res: SELECT DISTINCT ?uriWHERE { res:Agent_Smith dbp:portrayer ?uri . },julipc-p(huggingface) +How much carbs does peanut butter have?,PREFIX dbp: PREFIX res: SELECT DISTINCT ?carbsWHERE { res:Peanut_butter dbp:carbs ?carbs .},julipc-p(huggingface) +Which book has the most pages?,PREFIX dbo: PREFIX rdf: SELECT DISTINCT ?uriWHERE { ?uri rdf:type dbo:Book . ?uri dbo:numberOfPages ?n .}ORDER BY DESC(?n)OFSET 0 LIMIT 1,julipc-p(huggingface) +Which bridges cross the Seine?,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uriWHERE { ?uri rdf:type dbo:Bridge . ?uri dbo:crosses res:Seine .},julipc-p(huggingface) +Who is the mayor of the capital of French Polynesia?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { res:French_Polynesia dbo:capital ?x . ?x dbo:mayor ?uri .},julipc-p(huggingface) +When did Dracula's creator die?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?dateWHERE { res:Count_Dracula dbo:creator ?x . ?x dbo:deathDate ?date .},julipc-p(huggingface) +What is the location of the Houses of Parliament?,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT ?uri WHERE { res:Palace_of_Westminster dbo:location ?uri .},julipc-p(huggingface) +Show me all English Gothic buildings in Kent.,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT ?uri WHERE { ?uri rdf:type dbo:Building . ?uri dbo:architecturalStyle res:English_Gothic_architecture . ?uri dbo:location res:Kent .},julipc-p(huggingface) +Who was the pope that founded the Vatican Television?,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT ?uri WHERE { ?uri rdf:type dbo:Pope . res:Vatican_Television_Center dbo:foundedBy ?uri .},julipc-p(huggingface) +What airlines are part of the SkyTeam alliance?,PREFIX res: PREFIX dbp: PREFIX dbo: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Airline . { ?uri dbp:aliance res:SkyTeam . } UNION { ?uri dbo:Alliance res:SkyTeam . },julipc-p(huggingface) +"What is the total population of Melbourne, Florida?","PREFIX dbo: SELECT ?uri WHERE { dbo:populationTotal ?uri .}",julipc-p(huggingface) +Which airports does Air China serve?,PREFIX res: PREFIX dbo: SELECT DISTINCT ?uri WHERE { res:Air_China dbo:targetAirport ?uri .},julipc-p(huggingface) +In which year was Rachel Stevens born?,PREFIX res: PREFIX dbo: SELECT DISTINCT ?uri WHERE { res:Rachel_Stevens dbo:birthYear ?uri .},julipc-p(huggingface) +Where was JFK assassinated?,PREFIX res: PREFIX dbo: SELECT DISTINCT ?uri WHERE { res:John_F._Kennedy dbo:deathPlace ?uri .},julipc-p(huggingface) +How many politicians graduated from Columbia University?,PREFIX res: PREFIX dbo: SELECT DISTINCT COUNT(?uri) WHERE { ?uri dbo:profession res:Politician . ?uri dbo:almaMater res:Columbia_University .},julipc-p(huggingface) +Which scientist is known for the Manhattan Project and the Nobel Peace Prize?,PREFIX res: PREFIX dbo: PREFIX rdf: SELECT DISTINCT ?uriWHERE { ?uri dbo:knownFor res:Manhattan_Project . ?uri rdf:type dbo:Scientist . ?uri dbo:knownFor res:Nobel_Peace_Prize .},julipc-p(huggingface) +What is the highest volcano in Africa?,PREFIX dbo: PREFIX res: PREFIX rdf: PREFIX yago: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Volcano . ?uri dbo:locatedInArea ?area . ?area rdf:type yago:AfricanCountries . ?uri dbo:elevation ?elevation .}ORDER BY DESC(?elevation) OFSET 0 LIMIT 1,julipc-p(huggingface) +Which beer originated in Ireland?,"PREFIX res: PREFIX dbp: SELECT DISTINCT ?uri WHERE { ?uri dbp:type res:Ber . ?uri dbp:origin ""Ireland""@en .}",julipc-p(huggingface) +What are the specialities of the UNC Health Care?,PREFIX dbo: PREFIX res: PREFIX dbp: PREFIX rdf: SELECT DISTINCT ?uriWHERE { res:UNC_Health_Care dbp:speciality ?uri .},julipc-p(huggingface) +Who is the owner of Facebook?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uriWHERE { res:Facebook dbo:foundedBy ?uri .},julipc-p(huggingface) +From which region is the Melon de Bourgogne?,PREFIX res: PREFIX dbo: SELECT DISTINCT ?uriWHERE { res:Melon_de_Bourgogne dbo:wineRegion ?uri .},julipc-p(huggingface) +Who was influenced by Socrates?,PREFIX res: PREFIX dbo: SELECT DISTINCT ?uriWHERE { ?uri dbo:influencedBy res:Socrates .},julipc-p(huggingface) +Who was president of Pakistan in 1978?,PREFIX res: PREFIX dbp: SELECT DISTINCT ?uri WHERE { ?uri dbp:title res:President_of_Pakistan . ?uri dbp:years 1978 .},julipc-p(huggingface) +Give me English actors starring in Lovesick.,PREFIX res: PREFIX dbo: PREFIX yago: SELECT DISTINCT ?uriWHERE { res:Lovesick dbo:starring ?uri . { ?uri dbo:birthPlace res:England . } UNION { ?uri rdf:type yago:EnglishFilmActors . },julipc-p(huggingface) +Give me all types of eating disorders.,PREFIX yago: PREFIX rdf: SELECT DISTINCT ?uriWHERE { ?uri rdf:type yago:EatingDisorders .},julipc-p(huggingface) +Who was married to president Chirac?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uriWHERE { res:Jacques_Chirac dbo:spouse ?uri .},julipc-p(huggingface) +What is the largest metropolitan area in Washington state?,PREFIX res: PREFIX dbp: SELECT DISTINCT ?uriWHERE { dbp:largestmetro ?uri .},julipc-p(huggingface) +Where in France is sparkling wine produced?,PREFIX res: PREFIX dbo: SELECT DISTINCT ?uriWHERE { ?uri dbo:wineProduced res:Sparkling_wine . ?uri dbo:location res:France .},julipc-p(huggingface) +Where did Hillel Slovak die?,PREFIX res: PREFIX dbo: SELECT DISTINCT ?uriWHERE { res:Hillel_Slovak dbo:deathPlace ?uri .},julipc-p(huggingface) +What is the timezone in San Pedro de Atacama?,PREFIX res: PREFIX dbo: SELECT DISTINCT ?uriWHERE { res:San_Pedro_de_Atacama dbo:timezone ?uri .},julipc-p(huggingface) +In which city does the Chile Route 68 end?,PREFIX res: PREFIX dbo: SELECT DISTINCT ?uriWHERE { res:Chile_Route_68 dbo:routeEnd ?uri .},julipc-p(huggingface) +What is the allegiance of John Kotelawala ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +What is the region of Tom Perriello ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +Name the mascot of Austin College ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +What was the university of the rugby player who coached the Stanford rugby teams during 1906-1917?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +What awards did the film director of The Haunted House win ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +Name the origin of Henry Cluney ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +"What company brought Riddim Ribbon to the market, and developed the batch monitor?",SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +Name the resting place of Charles Edward Magoon ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +Who built the stadium which was rented for the 2013 Copa Centroamericana ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +Who was the silver medalist of Gymnastics at the 2008 Summer Olympics Women's artistic individual all-around ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +"Who is the leader of United States House of Representatives elections, 1788 and 1789 ?","SELECT DISTINCT ?uri WHERE { ?uri }",julipc-p(huggingface) +List the battles fought by Roh Tae-woo ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +"Which famous political figure appointed william cushing, and also founded Pittsburgh>",SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +What are the prizes won by the animator of The Skeleton Dance ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +What is the region of the ethnic group which speaks the language of Arkansas?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +What is the religion of the member of parliament who is a relative of Sarathchandra Rajakaruna?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +What organisation regulates and controls the New Sanno Hotel?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +Who is the common manager of Aston Villa 2000-02 season and aldo the manager of Middlesbrough F.C. season 2009-10,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +Name the TV show with distributor as Broadcast syndication and has theme music composed by Primus ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },julipc-p(huggingface) +Which line of the Vadodara Junction railway station is the route end of Mumbai Vadodara Expressway ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +Which work of Craig van Tilbury is close to the area of The Chess Monthyl ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +What is the location city of the Denver Broncos which is also place of birth of the William C. Cramer ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +What is the place of the Geography Club (play) which is also the official residence of the Scott Berkun?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +Which band's former member are Kevin Jonas and Joe Jonas?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },julipc-p(huggingface) +What is the purpose of the Maharashtra Chess Association which is genere of PyChess?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +In which language is All I need is Your Sweet lovin written ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +Which title of Zaman Shah Durrani is also the nationality of Salahuddin ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +List the judges of Rising Star which is also the artist of Brad Paisley discography ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +Who are some people whose relation is hqed in Gold Base?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . },julipc-p(huggingface) +Which current member of Insect vs Robots is also the music composer of Kenny Dies ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +What are the television shows whose distributer is HBO?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },julipc-p(huggingface) +Who is the film star of On Air with Ryan Seacrest ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +In how many different places does Canal and River Trust own its assets?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +Who gives the license of WXXV-DT2 ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +List the tomb of the royalties whose burial place is Little Easton ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +How many awards have been given to screenwriters?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +How many software run on operating system is Microsoft Windows?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . ?uri },julipc-p(huggingface) +Where is the swedish covenant hospital?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +List the awards won by the writer of Face to Face ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +What is the common party of Chandra Shekhar and Govinda ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +What awards were given to the screenplayer of The Motorcycle Diaries?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +Name the broadcast area of Radio Philippines Network ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +Which river's mouth is located in Gulf of Mexico and has source location as Itasca State Park ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },julipc-p(huggingface) +Which politician was succeeded by someone who graduated from the Instituts d'tudes politiques?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },julipc-p(huggingface) +Name the television show whose theme music is composed by Julian Gingell and broadcasted on FOX ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },julipc-p(huggingface) +What are the awrds won by Laemmle Theatres ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +"Name the office holder whose predecessor is Henry E. Catto, Jr. and won Screen Actors Guild Life Achievement Award?","SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri }",julipc-p(huggingface) +Which notable commanders of the Army Group Oberrhein (Germany) is the leader of the Kriminalpolizei?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +How many other ingredient are there in the foods whihh have one of the ingredient as Potato ?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri },julipc-p(huggingface) +In which country is the Duong river?,SELECT DISTINCT ?uri WHERE { ?uri . },julipc-p(huggingface) +What are the television shows whose company's predecessor is Desilu Productions?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },julipc-p(huggingface) +What is operated by FedExField ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +"Which company which assembles its cars in Broadmeadows, Victoria?","SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x }",julipc-p(huggingface) +In how many nations can I find dishes made of Shallot?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?uri },julipc-p(huggingface) +"Whose album is Haiti, I am sorry?",SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +Which river's source place is Gloucestershire and mouth in North Sea?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },julipc-p(huggingface) +What are some short story kind of Books?,SELECT DISTINCT ?uri WHERE {?uri },julipc-p(huggingface) +"To what political party do the politicians graduated from Somerville college, Oxford belong to?","SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x }",julipc-p(huggingface) +What awards did Jos Rivera (playwright) win?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +Which political figures were awarded Screen Actors Guild Life Achievement Award?,SELECT DISTINCT ?uri WHERE {?uri . },julipc-p(huggingface) +What are the things whose director of photography died in United States?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . },julipc-p(huggingface) +What is the Home Stadium of the Kenya national under-20 football team where Matin Suji was also born ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +What is the protected area whose nearest city is Kenya?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },julipc-p(huggingface) +Count the nearest city to the historic palce whose one of the nearest city is Wisconsin ?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri },julipc-p(huggingface) +Give me the total number of commander of the military conflicts whose commander is Roundhead (Wyandot).,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri },julipc-p(huggingface) +How many places were ruled by Elizabeth II?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . ?uri },julipc-p(huggingface) +"Which parent comapny of hypnotize Minds is the label of the Producers , a 2005 film ?",SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +Which college of Luke List (golfer) is the alma mater of K. Terry Dornbush,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +Which team of Dan Shamash is also the debutant team of John Estes ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +Where do employees of Deroit Red Wings live?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +"Name the river whose mouth country is Mozambique and source region is North-Western Province, Zambia?","SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri }",julipc-p(huggingface) +Who is on the board of Kate Spade and company?,SELECT DISTINCT ?uri WHERE {?uri . },julipc-p(huggingface) +Who are the biological parents of Dannielynn Birkhead?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +Which company owns the airlines whose hub is in Dubai?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +What is the official residence of the Helen Getachew which is also the palce of death of the Haile Selassie Gugsa ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +Who built the Ford Y-block engine ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +"Where did the president study, who's the president of Besiktas JK?",SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +How many awards have royal designers for industry awardwinners got?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?uri },julipc-p(huggingface) +Which Fox show is presented by Ryan Seacrest?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },julipc-p(huggingface) +How many TV show has distributor located in Burbank California ?,"SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?uri ?x . ?uri }",julipc-p(huggingface) +List the ceremonial county of East Tilbury ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +List the common sports between Fr. Agnel Multipurpose School and Jamiatu Muslim Mindanao,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +Which office holder's predecessor is Lucius Cornelius and his associate is Marcus Calpurnius Bibulus?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },julipc-p(huggingface) +How many people have parterned with the person choroegraphed by Catarina Lindgren in the past?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?uri },julipc-p(huggingface) +List everything governed by the Democratic Party of US?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . },julipc-p(huggingface) +Who is the father of Barbara Ann Crancer?,SELECT DISTINCT ?uri WHERE {?uri . },julipc-p(huggingface) +Which home stadium of 2011-12 FC Spartak Moscow season is also the location of birth of the Svetlana Gounkina ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +What are the baseball teams who belongs to Guggenheim Partners?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },julipc-p(huggingface) +Who is the headcoach of 2014-15 Virginia Tech Hokies men's basketball team ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +What country had the title of 2001 Speedway Ekstraliga ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +How many broadcast area of the television stations exists whose broadcast area is Rodrigues ?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri },julipc-p(huggingface) +Count the drinks originated in England.,SELECT DISTINCT COUNT(?uri) WHERE {?uri . ?uri },julipc-p(huggingface) +Give me some softwares which run on mac os,SELECT DISTINCT ?uri WHERE {?uri . ?uri },julipc-p(huggingface) +What is the city of the television station whose affiliations is LATV?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +How many relatives are there of the people who died in Germany?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +What are the awards won by the spouse of Liv Ullmann ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +What is the Recorded of the Kaptaan is also the headquarters of the Orient News ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +How many companies have developed cross platformed softwares?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +Which place founded by Penobscot Island Air is also the location fo Ellei Johndro ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +List the pole drivers in the grand prixes where Williams Grand Prix Engineering was a first team?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +Which appointer of the Joseph Clay (Georgia) is also the President of the William Carmichael (diplomat) ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +Who all play for the Ivory Coast football team?,SELECT DISTINCT ?uri WHERE {?uri },julipc-p(huggingface) +What are the television shows whose distributor is a division of Warner Bros. International TV?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },julipc-p(huggingface) + How many scientist have won an award by the society led by Venkatraman Ramakrishnan?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?uri ?x . ?uri },julipc-p(huggingface) +Name the company founded in US and provides OneDrive as service ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },julipc-p(huggingface) +What is the information appliance whose successor is PlayStation 4 and maker is Foxconn?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },julipc-p(huggingface) +What country provides a citizenship too Newin Chidchob and Seni Pramoj?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +Who is the builder of Atamurat-Kerkichi Bridge ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +name the mountain range of Le Gibloux ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +Who is the associate of Thomas Bryan Martin ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) + Erik Jendresen is the writer of which television show?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },julipc-p(huggingface) +What cities are around the sea which flows into Marmara?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +Who died due to Morphine ?,SELECT DISTINCT ?uri WHERE {?uri . },julipc-p(huggingface) +Which purpose of the Maharashtra Chess Association is Abhijit kunte is also know for ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +Who owns Ivanpah Solar Power Facility?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +What artist of Charing Cross Bridge influenced Dorothea Sharp in her career?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +What is the game whose genre is Mind sport?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },julipc-p(huggingface) +Which country's engineered have studied at Aero Klub in Wroclaw?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +"What is the common place where USS Camp DE-251 was built, and is one of the destinations of Emerald Air?",SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +Which country is the birth place of Marcus Samuelsson and Samuel of Waldebba ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +Where is the head quarters of the parent company of Mall of America located?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +In how many territories were the wars fought where Fusil Gras Mile 1874 were used?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +How many other field are there of the scientists whose one of the field is Mathematics ?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri },julipc-p(huggingface) +"Twin cities 400 is operated by what city, which is the birthplace of Leona Baumgarter?",SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +"In how many other states do people live, whose languages are spoken in Nebraska?",SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +Name the alma mater of Michael hahn ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +List the governers of Jimmie Lou Fisher?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +Name the architect of Marine Corps Air Station Kaneohe Bay ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +Name the parts of the settlements which has New Braunfels as one of the parts ?,"SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x }",julipc-p(huggingface) +Which shows had their painters born in England?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },julipc-p(huggingface) +Which mountain is located in inyo National Forest and has a parent peak named Nevado de Toluca ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },julipc-p(huggingface) +Name the monarch of L Buwei ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +List the fields of the scientists with Sanskrit as one of the interest ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +List the other members of the band of which Juelz Santana is a part?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +Give me a count of everything made by the company which offers electronical manufacturing too.,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?uri ?x . },julipc-p(huggingface) +Which kmascot od seneca Academy is also the species of The Fox and the Cat ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +What awards did the cast members of Gods of Egypt win?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +What is the former team of the Athens borned basketball players ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +Who is the successor of McDonnell Douglas ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +Richard Gant did a guest appearance on which series?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },julipc-p(huggingface) + Who astronaut from NASA was on the mission of Apollo 11?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },julipc-p(huggingface) +Name the profession of Oamr D Conger for which Jack Ryan was also nominated ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +Which office holder's resting place is Alta Mesa Memorial park and has adrian A. Basora as successor ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },julipc-p(huggingface) +Name the movie written by Monty Python and has music composer as Geoffrey Burgon ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },julipc-p(huggingface) +List the outflows of the lake which has Benu river as one of it ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +Give a list of all the labels that have jazz fusion artists signed up with them?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +Which composer of Girl from the North Country is the subsequent work of the Moondog Matinee?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +What is the subject of the book which preceded Sagan's Cosmos?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +In which television shows has Eliza Schneider given her voice?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },julipc-p(huggingface) +Who wrote Catch My soul ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +In which state does the ambassador who is in related with J Bennett Johnston live?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +Which hometown of pavel Moroz is also the palace of birthplace of Helena of Moscow ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +How many awards have the french people received?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +How many bacterias have taxonomy as Bacillales and domain as Bacteria? ,SELECT DISTINCT COUNT(?uri) WHERE {?uri . ?uri },julipc-p(huggingface) +Where is the constituency of John Smith Griffin ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +Who is the film director of Alice's Wonderland ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +List few authors whose education took place in Saint Petersburg ? ,SELECT DISTINCT ?uri WHERE {?uri . ?uri },julipc-p(huggingface) +Who are the people who influenced the writers of Evenor ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +Which cities of the American Mediterranean Sea has Nickname Entronque de Herradura?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +Which settlement's neighboring municipalities are Cologny and Pregny-Chambsy?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },julipc-p(huggingface) +"Who has a child named Lori Black and is resting place as Palo Alto, California?","SELECT DISTINCT ?uri WHERE {?uri . ?uri . }",julipc-p(huggingface) +Which military unit's garrison is Pentagon and command structure is United States Department of Defense?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },julipc-p(huggingface) +What awards have been given to the writers of Wallace and Gromit?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +"Over which rivers, does a cable stayed bridge exists?",SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +Name the tiemzone of Banlung ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +Which football teams is Shahid Khan proprietor to?,SELECT DISTINCT ?uri WHERE {?uri },julipc-p(huggingface) +What sports are there at the universities affiliated to the National Capital Region Athletic Association?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +Who are the managers of clubs participating in the 2014-2015 Football League Championship?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . },julipc-p(huggingface) +How many people have headed organizations headquartered at Niederkirchnerstrae?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +Who was the bronze medalist of Swimming at the 2008 Summer Olympics Men's 400 metre individual medley ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +Whose doctoral student is etienne bieler\xc9tienne_Bi\xe9ler,SELECT DISTINCT ?uri WHERE {?uri },julipc-p(huggingface) +Which parent company of Edsel was the first team of the 1967 Mexican Grand Prix ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +Who is the governor of Carl McCall ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +Whose provides the service of Outlook and also products such as Visual Studio?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . },julipc-p(huggingface) +Which source of broad creek is the Audenried tunnel located ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +How many other Guests are there of the television episodes whose Guests is Brian d'Arcy James ?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri },julipc-p(huggingface) +What is the ideology of Palang Dharma Party ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +Which military conflict took place in Israel and had commander as Jaber Al-Ahmad Al-Sabah?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },julipc-p(huggingface) +Who served a vice president buried in United First Parish Church?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . },julipc-p(huggingface) +Where did Louis chevrolet die ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +What is the total number of politicians whose predecessor's deputy is Jenny Macklin?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?uri ?x . ?uri },julipc-p(huggingface) +How many managers have managed Middlesbrough FC?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . },julipc-p(huggingface) +Among which basket ball team having arena as The Palace of Auburn hills has president as Stan Van Gundy ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },julipc-p(huggingface) +To which country do the players of Waitakere United belong?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +Who are the predecessors of John Randolph of Roanoke?,SELECT DISTINCT ?uri WHERE {?uri . },julipc-p(huggingface) +How many companies were founded in Dallas?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . ?uri },julipc-p(huggingface) +"Which county seat of the King County, Washington and PLACE OF DEATH of the Phil Lumpkin ?","SELECT DISTINCT ?uri WHERE { ?uri. ?uri}",julipc-p(huggingface) +Who all have appointed governess born in Magnolia Plantation gardens?,"SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . }",julipc-p(huggingface) +Which range of mountains are there in canton of Fribourg?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +List all the record label distributed by the distributor of Zune ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +Which fictional character portrayed by Roger barton has Padm Amidala as family ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },julipc-p(huggingface) +Which office holder's military branch is Continental Army and vice president is John Adams?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },julipc-p(huggingface) +What show had NTSC format and theme music composed by Ron Grainer?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },julipc-p(huggingface) +Which leader of united states house representatives election was married to Dolley Madison ?,"SELECT DISTINCT ?uri WHERE { ?uri. ?uri}",julipc-p(huggingface) +Name the part of Liverpool city region >,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +What is the game platform of Google Cloud Connect ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +Who are the stars of the movies which are distributed by Artisan Entertainment ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +List softwares written in C++ and runs on Mac OS ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },julipc-p(huggingface) +Which partner of the Tim Mathieson is also the primeminister of the Mike Kelly (Australian politician) ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +How many publisher have been founded by american citizens?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?uri ?x . ?uri },julipc-p(huggingface) +How many other region served are there of the companies which serves Pacific Ocean ?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri },julipc-p(huggingface) +Name the home town of Rolando Gomez ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +What is the common genere of Abhijit Kunte and Kasparov ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +Cleopatra V of Egypt is father to which royalty?,SELECT DISTINCT ?uri WHERE {?uri },julipc-p(huggingface) +How many artists' works are in Muse d'Orsay?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?uri },julipc-p(huggingface) +"Whichd officer's final resting place is North Bend, ohio and belongs to Indiana Territory branch ","SELECT DISTINCT ?uri WHERE {?uri . ?uri . }",julipc-p(huggingface) +What program is presented by Brian Dunkleman and has artist as Simon Fuller?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },julipc-p(huggingface) +How many awards have been given to the participants of the Lawrence Realization Stakes?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +List the work edited by Mark Stevens and directed by Joel Schumacher?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },julipc-p(huggingface) +What is the television show whose judges is Randy Jackson?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },julipc-p(huggingface) +List the popular works of the author of Luther: The Calling ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +Which wine region of Bogdanua is the Croatian Inline hockey team part of ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +In which country is the Chapelle Saint-Louis de Carthage located ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +where did the office holder died who is successor to Elmer Burkett ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +What is the common award won by geoffrey Rush and Laemmle Theatres ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +Who were the pole drivers in GP when Damon hill was a first driver?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +To which company is Michael Dell a father company? ,SELECT DISTINCT ?uri WHERE {?uri . ?uri },julipc-p(huggingface) +What is the source location of Thornton Creek ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +Who appointed the successor of Charles Pinckney ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +What is the associated band of the musical artist who is the producer of The Trumpet Kings Meet Joe Turner ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +Name the home town of Cline Buckens ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +List the music played in television episode which came after The Colonel (The Americans) ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +What is the district of Fort Heath radar station ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +How many saints have been venerated in Judaism?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . ?uri },julipc-p(huggingface) +What municipalities are adjacent to Chne-Bougeries?,SELECT DISTINCT ?uri WHERE {?uri . },julipc-p(huggingface) +Who is the founder of Oprah Winfrey Network (U.S. TV channel) ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +Name the office holder whose theatre is Siege of Fort Recovery and belongs to Indian territory branch ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },julipc-p(huggingface) +How many artists play as Rickenbacker?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . ?uri },julipc-p(huggingface) +Which citys mayor is anne hidalgo?,SELECT DISTINCT ?uri WHERE {?uri . },julipc-p(huggingface) +In which states are there bridges over the Pequea Creek?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +How many ingedients are required to make the Ragout Fin?,SELECT DISTINCT COUNT(?uri) WHERE { ?uri . },julipc-p(huggingface) +List the people whose are in the board of an organization kickstarted in New York.,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },julipc-p(huggingface) +Tell me the number of writers whose works have been recorded in Criteria Studios?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?uri },julipc-p(huggingface) +Under which archipelago does Canary Islands fall?,SELECT DISTINCT ?uri WHERE {?uri },julipc-p(huggingface) +name the home stadium of FC Spartak Moscow season 2011-12,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +Among the countries using Aureus as currency which had Nicomedia as an important place ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },julipc-p(huggingface) +What are the outflow of the lakes which also has one of the outflow as Congo River ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +Whose tomb is in cities under Dane County of Wisconsin?,"SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . }",julipc-p(huggingface) +In how many languages did Marika Gombitova sing?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +In which city is the distributor of Jeevan Mrityu located ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +How many services does the company who made Onedrive provide?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +What is the style of architecture of Pontiac Building ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +Whihc alma mater of angela Trusty is also the training center of David Scherman ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +What is the record label of the Next Thing and also the label of the The Producers (2005 film)?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +Name the line of the Vadodara Junction railway station which is also the hub airport of the Pawan Hans?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +Name the scientist who become the part of Royal Society and had academic advisor as Karl Ewald Hasse?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },julipc-p(huggingface) +Where is the tombstone of the successor of Edward Wolcott?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +Where did the aristocrats die whose mother was Maria Ludwika Krasiska?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +Who are the major stockholders of the bank which is the company of Bloomberg Markets ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +List the books whose authors are in Alcal de Henares.,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },julipc-p(huggingface) +Give me the total number of architect of the buildings whose one of the architect was Louis D. Astorino?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri },julipc-p(huggingface) +Which tema did Dough Acomb played for which is also the drafty team of Dale Mitchell ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +List the total number of executive producer of TV show which have one of the executiive producer as Steven Moffat ?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri },julipc-p(huggingface) +Name the company who owns HBO division?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },julipc-p(huggingface) +How many religions have the relatives of waxiangs followed?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +For which team does Ramiro Pea play ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +Count the total number of battles fought by the military people which fought in Levant ?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri },julipc-p(huggingface) +which person created the women in the garden?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +Who is the composer of Girl from the North Country ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +List the work institute of the medicians who has also worked at University of Miami ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +How many people have trained the wrestlers who were billed in Wisconsin?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?uri },julipc-p(huggingface) +Which country did the prime minister belong to who was served by Thanong Bidaya ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +Which sports are played in the alma mater of Habib Boromand Dashghapu?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +What are the houses of Parliament Security Services ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +Count the origin of the beverages which have been originated in england /,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri },julipc-p(huggingface) +During the reigns of which monarchs was the name to the Israelite kingdom as United Monarch?,SELECT DISTINCT ?uri WHERE {?uri },julipc-p(huggingface) +What is the person known for who is the movie director of Sleepy-Time Squirrel ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +What is the title of the successor of Kaulahea I ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +Name the river passing through Reading Berkshire and has mouth place at Essex ?,"SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri }",julipc-p(huggingface) +Which nation is the origin of Dornier Aerodyne ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +Which writer of Tales of Suspense is also the writer of karakuri Dji Ultimo ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +Which type of building is Qun Thnh Temple ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +In which cities do some railways operated by Russian railways start?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +Collaborators of Demis Roussos have composed music for which movies?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },julipc-p(huggingface) +In how many places are the tombs of everyone who died in England?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?uri },julipc-p(huggingface) +Where did the people beatified by Pope Pius X die?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +Name all the venues of the convention which has also been hosted in San Diego Convention ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +What beverage was launched by Ferrero SpA?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },julipc-p(huggingface) +How many people have managed a club which owns the Riverside Stadium?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?uri ?x . ?uri },julipc-p(huggingface) +Through which states does the stream ending at Saunders county go?,"SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x }",julipc-p(huggingface) +Count the religions followed by people living in British Columbia.,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +List some teammates of Ndonga Mianga?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +Which TV shows distributor is Broadcast syndication and developed by Brian Graden ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },julipc-p(huggingface) +In how many districts is there a borough called tendring?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +Which composer subsequent work of Moondog Matinee and also composed The TImes They are A changin ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +On how many different grounds were seasons chaired by Ronaldo held?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +Sentinel High School team is known as ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +Name the basketball team which is coached by Louis Dunbar and has president as Jeff Munn ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },julipc-p(huggingface) +Which draft team of bob Macmillan is also the prospect team of Mikhail Pashnin ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +How many leagues have used the O.co Coliseum?,SELECT DISTINCT COUNT(?uri) WHERE { ?uri . },julipc-p(huggingface) +What is the common palce of study for jack McGregor and Philip W. Pillsbury ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +"What is the musical whose music is by Jose Luis Narom, based upon?",SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +Which workplace of the Michael M. Sears is also the governing body of the Burro Flats Painted Cave?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +What is the broadcast area of WBCQ (SW) ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +Which kind of buildings are found in England?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +Give me the count of all people who ascented a peak in California?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?uri },julipc-p(huggingface) +List the total number of regions of the building whose are located in\Grand Forks Air Force Base?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri },julipc-p(huggingface) +List down all the associcated musical artist of the artist of In a Word or 2 ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +Name whose youth club was FC Barcelona ?,SELECT DISTINCT ?uri WHERE {?uri . },julipc-p(huggingface) +Which awards did the writer of Persona win ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +Which artist was taught by Jos Ruiz y Blasco?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },julipc-p(huggingface) +What is the location of Sam Sen Railway Station ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +Which ground of 2016 Fort Lauderdale Strikers season is the palce of birth of Kaitlyn Ashley ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +Which TV show produced by Paramount Television and is located in Massachusetts ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },julipc-p(huggingface) +In how many nations does Rhaetian Railways own train stations?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?uri },julipc-p(huggingface) +"Which country's national motto is ""Truth prevails""?",SELECT DISTINCT ?uri WHERE {?uri . ?uri },julipc-p(huggingface) +Which county of Tremont Avenue is also the birht place of Ron Galotti ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +Name the wine regions of Bogdanua ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +What are the things built by Eristoff ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +Whcih land of Citi Trends is also the constituency of Malik Al-Hassan Yakubu ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +"Where did they debut their careers , those who have played for US men's national soccer team?",SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +What are on the borders of Shimsa Plateau?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +What is the former team of the american football players whose position is Running back?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +Which creator of Theme Time Radio Hour has also given the musical score of the The Times They Are a-Changin' (musical)?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +What other awards have been given to Goya Award Winners?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +Race horses whose grandsire is Wild Risk have taken part in which races?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +Who are the tenants of the stadium which is a venue of WCW Mayhem ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +Which coach of Marquette Golden Eagles men's basketball team is also the head coach of Virginia Tech Hokies men's basketball team ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +What awards have been given to citizens of the Ottoman Empire?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +List the science fiction shows broadcasted on BBC HD ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },julipc-p(huggingface) +Name the former broadcast network of the television station which is the sister stations of WGBC?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +What is the Nickname of Daniel O'Regan ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +What are the bridges whose located in California?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },julipc-p(huggingface) +Which source of Water resources management in El Salvador is also the nation of the Sierra del Merendn?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +What is the academic journal whose editor is Stephen Law?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },julipc-p(huggingface) +What awards have the alumni of Academy of Fine Arts in Lodz achieved?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +Which office holder allegiance is Colony of Virginia and was has a wife named Dolley Madison ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },julipc-p(huggingface) +How many non-fiction subject are there of the books whose one of the non-fiction subject is Ankh-Morpork City Watch ?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri },julipc-p(huggingface) +Who is the licensee of EXXV-TV ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +Who are in the board of Jimmy Wales ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +What is the origin of the musical artist whose associated band is Ziggi Recado ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +Who is the nominee of Jack Ryan ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +Which division of Serbia national team is also the region of Dobinsk Ice Cave ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +Name the royalty whose spouse was Cleopatra V of Egypt and one of his parent was Ptolemy XII Auletes?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },julipc-p(huggingface) +How many other family of the mammals exists whose family is also Hominidae ?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri },julipc-p(huggingface) +What is the former team of the football player who is the coach of 2006 Oakland Raiders season ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +How many TV shows were made by someone who was associated with Lewis Hamilton?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?uri ?x . ?uri },julipc-p(huggingface) +Who owns the ford kansas assembly plant?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +Count the number of actors in Lucy Sullivan Is Getting Married.,SELECT DISTINCT COUNT(?uri) WHERE { ?uri . },julipc-p(huggingface) +What mammals are classified into Diprotodontia ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },julipc-p(huggingface) +List all the line of Vadodara Junction railway station?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +Name the college of Jon Curran ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +Who produces the tv series which made Scott Haran famous?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +Name the Artist of Madagascar: Operation Penguin ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +Estimate the number of sports divisions at the universities under international association of universities.,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +What is the leader of the government agency which is the military unit of Erich Kempka ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +Which writer of Alan Freeman Days is also the writer of Come On over ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +Name the subsidary of Tandem Computers which was founded by Jim Harris ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },julipc-p(huggingface) +Name the city with leader as Esther Alder and neighboring municipality as Pregny-Chambsy?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },julipc-p(huggingface) +Who founded the city where Pat Vincent die?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +Which division of the Runewaker Entertainment is also the destinations of the Airtours International Airways?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +What are the things whose leader was a monarch of Willem-Alexander of the Netherlands?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . },julipc-p(huggingface) +What is the predecessor of BMW M40 ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +What television show are distributed by Broadcast syndication?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },julipc-p(huggingface) +Who was the president under which people won the United States House of Representatives elections in 1790 ?,"SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x }",julipc-p(huggingface) +Laozi authored which book?,SELECT DISTINCT ?uri WHERE {?uri },julipc-p(huggingface) +Which is the nearest city to Elliott Bay ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +who was the australian flagbearer of 2008 Summer Olympics?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +Which recognized title of Frank Thorne is also the product of Playboy Enterprise ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +Whose constituency is Duboce Triangle ?,"SELECT DISTINCT ?uri WHERE {?uri . }",julipc-p(huggingface) +Which team did wolfred McDonald is also the prospect team of Milkhail Pashnin ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +Which companies have launched from the Vandenberg Air Force Air base?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +Name a few whose live in a place where Indian English is an official language,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . },julipc-p(huggingface) +Count the number of first drivers in all the GPs where Mika Hakkinen was a first driver?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?uri },julipc-p(huggingface) +BBC Two is the sister channel of networks having which shows?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },julipc-p(huggingface) +Which non fiction of the Thud is also the field of the Jon Speelman ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +"Who was the prime minister of Victor Hope, 2nd Marquess of Linlithgow and also the editor of British Gazette ?","SELECT DISTINCT ?uri WHERE { ?uri. ?uri}",julipc-p(huggingface) +Name the hockey team whose head coach is Alain Vigneault?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },julipc-p(huggingface) +What is the municipality of Patterson Houses ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +What political ideology of the Palang Dharma Party is relegion of Inthakin?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +Who is relative of the people died in Bergen-Belsen concentration camp ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +Which info. appliance is manufactured by Asus and is the predecessor of PS 2?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },julipc-p(huggingface) +Which cover artist of the The Adventures of Tom Sawyer also the source of inspiration of The Appple Tree ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +Which university of Alexandre Tichonov is the place of death of Valentin Muratov /,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +What kind of music is produced at the record label founded by Andre Bourgeois?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +Which country's people work in the Birdman enterprises?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +Where is Oskar Blues located ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +Paul Leonard's work can be divided into how many series?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +Which incumbent of Al Gore presidential campaign wass also the president of Mike McCurry ?,"SELECT DISTINCT ?uri WHERE { ?uri. ?uri}",julipc-p(huggingface) +What is the parent company of PrivateCore?,SELECT DISTINCT ?uri WHERE {?uri },julipc-p(huggingface) +Name the river with mouth palce Essex and source place as Gloucestershire ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },julipc-p(huggingface) +In which province was Dick Redding born?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +What awards have been awarded both to Ingmar bergman and James O'Brien?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +Count the number of characters of the play whose one of the character is Catwoman ?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri },julipc-p(huggingface) +Where else did the graduates of the university of west indies study?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +List down the schools whose mascot is an animal from the order of Even toed Ungulates?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },julipc-p(huggingface) +What is the affiliation of tani University ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +What is the base currency of Benelux ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +What foundation palce of Temenos Group is the death palce of jerzy Jzef Poocki ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +Give me a count of the services by the company which provides Data center as the services ?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri },julipc-p(huggingface) +"What are the resting places of the associates of John Betts a, Connecticut politician?",SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +Which boarder country of Korean Peninsula was the state of Sodagreen ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +How many people were drafted in the LA Clippers?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . ?uri },julipc-p(huggingface) +Which famous physicist was academically advised by Benjamin Pulleyn?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },julipc-p(huggingface) +Terry Pratchett has written about how many topics?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +Which shows theme music is composed by a band which has Larry Lalonde in it?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },julipc-p(huggingface) +Who are the former partners of the figure skaters whose performance have been choreographed by Catarina Lindgren in the past?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +Which fictional character is portrayed by Roger Barton (film editor)?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },julipc-p(huggingface) +Where were the doctoral students of James Langer born?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +Give me the total number of Guests of the television episodes whose one of the Guests is Michael Cristofer?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri },julipc-p(huggingface) +"Which headcoach of Marquette Golden Eagles men's basketball team, 2008-09 was also the coach of Marquette Golden Eagles team ?",SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +What city is the place of birth of Alexander Morozevich which is also the official residence of Dmitri Nossov ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +What is the PLACE OF DEATH of Charles Gordon (artist) ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +Namt the fields of Paul Demiville ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +Which battle is Jim Jones associated with to which Allen Boyd is also associated ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +Who all have been canonized by Pope Paul VI,SELECT DISTINCT ?uri WHERE {?uri },julipc-p(huggingface) +Where is the tombstone of the congressman who died in the McLean hospital?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +Which race is the Best Mate is also the race of the Martin Molony?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +Who operates the bridges designed by Malaysian PWD?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +Where was the person born whose successor was Le Hong Phong?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +List the school of Bobby Skinstad?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +What magazine is Marritt Cabal known for which has Lucifer Hammer as publisher ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +Name the parent company of Ford Falcon Cobra ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +In how many different places have ehtics philosophers died?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?uri },julipc-p(huggingface) +Which person naratted The Incredible Hulk and also the writer of Tales of Suspense ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +List down the common sports played by PATTS College of Aeronautics and lytechnic University of the Philippines Taguig ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +How many movies have been directed by almunies of Parsons School of Design?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?uri ?x . ?uri },julipc-p(huggingface) +Count the number of sport played by the school which also plays Association football ?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri },julipc-p(huggingface) +List the people died in Hyderabad and are a member of political party ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +"Who is the publisher of the comic, one of whose authors is Kentaro Takekuma ?",SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +What is the political party of the of Bengalis ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +Which person's successor is Samsu-iluna?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },julipc-p(huggingface) +Name the office holder whose alma mater is Harvard-Westlake School and resting place is Alta Mesa Memorial Park?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },julipc-p(huggingface) +How many sports are played in maharashtran schools?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?uri },julipc-p(huggingface) +What is the citizenship of Ren Romano ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +Which magazine's publisher is Jann Wenner and founded by Ralph J. Gleason?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },julipc-p(huggingface) +Where did chancellor served by Rudolf Kirchschlger die?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +How many owners owned the clubs participating in the Premier leagues of '14?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +"For how many movies have the music composer composed music, who have collaborated with Yes ?",SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?uri ?x . ?uri },julipc-p(huggingface) +Name the driver who had a pole finish in 1989 Portuguese Grand Prix ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +Jeff Munn is the president of which basketball team ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },julipc-p(huggingface) +Name the sovereign state of Wallington railway station ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +Which terrotory of Tonkin campaign also the death bed of Thophane Vnard ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +What is the death place of the Elbieta Czartoryska which is also place of birth of the Charles Journet,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +What mammals fall into the biological family Canidae?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },julipc-p(huggingface) +Whihc party of the Mizoram Legislative Assembly is the government type of kumta ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +What is the total number of regions served by the companies which also serves Australia?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri },julipc-p(huggingface) +What is the birth city of the Salford City F.C players ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +What are the american football players whose former team's coach is Jason Maas?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },julipc-p(huggingface) +In which country did the planes designed by Ursula Hanle originate?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +Which destination of the Novair International Airways is also the predecessor of the Chevrolet Caprice?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +List the awards received of the person whose child is Daine Disney Miller?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +What was the result of Operation Autumn Clouds ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +List the colonel with branch as Militia ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . },julipc-p(huggingface) +What is the state of origin of Abbas Jafri ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +Which river has its roots in Baikal Mountains?,SELECT DISTINCT ?uri WHERE {?uri },julipc-p(huggingface) +What are the kind of games one can play on windows?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +Which are the major hubs of airline which operates the Menora Tunnel?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +Who are the writer of the singles whose music genre is Rhythm and blues ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +Name the mountain which belongs to Sierra Nevada range and is located in Inyo National Forest?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },julipc-p(huggingface) +Give me some series related to the one which had Yasmin Paige in them.,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },julipc-p(huggingface) +"Which office holder's military unit is USS Kittiwake and constituency is Castro District, San Francisco ?","SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri }",julipc-p(huggingface) +Which famous political figures are relatives to George Madison?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +Who did the associated act which is a Peter Frampton production ?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . },julipc-p(huggingface) +List the shows whose company's successor is Amblin Television.,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },julipc-p(huggingface) +Give me the mascot of the military unit in which Stewart Bovell served?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +Who has written the mary poppins musical?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +Which newspaper is owned by people living in Oslo?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . },julipc-p(huggingface) +For how many different teams have Ontarians been drafted ?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +Name the university of Alexandre Tichonov ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +Which governor of Charles Willing byrd fought the battle of Siege of Fort Recovery ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . },julipc-p(huggingface) +How many characters were made by Paul Dini?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . },julipc-p(huggingface) +What are the name of the casualties affected by shooting rampage of Eric Harris and Dylan Klebold?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },julipc-p(huggingface) +How many molluscas are there whose families are Buccinidae and Buccinoidea?,SELECT DISTINCT COUNT(?uri) WHERE { ?uri . ?uri },julipc-p(huggingface) +List the relegion of tani University which is also the life stance of udit Raj ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +Where did Aghasalim Childagh die?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +Where is the successor of john waldo from?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +How many awards have screenwriters won?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +What is the television show whose opening theme is Where Everybody Knows Your Name?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },julipc-p(huggingface) +"How many companies were founded in Denton, texas?","SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?uri ?x . ?uri }",julipc-p(huggingface) +Of which countries does Viveka Babajee have citizenship?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +Which club of perianne Lones is also the home town of the Kady O'Malley ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +What is the ethicity of Ted Falon?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +By what person of which political party is Balangir district led?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +In which country is there a political party whose leader is Jose Cha Cha Jimenez?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +Which movies' composers have won a BAFTA for film music?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },julipc-p(huggingface) +Who is the author of Heroman is also the author of Karakuri Dji Ultimo ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +Name the river whose mouth mountain is Essex and river mouth is North Sea?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },julipc-p(huggingface) +What is the products of the BBC Multimedia and series of the The Last Resort (Doctor Who),SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +Which mascot of Celal Bayer university is also the nickname of kore Presbyterian Theological Seminar ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +"Give the total number of places to which airlines go, who also go to Glasgow?",SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?uri },julipc-p(huggingface) +Which awards have Puerto Ricons won?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +Count number of people who follow a religion which has an important office in Gold Base ?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?uri ?x . ?uri },julipc-p(huggingface) +Who is the father of Edith Vonnegut and is also a writer?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },julipc-p(huggingface) +List all the collaborators of the artist which has collaborated with sanremo Music Festival ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +Which actors have performed in plays performed in New York?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +Who is the editor of Hearth and Home ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +What is the source country of reg Lake ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +Who is the mfr. of the engine used in Ford Transit ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +"Name the people whose residence is Beverly Hills, California?","SELECT DISTINCT ?uri WHERE {?uri . ?uri }",julipc-p(huggingface) +The authors of Zhorstoke nebo was influenced by whom ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +From which state do the White Plum Asangas come?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +Who operates the Ganz UV?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +Where has GARAGE recorded its singles?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +How many players participated in the 2004-05 FC Barcelona season?,SELECT DISTINCT COUNT(?uri) WHERE { ?uri . ?uri },julipc-p(huggingface) +Give me a list of all the people driving at pole positions in the Grand Prixes where Renault was a first team?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +Name a movie with actor as Momoko Kchi and music by Akira Ifukube?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },julipc-p(huggingface) +Name the source Island of Bayou ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +What location country of AH141 is also the nation of malaysia Junior hockey league ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +"Of the sports commonly played at Islamic Azad Uni, tehran, which one does Jon Speelman play?",SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +What were the occupations of Marcus Floyd?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +Who is the builder of the bridge owned by Tabriz ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +"What is the almamater of the successor of F. A. Little, Jr.? ","SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . }",julipc-p(huggingface) +List everything in which saxophone players have been casted.,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . },julipc-p(huggingface) +In which city is Corringham railway station located?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +"Name the team for which Hensley Meulens played, whihc was also the debut team od Steve Ontiveros ?",SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +List the ingredients of Kaszanka?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +What is the venerated in of the Abraham and religion of the Saima Chowdhury,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) + Name the city whose province is Metropolitan City of Venice and has leader as Luigi Brugnaro ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . },julipc-p(huggingface) +Who is the leader of Panki block ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +Who is a successor of Kingship whose parents were Julius Caesar?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +Which sports are played in the school which runs the Fr. Agnel Stadium?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +NAme the emplyer for whihc Manu cornet has worked and also written in Google Web Toolkit ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +How many more teams have rented the stadium used by Raptors 905?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +Count the wars in which people awarded with the Croix de guerre fought.,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?uri },julipc-p(huggingface) +From how many different cities have people gone to the Illinois Fighting Illini men's basketball?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?uri },julipc-p(huggingface) +What is the genre for the developer of Interplay Entertainment?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +What is the TV Show whose theme is composed by someone signed up with Prawn Song Records?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },julipc-p(huggingface) +In which television shows have Steven Moffat served as an executive producer?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },julipc-p(huggingface) +Paris Sisters singles are of which language?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +Name the founders of the record labels whose one of the founders is Frank Rogers ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +Who is the american football player whose highschool is Ringgold High School (Pennsylvania)?,SELECT DISTINCT ?uri WHERE {?uri },julipc-p(huggingface) +Where is Tahual located which is also the country of Ren Romano ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +What is the current team of John McGuinness (motorcycle racer) ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +"What is the location town of First Church of Christ, Scientist (Pittsburgh) ?","SELECT DISTINCT ?uri WHERE { ?uri }",julipc-p(huggingface) +Where is the spouse of Henry Bourchier of Essex buried?,"SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . }",julipc-p(huggingface) +Over what do Concor holdings have a bridge?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +Name the movies distributed by Cinema International Corporation and edited by Hulian Doyle ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },julipc-p(huggingface) +What is the province of Rouen Business School ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +What is the denomination of S. H. Kapadia ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +Who appointed the governor under whom Richard Winn served?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +Who is the tenant of the home stadium of Toronto Phantoms?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +Count the number of other services of the companies which provides the Microsoft Azure as service ?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri },julipc-p(huggingface) +Which major shrine of Tekle haymanot is the palce of death of Haile Selassie Gugsa ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +Name a basketball player with teams as Chicago Bulls and Phoenix Suns?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },julipc-p(huggingface) +What are some important people in NGOs headed by Donna Shalala?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +What are the other key people of the non-profit organisations whose one of the key person is Joe Green ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +Momoko Kchi has acted in which movie ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },julipc-p(huggingface) +What is the name of the television show whose developer is J. Michael Straczynski and actor is Jason Carter (actor)?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },julipc-p(huggingface) +What are some cars similar to the ones assembled at Toluca?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +What is the nationality of the J. T. Krogh which is also the sovereign state of the Camilla Martin,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +Which district of Thorington railway station is the location of death of David Lewis (poet) ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +Who was the head coach of Middlesbrough F.C. season 2006-7 also the coach of England national under 21 footbal team ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +List bacterias whose orde is Bacillales and division is Firmicutes?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },julipc-p(huggingface) +"What is the alma mater of the person, whose child is Samuel Moreno Rojas?",SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +In how many countries does the Zurich Affoltern am Albis Zug line go?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?uri },julipc-p(huggingface) +What is the type of Vesak ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +Laozi has authored which books ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },julipc-p(huggingface) +Name the river whose source location is Nevado Mismi and region is Arequipa Region?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },julipc-p(huggingface) +Name the species of Panthera leo fossilis ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +Which awards did the parents of Anna Bergman win ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +Who is the head coach of 2009-10 Middlesbrough F.C. season ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +Which work institutions of the Andrew Schally is the alma mater of the Mara Eugenia Rojas Correa ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +How many factions have fought in wars where Francois Marie Le Marchand de Lignery was involved?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +What are some people who are on the board of companies founded in NY?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },julipc-p(huggingface) +Give me a count of musicians who play an instrument developed by George Beauchamp ?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?uri ?x . ?uri },julipc-p(huggingface) +What sport activities are available at Polytechnic University of the Philippines Bataan?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +What are the birth place of the people who are the star of Dhoondte Reh Jaaoge?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +Which software uses windows as it's operating system and is written in C++ ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },julipc-p(huggingface) +What is the religion of the person who is in the cast of Master's Sun> ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +Give the distinct number of other party of the people which have one of the party as Janata Party ?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri },julipc-p(huggingface) +Which associate of Thomas bryan Martin is also the president of Carmichael ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +Which political party got elected in First Legislative Assembly of Uttar Pradesh ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +Which high school of the Jerry Tagge also was the palce hwer Temptation Waits was recorded ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +List all the nicknames of the city which has Toru gingerbread as one of it ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +Whose children are married to Fredric Joliot-Curie?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . },julipc-p(huggingface) +"Where did the president study, whose VP was Emilio Nez?",SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +What is the region of the Kim Sawchuk which is also served by the Airtours International Airways ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +Which tenants of the Master Card center is also th draft team of Sam Carrrick ,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +How many other race are there of the adult (pornographic) actors whose ethnicity is Cherokee ?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri },julipc-p(huggingface) +What is the source country of Water resources managemnt in EL Salvador is also the land of Jos MAra Orellana ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +What is the region of the successor of Mr. Jerome B. Chaffee ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +What is the profession of the Chris Myers (New Jersey) which is the governing body of Oahu Railway and Land Company ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +List down the commanders of Battle of Fort stephenson ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +Which state is the birth location of Ann Monroe Gilchrist Strong? ,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +Trainees at the national film school of Lodz have received what awards?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +Which animator of the The Skeleton Dance is also the cinematographer of the Mickey's Mellerdrammer?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +Who was the animator of both Tommy Tucker's Tooth and Skeleton Dance?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +In how many different people are alumini of the University of Oxford working?,"SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . }",julipc-p(huggingface) +Who is the developer of Montecito Inn ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +To which students did Ernest Rutherford advised to?,SELECT DISTINCT ?uri WHERE {?uri . },julipc-p(huggingface) +Which institution of the Alton Ochsner is the alma mater of the Michael Hahn ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +In how many places was the album of King Crimson recorded?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +Which nickname of Lyons Township JHigh school is also the mascot of Galatasaray Handball Team ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +What is the Team Name of the Cristo Rey Jesuit High School (Chicago) and is also the nickname of the Lyons Township High School ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +Where is Dofinivka Estuary located ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +Name the televesion show which has artist named Christopher Franke ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },julipc-p(huggingface) +name the races where bobby beasley took part ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +What softwares were created by Apple Productivity Experience Group ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +"Who is the producer of the album, after which A Nice pair was released ?",SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +Where can i find teams whose coach has been Rodney Eade.,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +List all that flows into the north sea?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +List the awards given to the relatives of Gregorios Bernardakis.,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +What politician's partner is Diana Taylor ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },julipc-p(huggingface) +What is the draft team of Bob MacMillan ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +Count all those whose youthclub performed at the 14-15 La Liga?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?uri ?x . ?uri },julipc-p(huggingface) +List the import people of Maryland Jockey Club ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +What famous work is derived from the one whose lyrics are written by Inma Gonzales?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +How many honorary title are there of the scientists who has Australian of the Year award ?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri },julipc-p(huggingface) +What is the alma mater of K. Terry Dornbush ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +What is the river which comes from Southend-on-Sea mountain?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },julipc-p(huggingface) +What is pitro Gruszka hometown ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +Whihc place of birth of the Union State is also the largest city of Union Staete ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +Who is the employer of Ralph flanders ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +In which sitcom did Jeff Conaway acted and had TNT as its network ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },julipc-p(huggingface) +Where are the tombs of alumni of ational academy museum and school?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +What is the order of George Frisbie Hoar?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +Among the universities having Gyrfalcon as mascot which have Michelle D. Johnson as superintendent ? ,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },julipc-p(huggingface) +Name the show whose theme composing band previously also had Bryan Mantia?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },julipc-p(huggingface) +List the television shows whose Composers are associated with Strontium 90 ?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },julipc-p(huggingface) + Count the participants of the NBA.,SELECT DISTINCT COUNT(?uri) WHERE {?uri . },julipc-p(huggingface) +Who has stock in the railway lines managed by Norfolk Southern Railway?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +Where is the grave of Ivan III of Russia ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +Which scientist is known for writing Philosophi Naturalis Principia Mathematica?,SELECT DISTINCT ?uri WHERE {?uri },julipc-p(huggingface) +Which planet was first discovered by Johann Gottfried Galle?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },julipc-p(huggingface) +What are some organizations in Auckland created to do?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +How many have been venerateds in Islam and Judaism?,SELECT DISTINCT COUNT(?uri) WHERE { ?uri . ?uri },julipc-p(huggingface) +Which training center of William Anthony has also alumni named Philip W Pillsbury ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +Give me some organizations working for Environmentalism,SELECT DISTINCT ?uri WHERE {?uri . ?uri },julipc-p(huggingface) +Name the person whose parent is Pattie Mallette?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },julipc-p(huggingface) +What faith of Buddhist Tai Hung College is also the acadmeic interest of Paul Demiville ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +What are all the TV shows which are related to the ones produced by Julie Gardner?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?uri ?x . ?uri },julipc-p(huggingface) +What is the country of origin of the president of Skai group?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +In which country is there a dam on the Awash river?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +Count the total religions followed by the ones living in England.,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +"What is the country where Sergei Ovchinnikov the volleyball player die, and Gumus was first aired ?",SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +What are some cars related to the ones with a V8?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +"People of which religion have been the members of parliament, and are from the Kalutara Electoral district?",SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +What is the debut team of ngel Escobar ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +What currencies are used in the countries which have been governed by Francois Hollande?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +Where is Semnani and Assyrian Neo-Aramaic spoken ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . },julipc-p(huggingface) +What is the predecessor of the car engine which was succeeded by BMW M43 ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +In how many places can I find wine made of Vitis vinifera grapes?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +Who are the members of organizations headquartered at Amstelveen?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +Whcih creator of Theme Time Radio Hour also created subsequent work of Moondoc Matinee ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +The successor of Ellsworth Bunker belongs to which religion?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +What medals have been given to people who died of lung cancer?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +Which band had members who are now in The Bleeding Heart Band?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },julipc-p(huggingface) +What is the common military branch of the Thomas Darden and that of Edwin F. Hunter,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +What are the Languages of Zabbaleen ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +What is the region served by Toll Global Express and also borders Siberia ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +"Who is the architect of Red House, London ?","SELECT DISTINCT ?uri WHERE { ?uri }",julipc-p(huggingface) +Give me a count on associates of Johnny Cash?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . },julipc-p(huggingface) +What is the place of birth of the badminton player who is the bronze medalist of Badminton at the 2012 Summer Olympics Women's doubles ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +what are some neighboring cities of Pregny Chambsy?,SELECT DISTINCT ?uri WHERE {?uri },julipc-p(huggingface) +How many developers make softwares for Unix like operating systems?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +What is the second track list of Dschinghis Khan (song) ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +List the graves of the royalities which have been buried at Beeleigh Abbey ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +"What is the local authority of the Trinity School, Brentwood and place of birth of the Sarah Walker (badminton) ?","SELECT DISTINCT ?uri WHERE { ?uri. ?uri}",julipc-p(huggingface) +Which school of jack mcGregor attend which was also the training center of William Anthony ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +What is the common profession of DeWitt Clinton and Claiborne Pell ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +Which education institute of Duncan U. Fletcher is also the university of Vanderbilt Commodores ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +What is the television show with presentator as Ryan Seacrest and theme music composer as Julian Gingell?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },julipc-p(huggingface) +Which producer of Boeing F/A-18E/F Super Hornet has a key person Dennis Muilenburg ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . },julipc-p(huggingface) +How many people work at the FBI?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . },julipc-p(huggingface) +Who were fighting the war where the QF Hotchkiss was used?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +In which city is the sister station of WCSE-LP located ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +Name the major shrine of Bogumilus?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +Who is the person whose alma mater is Harvard-Westlake School?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },julipc-p(huggingface) +How many different religions have economists followed?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +What artists are associated with the members of the Catalin Maruta?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +Count the total awards won by the writer who has won Goethe Prize ?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri },julipc-p(huggingface) +Which home town of Cline Buckens is the place of Death of Richard heron ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +With whom is Heinz Kokott a relative to who also served Nazi Army?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +Who is the former partner of the figure skater which was the former partner of Brynn Carman ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +Name the company which produces Marionette and has key person as Edwin catmull ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },julipc-p(huggingface) +How many ships belong to states which has Unitary as government type ?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?uri ?x . ?uri },julipc-p(huggingface) +Who are the founders of Iskra ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +To which families does the Koolakamba belong ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +Which TV show distributed by Warner Bros. has Christopher Franke as one of the artist ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },julipc-p(huggingface) +List the notable work of David Isaacs (writer)?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +Name the origins of the river with Quich Department as one of the origin ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +Which motion picture stories were edited by Ishir Honda?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },julipc-p(huggingface) +List the Swedish newspaper headquarted in Stockholm ? ,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },julipc-p(huggingface) +Those seasons which have been played in Fort Lauderdale Florida now host their games where?,"SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x }",julipc-p(huggingface) +Where is the origin of Filbert's Old Time Root Beer ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +What is the political party to which Purnima Banerjee is a member of?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +What is the ethnicity of Linda Hogan ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +Name the mammals which are primate and belongs to family of ape ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },julipc-p(huggingface) +"To what did the parliament member swore her oath to, whose has sons is Lohan Ratwatte?",SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +Through which label did Mel Brooks produce his movie?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +Which operator of ganz UV is also the nationality of the Gza Horvth ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +Which official residence of Nikos Pateras is also the stadium of anionios G.S.S. season 2014-15 ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +How many different genres of games can I find which are compatible with the Commodore 64?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +What are the television shows whose voices is given by Mona Marshall?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },julipc-p(huggingface) +How many contries surround the seas on the banks of which is the city of Cancun?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +Which administrative region leader is Sukhumbhand Paribatra and was founded by Rama I?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },julipc-p(huggingface) +Name the largest city of the country where the body of Amit Saigal was discovered?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +Los Angeles Lakers is the team of which basketball players?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },julipc-p(huggingface) +What are the awards won by the parent of Daniel Bergmans?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +Collect and return a list of things in the area where Spanish language is used?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . },julipc-p(huggingface) +Where is Hafthor Julius Bjornsson from?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +What writers have nationality as Statelessness? ,SELECT DISTINCT ?uri WHERE {?uri . ?uri },julipc-p(huggingface) +Music for what was made by someone who died of a cardiovascular disease?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . },julipc-p(huggingface) +What famous musicians play the remo?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },julipc-p(huggingface) +Count the number of sports played by the universities whose one of the sports is baketball ?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri },julipc-p(huggingface) +Which television shows has sound format as 5.1 surround?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },julipc-p(huggingface) +List the people who influenced the comedian who acted in Good Hair ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +Who first ascented a mountain of Mount Hoffmann ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +Who all play for the teams performing in the united center?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . },julipc-p(huggingface) +Who is the founder of the trade union with whom Amalgamated Clothing Workers of America is affiliated?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +Which route start of Moscow-Kazan high-speed railway is the home stadium of 2011-12 FC Spartak Moscow ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +Which party of Rishang Keishing is the leader at Manendragarh ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +How many people were in a youthclub which played in the Argentine Primera Division?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?uri ?x . },julipc-p(huggingface) +in which country does the river end which originates in Lebrsnik?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +Where did Andy Wyant die and Robert Rodi was born in?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +List the mountains of the range Sierra Nevada (U.S.) located in California?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },julipc-p(huggingface) +What is the common relegion of Miao people and the country where Guru Purnima is celebrated ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +What are some gymnasts coached by Amanda Reddin?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },julipc-p(huggingface) +What is the affiliation of the hospital where Alfred Blalock works?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +Louis Dunbar is the coach of which basketball team ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },julipc-p(huggingface) +What is the service of the Laemmle Theatres and is also the award of the Jos Rivera (playwright)?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +What is the municipality of Liberty Bell ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +Who is the owner of Bloomberg L.P. ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +What is the location of death of the skier who was the bronze medalist of Alpine skiing at the 1964 Winter Olympics Men's slalom ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +Who are the writers of South Park: The Stick of Truth?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +What does the river end on whose border we find in Bjelasnica?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +"List few schools situated in Reading, Berkshire ?","SELECT DISTINCT ?uri WHERE {?uri . ?uri }",julipc-p(huggingface) +Who preceded Lucius Crus as an office holder?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },julipc-p(huggingface) +What is the nationality of the successor of Nii Okaidja Adamafio ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +Who is the cover artist of Doctor Mirabilis (novel) ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +list some shawnee people?,SELECT DISTINCT ?uri WHERE {?uri },julipc-p(huggingface) +Who is the common prime minster of William Deaner and mark Latham ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +How many games are played at universities in Metro Manilla?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +Who is the Pole driver of 1992 Canadian Grand Prix ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +Which city's neighboring municipalities are Lancy and Pregny-Chambsy?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },julipc-p(huggingface) +Which home town of PAvel Moroz is the death location of the Yakov Estrin ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +"Which mainter of Cheasty Boulevard South is also the county seat of the King County, Washingtonsu ?","SELECT DISTINCT ?uri WHERE { ?uri. ?uri}",julipc-p(huggingface) +From what countries have people participated in the Excelsior Stakes?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +Who is the appointer of William Cushing ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +Who is the former partner of Chris Knierim ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +How many different kinds of softwares have been released under the GPL license?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +"In all the grand prixes where the first team was Scuderia Ferrari, who all were the pole drivers?",SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +What is the citizenship of Erastus Wiman ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +What are some awards given to the french people?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +Name the district of Robert William Wilcox ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +What are the academic interest of Philip Novak?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +List down the prime ministers of Peter Thorneycroft ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +How many companies are located in Toronto ?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . ?uri },julipc-p(huggingface) +From where is Quinn Ojinnaka billed?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +What are the software which uses platforms as ARM architecture?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },julipc-p(huggingface) +Which are the comics characters painted by Bruce Timm and created by Paul Dini?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },julipc-p(huggingface) +Wo which countries have the members of Ukrainian ministry of internal affairs swore their oath?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +In which movies directed by Orson Welles has Bernard Herrmann as music composer ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },julipc-p(huggingface) +Who is the builder of Presidio Santa Cruz de Terrenate ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +List all the home stadium of the soccer clubs which has one of the home stadium as Nairobi ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +"Which musician was born in Harriman, NY?","SELECT DISTINCT ?uri WHERE {?uri . ?uri }",julipc-p(huggingface) +"List all the settlements which has a part named Seguin,Texas ?","SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x }",julipc-p(huggingface) +Which awards have Ingmar Bergman won?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +What is the company of Ford Theatre ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +"Name the writer whose one of the notable work is Adventures of Huckleberry Finn and died in Redding, Connecticut?","SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri }",julipc-p(huggingface) +"What is the job of the George Arceneaux, Jr. which is also the office of the Blanche Bruce","SELECT DISTINCT ?uri WHERE { ?uri. ?uri}",julipc-p(huggingface) +Which moto of american Classical League is also the academic discipline of Probus ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +Who is the operator of Rainbow Warrior (1955) ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +To which state eorge M. Chilcott belong ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +Which producer of the Eristoff is also the distributor of Bombay Sapphire?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +Who were in the youth clubs that were in season of 2015 Argentine Primera Division?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . },julipc-p(huggingface) +Name the home Stadium of Kenya national under-20 football team ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +Which associat of Martin Pugh is also married to Alana Stewert ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +Where do the stockholders of Pathaninaikos F.C. live?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +Give me the count of artist in the company whose Artist is Jean- François Coté ?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri },julipc-p(huggingface) +"What has been founded in the state that Denton county, Texas is a part of? ","SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . }",julipc-p(huggingface) +Which politicians son is buried in Metairie Cementery?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },julipc-p(huggingface) +Which fictional character's relative is Clan McDuck and belongs to American Pekin duck ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },julipc-p(huggingface) +Mac OS is the operating system of how many things?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . },julipc-p(huggingface) +What are the television shows whose Composer is Stewart Copeland?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },julipc-p(huggingface) +What is the draft team of the Antoine Bibeau and also has player named Nathan Dempsey ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +List the broadcast area of the TV stations which also serves in Agalga ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +Name the species of Liger ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +How many politicians are in the militia?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . },julipc-p(huggingface) +In which wars were people from the Saudi Arabian ministry of defense involved?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +How many things do bridges designed by the UEM group go over?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +Who are the associated musical artist of the artists of band Shorty Rogers?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +Is James Hetfield a band member of Metallica?,ASK WHERE { . },julipc-p(huggingface) +Stan Van Gundy serves as a head coach and president for which basketball team?,SELECT DISTINCT ?uri WHERE {?uri },julipc-p(huggingface) +People who debuted from Houston Astros have played in which clubs?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +Which club of Michael Springer is also the parent organization of Syracuse University press ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +Whihc successor of McDonnell Douglas was built bu Delta 3 ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +What people are known to work for Johnny Cash?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },julipc-p(huggingface) +Where did some of the matches take place where Columbus Crew SC played?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +Count the number of cities around the American Mediterranean Sea?,SELECT DISTINCT COUNT(?uri) WHERE { ?uri . ?uri },julipc-p(huggingface) +List the first drivers of Grand Prixes where Mika Hakkinen was a pole driver.,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +What is the local authority of Liverpool Institute High School for Boys ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +Who managed England national under-20 football team and Middlesbrough F.C.?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . },julipc-p(huggingface) +In which state is Dorchester Bay (Boston Harbor) ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +Who is the builder of Estadio Nacional de Costa Rica and also location of Xianren Cave ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +Which distributer of Glover (video game) is also the publisher of the Super Mario Adventures ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +Name the movie in which Vangelis gave the music and Jordan was the cinematographer ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },julipc-p(huggingface) +Count the number of movies whose editors were born in UK?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?uri ?x . ?uri },julipc-p(huggingface) +What Orson Welles directed movie has photography director as Gregg Toland ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },julipc-p(huggingface) +Name the hubs of the airlines whose headquarters is in the Subang Interchange?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +"Where does the rail route, which ends at the Moskovsky station, begins?",SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +What is the nationality of the golf player who won the 2002 Players Championship ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +Which builder of Edwin Andrews Air Base isalso place of birth of the Akinoumi Setsuo ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +Where the club of Kiki Cutter located?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +List the movie whose music was given by Geoffrey Burgon and distributed by Cinema International Corporation?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },julipc-p(huggingface) +Who is the owner of Ford Motor Credit comapny which is also the builder of FORD SHO V8 engine ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +Which movie produced by Michael Deeley was distributed by Warner Bros ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },julipc-p(huggingface) +Which shows are voiced be US citizens?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },julipc-p(huggingface) +What are some relatives of Battle of the Bulge veterans?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +How many different genres of games are produced by Blizzard?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +What award was won by executive producer of Shaun the Sheep?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +Name the royalty whose daughter was Cleopatra V and was married to Ptolemy XIV of Egypt?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },julipc-p(huggingface) +"What nicknames do the universities in Norton, Massachusetts have?","SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x }",julipc-p(huggingface) +Which license of the Microsoft Office Picture Manager is also the product of the Apple Productivity Experience Group ,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +List the destinations of the airlines which also serves Mediterranean Sea ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +What is the birth place of the children of Miguel Garca Granados ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +List the fields of Sylvain Lvi ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +Who are the associate musical artists of Dalma Kovcs ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +Name a person whose sucessor was Adrian A. basora and was educated at Harvard-Westlake School?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },julipc-p(huggingface) +Name the other party of Chandra Shekhar ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +How many movies have had a cinematographer who died in US?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?uri ?x . ?uri },julipc-p(huggingface) +What actor of Le Cirque is a relative of Maryanne Trump barry?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +Who is the label of The Producers (2005 film) ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +List all the narrator of the albums which had Alan Barzman as one of the narrator ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +"Which founder of European School, karlsruhe is also the jursdiction of Eurpoean Border of Coast guard ?","SELECT DISTINCT ?uri WHERE { ?uri. ?uri}",julipc-p(huggingface) +How many religions are followed by the people in the Royal Thai Army?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +"List the significant buildings of the arch. whose one of the important work is Government Building, Kiev ?","SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x }",julipc-p(huggingface) +What is the city of the 2015 MLS All-Star Game and birthplace of the The Okee Dokee Brothers,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +"What is the river whose origin is North-Western Province, Zambia?","SELECT DISTINCT ?uri WHERE {?uri }",julipc-p(huggingface) +How many factions have fought when Egushawa was a commander?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +Which content license of the MSX BASIC is also the profession of the Laura K. Ipsen ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +Who is the appointer of Charles Goodell ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +Which distributer of Glover is also the stockholde of Seattle Mariners ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +Name the person whose mother name is Cedella Booker and has a son named Sharon Marley?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },julipc-p(huggingface) +What are the main interests of Timothy Morton?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +Name the sea with Helsinki as one of the shore city and is also an outflow for Danish straits?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },julipc-p(huggingface) +Count the awards won by the people who graduated from the National and Kapodistrian University of Athens.,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +Which awards are presented by the committee located in Stockholm?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . },julipc-p(huggingface) +Count the area of the radio stations whose serves in South Carolina ?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri },julipc-p(huggingface) +List the relative of Tim Nanai-Williams ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +What are the artists that have been in the band Framptons camel?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },julipc-p(huggingface) +?What are the airline hubs of Cascade Airways,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +Where did the editor of Charlie Mensuel die ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +"What sport is Eric Schiller known for, and employes Craig Van Tibury?",SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +How many rivers are crossed by different Box Girder bridges?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?uri },julipc-p(huggingface) +List the other members of the team where Jason Hayne currently plays?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +list the producer of the movies in which Rosemarie DeWitt in the star cast?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +What university campuses are situated in Indiana?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },julipc-p(huggingface) +Who is the owner of the bank where Thomas Secunda works ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +British people have edited which movies?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },julipc-p(huggingface) +List the home town of the bands whose label is Alive Naturalsound Records ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +Which broad cast area od CFRX is the country of North America Poker Tour ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +Count the different alma maters of people employed by the CNN,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +What are the awards won by the person who is an authority of Latania verschaffeltii ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +Where did Steve Romeo dies ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +Where are INKAS located which is also the state of origin for Jojo Chintoh ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +Where did Fort Lauderdale Strikers season of 16 take place?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +Who gave the musical score of 9 to 5 (musical) ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +Which coach of England national under 21 footbal team is also the coach of Aston Villa F.C season ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +Which show developed by Brain Graden has theme music composed by Primus ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },julipc-p(huggingface) +What is the serving railway line of Rostov-Glavny ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +"How many licensee are there, of the radio stations whose area is Nashville, Tennessee ?","SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . }",julipc-p(huggingface) +What is the allegiance of the Albert Kwesi Ocran and state of origin of the Jojo Chintoh ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +Who is the headcoach of 2008-09 Marquette Golden Eagles men's basketball team ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +What is the place of birth of Lauren Briggs ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +What is the order of the Omar D. Conger where Robert Sarvis was also the nominee ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +Which battle of Khalid bin Sultan was also the conflict of Steve Buyer ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +List the music of Open House (American Horror Story)?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +What are the relatives of the rugby player one of whose relatives is Nick Williams?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +Who is the performer of Bengali in Platforms ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +How many things are people who died in St. Petersburg known for?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +List down the important people of The Elders ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +Which TV show's executive producer is Douglas Netter and composed by Stewart Copeland ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },julipc-p(huggingface) +Where do the rivers from greater London flow into?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +Who all have created new kinds of cookies?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +List the schools of the athlete with Balgowan as one of the school ?,"SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x }",julipc-p(huggingface) +What is the label of the singles whose group is Outlawz ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +In which city is Arsenal Cider House ? located ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +Which operating system provider of LG Optimus Vu is also the employer of Manu Cornet ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +List the American MEditerranean Sea city is also the place of death of Laszlo Bellak ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +List down the TV shows whose producer is Stephen E. Ambros and writer is John Orloff ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },julipc-p(huggingface) +Where are the National Academy Museum and School awardwinners buried?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +Where is Snake Island located ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +List all the co-founders of the non for profit which have founding member as David pressman ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +What is the home town of the Rolando Gomez is the DOD of the Clyde McNeal ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +"What shows used to air on the channel which was earlier known as ""The Comedy Central""?",SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },julipc-p(huggingface) +Which company owns Evraz ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +Name a famous relative of barry voight,SELECT DISTINCT ?uri WHERE {?uri . },julipc-p(huggingface) +With which artist did the musical artist of Groove Thang collaborated ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +What are the last two studio albums of Moondog Matinee ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +List places that are associated to cities in the state of Mecklenburg-Vorpommern.,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . },julipc-p(huggingface) +"Which awards did the writer, who is the creator of Creature Comforts, won ?",SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +Count the number of sports played by the universities whihc also plays Volleyball ?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri },julipc-p(huggingface) +Name the sstadium of 2015 Pro Duta FC season ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +Count the movies edited by Mark Stevens (film editor) and were directed by Joel Schumacher?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . ?uri },julipc-p(huggingface) +"In which city was the company founded , which owns Grasim Bhiwani Textiles?",SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +Whose youth clubs used to participate in Argentine Primera Division?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . },julipc-p(huggingface) +List some people who were opponents of someone who was died by hanging? ,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +What is the currency of the country of Kerguelen Islands?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +What is the parent company of Edsel?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +"What are some TV shows whose voice actors are from Truckee, California, US?","SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri }",julipc-p(huggingface) +List the mascot of the universities which are a part of National Collegiate Athletic Association.,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +What is the route junction of Rhode Island Route 15 ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +From which country is Lawrence Okoye's nationality ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +Name the associate acts of Martin Pugh?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +List all the presidents of the school which had atleast one of the president as Queen Noor of Jordan ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +Which TV show's opening theme is The Best of Both Worlds (song) and executive producer is Steven Peterman?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },julipc-p(huggingface) +"Which television show is based in Massachusetts and has opening theme as ""Where Everybody Knows Your Name"" ?",SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },julipc-p(huggingface) +Name the software which has been developed by John Fanning ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },julipc-p(huggingface) +What is the mouth mountain of Current River (Missouri) ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +"Where is the ground of the soccer club, which has Alan Kusov as a team member ?",SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +In which fields are pupils of Edouard Chavannes working?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +List the prospect team of Robin Kovacs ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +"Which band made the song Take me There, and has collaborated with Blayse in the past?",SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +Who was succeeded by Arthur Gegei as the office ho0lder ?,SELECT DISTINCT ?uri WHERE {?uri . },julipc-p(huggingface) +How many other awards have been given to people who have won the Golden Globe?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?uri },julipc-p(huggingface) +Which person works at the American Magazine?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },julipc-p(huggingface) +"Where is the radio broadcasted in, whose sister station is CKFM-FM?",SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +List the spanish football player in the NYC FC ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . },julipc-p(huggingface) +Where is the mouth of the river whose tributary is Bjelimićka Rijeka ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +To which sports team is Aubie the mascot?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },julipc-p(huggingface) +Which parent company of the Cornell University Press is also the alma mater of the Mario Garca Menocal?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +What company involved in the development of Sherlock did Arthur Levinson work for?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +Who was the president during the time the opponent of John Hospers was in the office?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +What is the birth location of the pope who was canonized by Agatha of Sicily?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +Which destination of the Novair International Airway is the source origin of Spaghetti squash ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +Name the mouth country of Upper Neretva ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +Name the movies in which music is give by Laurie Johnson and edited by Anthony Harvey ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },julipc-p(huggingface) +Give me the places where people who worked in Church of England died in ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +Which assembly of the Plymouth Savoy is the route end of the NorthSouth Transport Corridor?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +Which river's source mountain is Baikal Mountains and it's mouth is Lena Delta Wildlife Reserve?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },julipc-p(huggingface) +How many universities are located in a country led by Olemic Thommessen?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?uri ?x . ?uri },julipc-p(huggingface) +where are renaissance centers located?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +Which publisher of Stone Canoe is also the university for which Michael Powell plays for ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +What is the alma mater of the author of Letter to a Christian Nation ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +What are the television shows whose writers did notable work for Band of Brothers ?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },julipc-p(huggingface) +To which political party does the writer of In the Bazaars of Hyderabad belong?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +Where do networks affiliated with ETC broadcast?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +What water bodies are nearest to Helsinki city?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },julipc-p(huggingface) +"To which books Thomas Egerton, an editor?",SELECT DISTINCT ?uri WHERE {?uri . ?uri },julipc-p(huggingface) +What is the burial place of Iyoas I ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +What river ends in Indian Ocean and also starts somewhere in Zambia?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },julipc-p(huggingface) +Which source of river Raa is the sovereign state of Adriatic sea ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +What was founded by Congress of Industrial Organizations ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +What is the religious affiliation of the Neungin High School which is also the academic interest of Sylvain Lvi ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +Where is the venue of the History of Penny Arcade Expo located?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +Which company is the parent company of Chevrolet Spark ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +Name the TV show distributed by Broadcast Syndication and is broadcasted by comedy central ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },julipc-p(huggingface) +List the shrines of the saint whose one of the shrine is Ponza ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +How many people are in the continental army?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . },julipc-p(huggingface) +To which senator did military unit VMF-155 belong?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },julipc-p(huggingface) +Which expertise of the Menetries's warbler is the nationality of the Jeyhun Abiyev ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +What are the former team of the american football players who played at gridiron football position ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +What subjects does the subsequent work of The Dragons of Eden deals with ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +Name the TV show which has judge as harry Connick and is broadcasted on Fox Broadcasting Company ?,"SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri }",julipc-p(huggingface) +Whay common comic is written by Karakuri Dji Ultimo and narrated by The Incredible Hulk ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +Who is the designer of Saleen S5S Raptor ?,SELECT DISTINCT ?uri WHERE { ?uri . },julipc-p(huggingface) +How many party are there of the office holders whose one of the party is Janata Dal ?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri },julipc-p(huggingface) +Who battled under commander Egushawa in a conflict?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +How many things have made different people living in Canada famous?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +What are some movies whose distributer's CEO is Ted Hartley?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },julipc-p(huggingface) +What was the stadium of Panionios G.S.S. in 2014-15 season ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +"What is the style of architecture of Shaheed Minar, Kolkata ?","SELECT DISTINCT ?uri WHERE { ?uri }",julipc-p(huggingface) +Which developer of Go was also the predecssor of X compnay ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +Name the appliance produced by Foxconn and its OS is provided by PlayStation 3 system software ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },julipc-p(huggingface) +Which teams participate in the football seasons headed by Patricia Amorim?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +who operates the south side elevated railroad?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +What is the result of the GazaIsrael conflict is also the place of the Qaqun?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +What are the mountains in the Sequoia National Park?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },julipc-p(huggingface) +How many other genere are there of the radio stations whose one of the genre is Classic rock ?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri },julipc-p(huggingface) +What is the common nationality of Funny Face a comedian and that of Georgina Theodora Wood ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +What shows are aired on sister channels of BBC Parliaments,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },julipc-p(huggingface) +name the Glover's distributer ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +Whichi office of Walter Evnas Edge is also the part of Atlantic seaboard fall lines ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +List the movies whose music composer is often associated with Jon and Vangelis.,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },julipc-p(huggingface) +How many teams have someone playing at the defenceman position?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?uri },julipc-p(huggingface) +What is the place of death of the gymnast who was the silver medalist at the 1956 Summer Olympics Men's rings ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +Name the presenter of Shirley Temple's Storybook ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +Give me the characters who last appeared in Star Wars Episode 3,SELECT DISTINCT ?uri WHERE {?uri },julipc-p(huggingface) +Name the route start of Saint Petersburg Moscow Railway ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +Name the sport league of Hampton Roads Rhinos ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +How many Thesaban towns are there?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . ?uri },julipc-p(huggingface) +Name all the broadcast area of the TV stations which has Rodrigues as one of the broadcast area ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +Which share holder of outlook is also the content license of the MSX Basics ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +Name the office holder with predecessor as Mark Latham and partner Tim Mathieson ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },julipc-p(huggingface) +Which newspaper owned by Schibsted is published in Swedish ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },julipc-p(huggingface) +What all has been created by Jerry Siegel?,SELECT DISTINCT ?uri WHERE {?uri },julipc-p(huggingface) +What is the common party of the Manthena Venkata Raju and B. Shiva Rao?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +List the country of Tokaj wine region ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +Which country has outflow of Lake Uniamsi and inflows of the Cahora Bassa?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +Who is the author of Karakuri Dji Ultimo ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +How many shows belong to the networks one of whose sister station is BBC News?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?uri ?x . ?uri },julipc-p(huggingface) +Which spouse of Ptolemy XIV had a mother named Ptolemy XII auletes ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . },julipc-p(huggingface) +Whose artworks are in Sao Paulo Museum of Art?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +Which country are the players of the Atletico Petroleos de Luanda from?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +What is the ethnicity of the people working for the Philippines house of representatives?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +Count everyone who was in a youthclub chaired by Josep Maria Bartomeu ?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?uri ?x . },julipc-p(huggingface) +What is the affiliation of Vanderbilt University Medical Center ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +Where do the judge advocate general corps live?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +List the universities with athletics NCAA Division I Football Bowl Subdivision ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },julipc-p(huggingface) +How many sitcoms were produced by the company whose predecessor was the Desilu Productions,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?uri ?x . ?uri },julipc-p(huggingface) +What city is the residence of Cheryl Teigs?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +Where is the assembly of Caterpillar 797 ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +Name the television show whose voice is given by April Stewart and theme music composer is Primus (band)?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },julipc-p(huggingface) +Name the constituency of Jonas Gahr Stre ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +Where did Goran Cengic die?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +Which former team of the Harry Parker (baseball) is the debut team of the Carl Sitton?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +What are the professions of Frederick Frelinghuysen (general) ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +Name the species of Southwest African lion ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +What is the official residence of the Christopher Daz Figuero which is also the state of the Cruce a Nado Internacional,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +What is the country whose leader name is Grard Larcher?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },julipc-p(huggingface) +What is the awards won by the producer of From the Life of the Marionettes ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +What is the meaning of the Isa (name) which is also a relegion of Sacred Heart Convent School (Bangkok) ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +List the doctoral students of Harry Harlow ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +List the major shrines of the saints whose one of the shrine is St. Takla Haymanot's Church ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +Which company of Ford Theatre is the owning organization of F0ord Kansa City Assemply Plant ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +Isaac Hayes has acted in which movies ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },julipc-p(huggingface) +What is the company that has products with Windows RT as its OS?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . },julipc-p(huggingface) +How many buildings are located in the jurisdiction of John Tory?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?uri ?x . ?uri },julipc-p(huggingface) +Which European Broadcasting Union's TV show has opening theme as Te Deum ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },julipc-p(huggingface) +Name the musical band of Written in the Stars ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +Where was Picasso's Last Words recorded ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +How many have company as Paramount Television and network as NBC are there?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . ?uri },julipc-p(huggingface) +What race of Linda Hogan is the state of origin of the Holmes Colbert ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +Who is the author of Karakuri Dji Ultimo ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +What is the official residence of Fergus McMaster ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +How many players debuted their careers from San Francisco 49ers?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . ?uri },julipc-p(huggingface) +What is the company whose one of the key person is Dennis Muilenburg and produces Boeing CH-47 Chinook ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },julipc-p(huggingface) +Which board memeber of jimmy Wales also owns Latvian Wikipedia ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +"What are the musicals based on, whose lyricist was Shelon Harnick?",SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +Who has given guest appearances on the TV Episodes whose was music done by Mama Makes 3?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +"Which office holder's resting place is Alta Mesa Memorial Park and Henry E. Catto, Jr. as predecessor ?","SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri }",julipc-p(huggingface) +Name the TV show whose network is NBC and is the subsequent work of Fraiser ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },julipc-p(huggingface) +How many had their debut team coached by Chip Kelly?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?uri ?x . },julipc-p(huggingface) +Who is the scientist whose academic advisor was Karl Ewald Hasse?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },julipc-p(huggingface) +Name the movie whose director is Stanley Kubrick and editor is Anthony Harvey?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },julipc-p(huggingface) +Which high school of jerry Tagge is also the nearest city of Tennie laura ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +Where is Vietnam Airlines located ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +"Which location of INKAS is also the location of T.I. Ahmadiyya Senior High School, Kumasi ?","SELECT DISTINCT ?uri WHERE { ?uri. ?uri}",julipc-p(huggingface) +Which TV show's company is PlayTone and is produced by Stephen E. Ambrose ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },julipc-p(huggingface) +What is the route end of NorthSouth Transport Corridor ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +List the architect of the buildings whose one of the architect is Philip Webb?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +What is the residence of the bronze medalist of Alpine skiing at the women's downhill competition at the 1972 Winter Olympics?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +Who is the manufacturer of engine of Jeep Forward Control ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +Which company founded in New Mexico manufactures Visual Studio ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },julipc-p(huggingface) +What is the owner of Ivanpah Solar Power Facility and the original developer of Dart?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +Find the total number of ingredient of the recepies whose ingredient is common Mushroom ?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri },julipc-p(huggingface) +How many movies are directed by the spouse of Dolores del Ro?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?uri ?x . ?uri },julipc-p(huggingface) +What is the military branch of John Tower ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +In which country was GM was firt aired which is also the mouth country of Upper Neretva?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +Where was the current champion of Egyptian Open born ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +who is the husband of Rosie Huntington Whiteley?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +Who are the local authority of Buckhurst Hill County High School ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +List all the former broadcast network of WMDN ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +What company's founder is Jim Harris?,SELECT DISTINCT ?uri WHERE {?uri },julipc-p(huggingface) +What team has players born in Dominican Republic ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +"Who was the opponent of Robert Carr, 1st Earl of Somerset ?","SELECT DISTINCT ?uri WHERE { ?uri }",julipc-p(huggingface) +What is the common country of Ganz UV and Balaton wine region ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +Whose resting place is William Henry Harrison Tomb State Memorial and has kids named John Scott Harrison?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . },julipc-p(huggingface) +Name the constituency of Domenico Modugno ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +Name the president whose had relatives in Clinton family and lieutenant named Joe Purcell?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },julipc-p(huggingface) +tonle sap flows into which river?,SELECT DISTINCT ?uri WHERE {?uri },julipc-p(huggingface) +What awards were given to the producer of Chicken Little?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +What water bodies have primary inflows sa Kemijoki?,SELECT DISTINCT ?uri WHERE {?uri },julipc-p(huggingface) +Where was WiZeefa founded ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +Where is Richard Stites located ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +Which drinks have emerged from the US?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +What is the headquarters of the public transit system which is the system of Bottineau LRT ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +Count the journals in the field of Philosophy.,SELECT DISTINCT COUNT(?uri) WHERE {?uri . ?uri },julipc-p(huggingface) +Which scientist advised a doctoral student named Erban Ieica?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },julipc-p(huggingface) +Where are the Dinamo Krasnodar players born?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +"How many major shrine are there, of the saints whose beatified by Pope Pius XI ?",SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +What is the academic discipline of Journal of Cerebral Blood Flow & Metabolism ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +What is the agency name of the Ministry of Information and Communication Technology (Thailand) and distribution region of the Channel 9 MCOT HD ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +Which gaming console's central processing unit is microprocessor and built by Sony?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . },julipc-p(huggingface) +List the home stadiums of the teams in the Russian Premier League?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +What are the common sports played by jamiatu Muslim mindanao and Polytechnic University of Philippines Taguig ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +Who is the president when Loretta Ucelli used to work for Democratic party?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +Which district of Robert William Wilcox os the place of birth of Kamaloohua ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +List the regions served by the company which serves in Pacific Ocean ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +What is the state of origin of the person who is the successor of Tetsugen Bernard Glassman?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +Name the team for which Cam Plante played for which were also the tenants of MasterCard center ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +Give me a list of everyone who manages the famous rock art sites?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +List the film starring of the movies whose editor is Harvey Rosenstock ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +Name hte builder of Baku Olympic Stadium ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +Which builder of Ford Straight-6 engine is also the automobile latform provider of Chiva bus ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +Count the total number of bacterias whose division is Firmicutes and domain is Bacteria?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . ?uri },julipc-p(huggingface) +Count me the number of people whose military unit is involved with Close air support ?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?uri ?x . ?uri },julipc-p(huggingface) +What are some other great things by the person who produced Queer as Folk?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +Count the number of books whose author's were born in Alcal de Henares ?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?uri ?x . ?uri },julipc-p(huggingface) + Which musical band produced the subsequent work of City of New Orleans ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +What is the alma mater of the James Still which is also the alma mater of Tom Maniatis?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +Where is the stadium of west Papus football team ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +Ernest Rutherford was the advisor of how many people?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . },julipc-p(huggingface) +"Which municipality of the Brown's Corners, toronto also place of birth of Krista Kelly ?","SELECT DISTINCT ?uri WHERE { ?uri. ?uri}",julipc-p(huggingface) +Which famous writer was married to Jill Krementz and had a son named Edith Vonnegut ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },julipc-p(huggingface) +Name the nearest city to Tennie and Laura ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +How many TV shows have been created by Simon Fuller ?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . ?uri },julipc-p(huggingface) +who all play for of the american football players at Quarterback position?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +Name the office holder whose child is Lori Black and predecessor is Henry E. Catto Jr ?,"SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri }",julipc-p(huggingface) +Which televion show's theme music was given by Ron Grainer and is broadcasted by BBC HD ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },julipc-p(huggingface) +Name a person who was educated in Humes High School ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },julipc-p(huggingface) +Where do I find buildings rented by Weber Thompson?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +Count the cities whihch are on the same sea as that of Miami ?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri },julipc-p(huggingface) +Who are the key people of FWD.us?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +"What is the municipality of the Brown's Corners, Toronto and also the place of birth of the George Karrys","SELECT DISTINCT ?uri WHERE { ?uri. ?uri}",julipc-p(huggingface) +What is the POD of the successor of Pmare I ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +In how many places can I find people whose alma mater was in bachelor of arts?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?uri },julipc-p(huggingface) +Who owns Torrey Pines Gliderport?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +Which nationality of Newin Chidchob is also the nationality of Ajahn Sao Kantaslo ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +List the goverener of Winston Bryant?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +Erik Jendresen is writer and Play tone is company of which TV show ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },julipc-p(huggingface) +From which genres of music did those genres emerge where drums are important?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +What is the constituency of the leader of Labour Party (Norway)?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +Name the champion of National League ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +"Name the team Ramiro Pea played for, which was also the first team of Steve Ontiveros?",SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +List the total number of awards of the musicals who have won Tony Award?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri },julipc-p(huggingface) +List the military branch of Henry Hyde ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +"What is the country whose administrative centre is Hagta, Guam?","SELECT DISTINCT ?uri WHERE {?uri . ?uri }",julipc-p(huggingface) +Which source country of SamurAbsheron channel is the birth place of Anar Salmanov ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +Which are the television show which have been created by Donald Wilson?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },julipc-p(huggingface) +Count all the Colonels?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . },julipc-p(huggingface) +What sports can be played at universities in Metro Manila?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +"In which sects was the aristocrat venerated, whose parent is Thelred the Unready?",SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +What is the draft team of Gene Conley ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +Give me the total number of lines owned by owner of Mwtro-Noth Railroad ?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri },julipc-p(huggingface) +List the common sports played by Polytechnic University of the Philippines Bataan and Jamiatu Muslim Mindanao ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +Who is married to Tony Ramo,SELECT DISTINCT ?uri WHERE {?uri . },julipc-p(huggingface) +What is the title of the Kakae and also the district of the Robert William Wilcox ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +Who oarent organization of Get TV is also the label provider of I Pray on CHristmas ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +Name a royalty whose one of the child is Augustus and is associated with Publius Servilius Vatia Isauricus?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . },julipc-p(huggingface) +Which currency of Republic of Montenegro is also the currency of the French Southern and Antarctic Lands ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +Where was the battle fought where 2nd Foreign Infantry Regiment participated ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +What is the administrative headquarters of Pulau Ujong ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +Which city amongst the one which belongs to Boundary Dam was the palce for Soccer Bowl '76 ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +Which employer of Manu Cornet has alsoe written Google.by ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +Who had headed the governmental agencies whose admin HQ was in Niederkirchnerstrasse?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +"Whichi burial place of the Henri, Duke of Rohan is also the birth place of Michel Frutschi ?","SELECT DISTINCT ?uri WHERE { ?uri. ?uri}",julipc-p(huggingface) +Among which sitcoms in which theme music is composed by Gary Portnoy is located in Massachusetts ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },julipc-p(huggingface) +Name the movies distributed by Warner Bros. and directed by Ridley Scott ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },julipc-p(huggingface) +What basketball league's champion is Golden State Warriors,SELECT DISTINCT ?uri WHERE {?uri . ?uri },julipc-p(huggingface) +Name some people working at someplace owned by News Corp.,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . },julipc-p(huggingface) +Count the number of fileds of the scientist whose one of the interest is Chinese poetry ?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri },julipc-p(huggingface) +How many teams have used the stadiums which have been rented by the Canadian Hockey team?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +What is the television show whose developer is J. Michael Straczynski?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },julipc-p(huggingface) +What is the content license of Darcs ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +Which colored race horses have won the Grand National?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +Where did the genres originate which can found in The Mudbloods?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +What is the resting place of the person who is the successor of James W. Hyatt ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +Which contnet license provider of Microsoft Office Picture Manager is also the game platform of Google Clud Connect ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +return some players who have played in the NBA?,SELECT DISTINCT ?uri WHERE {?uri },julipc-p(huggingface) +Give me a count on scientist who are known for garrison is Tennessee ?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?uri ?x . ?uri },julipc-p(huggingface) +Who owns the horses which have won the Timeform award?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +"The sports team which played at the American Basketball League championship (1996-1998), have which stadiums?",SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +What is the national origin of Dornier Aerodyne and Hirth Acrostar ?;,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +List everything written in languages developed by EXperimental Computing Facility?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },julipc-p(huggingface) +What is the common university iof vanderbilt Commodores and also the college of hubert Wiggs ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +What are the prizes awarded to the main members of DisneyToon Studios?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +Who was buried at St. Mary's Church and fought the battle of Benedict Arnold's expedition to Quebec ?,"SELECT DISTINCT ?uri WHERE {?uri . ?uri . }",julipc-p(huggingface) +How many members are there of the order of Bacillales?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . },julipc-p(huggingface) +Which neighboring municipalities of Cologny has a mayor named Ester Alder ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . },julipc-p(huggingface) +"Who is the founder of Wuropean School, Karlsruhe ?","SELECT DISTINCT ?uri WHERE { ?uri }",julipc-p(huggingface) +Which city near to Elliott Bay was the death place of George F. Moore ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +How many other characters are there of the plays which has a characters name Joker (comics) ?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri },julipc-p(huggingface) +Who first ascented a mountain of Cathedral Peak (California) ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +Which awards did the children of Erik Bergman won ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +Name the sharehoders of The National Herald ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +Which writer of A streetcar Named Desire is also the author of The Catastrophe of Success ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +List the program genres of the sister stations of 97.1 WASH FM?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +Which former team of Franois Beauchemin does the Nathan Dempsey played for ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +What is the colour of Red Marauder ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +By whom is the broadcaster network Bounce TV founded?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +List books authored by Miguel de Cervantes and published by Francisco de Robles ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },julipc-p(huggingface) +List down all notable works of Neil Cross ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +Who is the meaning of the name Isa which was also one of the subject of play The Prodigal Son ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +"Who are the parent of the people that has POD as Redding, Connecticut ?","SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . }",julipc-p(huggingface) +What are the things Eric Schiller known for ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +List the parts of Greater San Antonio?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +Where is Temenos Group founded ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +Name some leaders of the parent organisation of the Gestapo?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +Who are the people who died in a place architected by Jens Jensen,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },julipc-p(huggingface) +Name the television show whose subsequent work is Frasier and opening theme is Where Everybody Knows Your Name?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },julipc-p(huggingface) +Name the television show whose company is HBO and Playtone?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },julipc-p(huggingface) +Name the cover artist of the adventure of Tom sawyer ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +Who did Bruce Bochy play for ? ,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +Name the company which provides Outlook.com as service and also has a product named Microsoft Azure ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },julipc-p(huggingface) +Which political party got elected in First Legislative Assembly of Uttar Pradesh ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +List the actors of Lucy Sullivan Is Getting Married?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +What other awards have Becket fund for religious liberty winners received?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +Who is the compiler of British Gazette whose prime minister is also Peter Thorneycroft ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +Name the states which have been billed by the wrestlers who has also billed Georgia ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +List the outflows of the lake whose one of the outflows is Benu river ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +Which city was founded by George Washington and John Forbes (British Army officer)?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },julipc-p(huggingface) +Count the number of broadcast area of the TV stations which serves in Agalga ?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri },julipc-p(huggingface) +"In which wars army men awarded with the Croix de Guerre, fought?",SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +Where is the residence of the governor of Bangkok ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +Name the scientist whose supervisor was Ernest Rutherford and had a doctoral students named Charles Drummond Ellis?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },julipc-p(huggingface) +Name the movies writtten by the group Monty Python ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },julipc-p(huggingface) +Where is Lao Plaza Hotel located?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +Which sitcom's company is Paramount Television and is located in Cheers Beacon hill ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },julipc-p(huggingface) +How many other school are there of the rugby players whose school is Michaelhouse ?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri },julipc-p(huggingface) +What are the films whose atleast one cast member died due to Colorectal cancer?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },julipc-p(huggingface) +Who is the President of United World College of Costa Rica ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +Where is Bogobiri House located ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +List the stadium of the teams which uses Nea Smyrni as one of the stadium ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +How many currencies are in used in places where people speak French?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?uri },julipc-p(huggingface) +What are the academic interests of the advisor of Paul Demiville ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +what are some journals of academic Philosophy,SELECT DISTINCT ?uri WHERE {?uri },julipc-p(huggingface) +Where did the conflict take place where Liu Mingchuan fought?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +What is the official residence of the Lula J. Davis which is also the death location of the John McTaggart (jockey) ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +To which series does the character of Londo Mollari belong?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +Whihc state of Timothy J. Roemer is also the location city of Dad's Root Beer ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +What is the type of Naval Station Bremerton ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +Name the borough of the Bordesley railway station which is also the route end of the Birmingham and Oxford Junction Railway?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +Which city was designed by saleen Pator which is also the birht location of Jimmy Diggs ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +What is the birth place of music artists which were associated with Albert Ayler ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +What is the religious affiliation of Wickramabahu Central College (National School) ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +Name the nearest city to Lake Victoria?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +What is the common award won by Charles LeMaire and Eric Roth,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +What is the total number of builder of the military structures whose builder is also United States?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri },julipc-p(huggingface) +How many shows does HBO have?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . ?uri },julipc-p(huggingface) +How many people have been canonized by Pope Benedict XVI?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . },julipc-p(huggingface) +Whose work is in the Musee d'orsay?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +What are the famous Uni Toronto scientists known for?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +Who used to skate with the pupils of Laureano Ibarra?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +Name the river flowing through Reading and source place as Gloucestershire ?,"SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri }",julipc-p(huggingface) +"What does the river flow into, whose left tributary is Bukovica?",SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +For which team does hunter pence play for?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +Name the ground of Al-Rayan SC ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +"What band was Afrika Baby Bam a part of, and often performed with Q Tip?",SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +Which siler medalist of the Tennis at the 2012 Summer Olympics Men's singles was also the flagbearer of the Switzerland at the 2008 Summer Olympics,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +Which president of Lance Adams-Schneider had nickname Daniel O'Regan ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +Who coached the marquet golden eagels during 2013,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +What beverages originate in Leuven?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },julipc-p(huggingface) +Name the city served by Juhu Aerodrome ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +List the notable works of the writer of The Tony Randall Show ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +How many cars succeed the cars assembled in Canada?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?uri },julipc-p(huggingface) +Where has the employee of Columbia Records worked ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +Whci co founder of Sea gayle Music is also the artist of Brad Paisley Discography /,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +Which wine region of Bogdanua is the mouth country of Upper Neretva ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +Which television show's network is BBC HD and is related to Doctor Who Confidential?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },julipc-p(huggingface) +Name the products of Den norske Bank ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +"Where does the river flow into, which starts at the Sierra Madre de Chiapas?",SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +Who are the shareholder of the broadcast networks whose owning company is Jamie Kellner?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +Which rivers flow into the lower manhatten?,SELECT DISTINCT ?uri WHERE {?uri },julipc-p(huggingface) +Who is the founder of Pittsburgh ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +Who rented the stadium where the UFC 152 take place?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +What is the place where the mayor's wife is Jean-Marc Germain?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },julipc-p(huggingface) +Which religions' people fought in the Miao rebellion?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +List the significant building of the architect who also designed Kiev?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +What is the deathplace of the rugby player who is the relatives of Anton Oliver ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +What is the alma mater of the Marshall Fletcher McCallie and has affiliation with Vanderbilt University Medical Center ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +Who has had been the tenant of the stadium built by PCL construction firm?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +What is the television show whose producer is Stephen E. Ambrose?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },julipc-p(huggingface) +What is the birth place of the successor of Ella T. Grasso ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +From how many different places have participants of Breeders's Cup Turf come?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +How many movies were cinematographed by Jordan Cronenweth?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . ?uri },julipc-p(huggingface) +Who is the famous relative of Kelly Osbourne?,SELECT DISTINCT ?uri WHERE {?uri . },julipc-p(huggingface) +Which royal person married the successor of Darius I?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },julipc-p(huggingface) +What are some products manufactured by Sony? ,SELECT DISTINCT ?uri WHERE {?uri . },julipc-p(huggingface) +List all the movies whose music has been made up with someone under RCA records?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },julipc-p(huggingface) +List the magazines published by Playbow Enterprises ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },julipc-p(huggingface) +What is the style of architecture of South Loop Printing House District ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +Name the ssignificant buildings of Ivan Fomin ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +Which state of Tendaho dam is the headquarters of Ethiopian People's revolutionary democratic Front located ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +What are the television shows of a company headquartered in Geneva?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },julipc-p(huggingface) +Name the television show whose distributor is Comedy central and the character voice is given by Isaac hayes ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },julipc-p(huggingface) +In which areas did the pupils of Sylvain Levi work?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +Name the movie whose producer is Michael Deeley and music is given by Vangelis ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },julipc-p(huggingface) +Which magazine has publisher as Jann Wenner?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },julipc-p(huggingface) +What kind of games does Blizzard games develop?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +"How many different pole drivers are there, of the GPs when Renault was the first team?",SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?uri },julipc-p(huggingface) +What is the label of Double Diamond (album) ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +Name the person whose child is Irne Joliot-Curie?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },julipc-p(huggingface) +How many destinations are covered by the airlines which also serves Europe ?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri },julipc-p(huggingface) +How many things belong to phylum of Chordate?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . },julipc-p(huggingface) +With which musical artist is the music group which sung Mind Blowin' related to ? ,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +Which things are Breann McGregor known for ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +Where is the headquarters of the public transit system which operators Go-to-card ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +How many people are there who have relationship with Kennedy family?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . },julipc-p(huggingface) +"Name the company founded by Jim Harris located in Harris County, Texas ?","SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri }",julipc-p(huggingface) +What is the total number of fictional characters whose created by Greg Daniels and series is The Office (U.S. TV series)?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . ?uri },julipc-p(huggingface) +In which city where there is a headquarters of Orient News and also Feras Saied died?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +"Who were the opponents of employees of Henry Howard, the Northampton Earl?","SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . }",julipc-p(huggingface) +Who is the common parent of Gettv and hypnotize mind ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +"Which cities come in the course of the river, into which Big Creek around Texas flows too?",SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +What islands are there on the Greater Antilles archipelago?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +What is the Team Name of St. Viator High School ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +Who is the headcoach of 2013-14 Marquette Golden Eagles men's basketball team ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +Which races has the horse bred by Jacques Van't Hart participated in?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +What are all the countires where food related to tuna salad is consumed ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +Who is the coach of England national under-21 football team ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +"Which rivers end in Old Saybrook, Connecticut?","SELECT DISTINCT ?uri WHERE {?uri }",julipc-p(huggingface) +"Where does the river end, into which the Rakitnica flows?",SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +What are the baseball players who played for San Francisco Giants?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },julipc-p(huggingface) +Who is the person whose parent is Ptolemy XII Auletes?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },julipc-p(huggingface) +Find the total number of tenants of the stadium whose tenants was Toronto Marlies?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri },julipc-p(huggingface) +Who gave the voice for Allen Walker ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +How many buildings are located in Toronto ?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . ?uri },julipc-p(huggingface) +"Where does the river flows into, which starts in Gredelj?",SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +"What is the country which lies on the European route E8, and where Ragnhild Jolson was born?",SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +What was founded by pina Records which has name of Geography of Puerto Rico ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +"Where is the tunnel, which is operated by BNSF railways?",SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +Terminal Station at Chattanooga is made by architects from which University?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +What sports are played by school which owns Fr. Agnel Stadium ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +What is the major shrine of Jacques-Dsir Laval ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +What fictional character's species is American Pekin duck,SELECT DISTINCT ?uri WHERE {?uri },julipc-p(huggingface) +What is the television show whose subsequent work is Crusade (TV series) and developed by J. Michael Straczynski?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },julipc-p(huggingface) +Who is the Pole driver of 1997 Canadian Grand Prix ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +What is the common region of the braod cast area of ITV and nationality of Ajahn Thate ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +Things going to the mediterranean sea also go where?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +Name the award given in Norway and presented by Swedish Academy ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },julipc-p(huggingface) +Which producer of Boeing F/A has Dennis Muilenburg as an important person ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . },julipc-p(huggingface) +Which movies' music is composed by people associated with the band Yes?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },julipc-p(huggingface) +What came before PlayStation 4 and uses PlayStation 3 system software as OS?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . },julipc-p(huggingface) +Name the TV show with theme music by Primus and broadcasted on Comedy Central ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },julipc-p(huggingface) +Count all the games whose distributors are located in America,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?uri ?x . },julipc-p(huggingface) +What is the birthplace of the Ferrel Harris which is also resting palce of Green Wix Unthank?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +What is the river one of whose left tributary's native name is Arabic?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . },julipc-p(huggingface) +What work has been directed by Orson Welles and distributed by RKO Pictures?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },julipc-p(huggingface) +Who is the spouse of Daniel Gibson? ,SELECT DISTINCT ?uri WHERE {?uri . },julipc-p(huggingface) +From which team did Marv McFadden played ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +Name the licensee of the WRVU who has the affiliation of Monroe Carell Jr. Children's Hospital at Vanderbilt ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +Who are the trainersof Candice Michelle?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +Where is the main ground of soccer seasons whose chairman is Ronaldo?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +What is the title of Kakae ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +Which broadcast area of Mauritius Broadcasting Corporation is also the nationality of Michael Medor ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +Who wrote Heroman?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +List the religion of people in the Cambodian human rights party?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +Which draft team od Dale Mitchell is also the tenant of Master Card center /,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +What show has judge as Randy Jackson sculptors as Simon Fuller?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },julipc-p(huggingface) +"What awards have been given to the artists coming out of the university of Melbourne, faculty of VCA and MCM?",SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +Which awards have been given to the horse who sired Triplicate ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +Where did the spouse of pmare ii die?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +Into which water bodies does Lake Uniamsi outflow?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +Which river does Katima Mulilo Bridge cross?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +Which office holder's successor is Adrian A. Basora and child named Lori Black?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },julipc-p(huggingface) +What is the currency of Republic of Montenegro (1992-2006) ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +What television show is aired on channel Sirius XM Holdings?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },julipc-p(huggingface) +What is the movie whose producer is Michael Deeley and directed by Ridley Scott?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },julipc-p(huggingface) +Which manufacturer of Ford Y-block engine is the parent of Ford Air Transport Service ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +Which governing body of the Oahu Railway and Land Company is also the military branch of the Jimmy Quillen ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +Name the rivers whose source country's capital is Lusaka?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },julipc-p(huggingface) +Which sports are played typically in private schools?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +What is the state of the senator whose successor is Nathaniel P. Hill ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +What is the casting of the movie directed by Justin Zackham ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +List all the mmebers of Mekong River Commission?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +Name the HBO TV show written by Erik jendresen ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },julipc-p(huggingface) +List the team for which Doug Acomb played ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +Which architect of Marine Corps Air Station Kaneohe Bay was also tenant of New Sanno hotel /',SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +List common systems are developed by of the Google Videos and written by of the Google Web Toolkit ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +Which television show 's producer is Stephen E. Ambrose and written by Erik Jendresen?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },julipc-p(huggingface) +Which cport of Vishwajyot High School is also the genere of Battle chess ,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +What is the almamater of the president whose vice president was Enrique Jos Varona?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +Whichlocation city of the Denver Broncos is the palce of birth of Steven Clark Cunningham ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +Name the movies distributed by RKO Pictures and has music composer as Bernard Herrmann?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },julipc-p(huggingface) +What is the magazine which have been founded by Ralph J. Gleason?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },julipc-p(huggingface) +How many television shows have Fox Broadcasting Company as their channel?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . ?uri },julipc-p(huggingface) +Name the nationalteam of Trn Vit Hng ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +Whihc uni did Joshua A. Siegel attend ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +List the associates of bands which have a label by Motown ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +Which serving railway line of the Daund Junction railway station was also the place where 99 (2009 film) was recorded ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +List the ethnicity of Riley Reid?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +Which shows are from a company whose subsidiary is Viacom Productions?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },julipc-p(huggingface) +Who are the shareholder of the soccer club for whom Steve Holland plays?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +Which city located on Mediterranean Sea is also the stadium of Panionios G.S.S. season ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +"What are the hubs of PLUS Helicopter Services, a highway helicopter unit of PLUS Expressways?",SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +Name the movies for which music was given by Geoffrey Burgon and distributed by Cinema International Corporation?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },julipc-p(huggingface) +Which country's leader is Giuseppe Bertello?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },julipc-p(huggingface) +Which license provider of MSX basic is also the designer of Language Integrated Query ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +Who are the astronauts associated with NASA?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },julipc-p(huggingface) +To which american football teams does the Heinz Field serve as home stadium?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +How many developers were involved in creating games whose score is composed by Gerard Marino?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +How did the child of Stevens T. Mason die?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +What is the nickname of the home stadium of Angels Toru?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +What is the television show whose executive producer is Douglas Netter?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },julipc-p(huggingface) +List out the people who are related to the relatives of Jared Kushner ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +List all the doctoral student of the scientist who has advised john Bowlby ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +Count the number of sports team members which have player named Matt Williams ?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri },julipc-p(huggingface) +How many different people own the Timeform award winners?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?uri },julipc-p(huggingface) +Name the team which is owned by Dafenham wind turbines and stood first in 1967 mexican Grand Prix ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +What sports can be played in Kharghar's schools,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +Which ethinicity of Riley Reid is the state of origin of Holmes Colbert?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +Which american football team has stadium as O.co Coliseum?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },julipc-p(huggingface) +How many subjects are covered in the publications of Doubleday?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +What is the hometown of the residents of Martha's vineyards?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +Name the team manger of Middlebrough F.C season 2006-07 ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +Who is the owner of the bank which owns Bloomberg Radio?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +"Who was the coach of marquette Golden Eagles men's basketball team-2012,13 season ?",SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +List the ingredient of Blodpalt ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +What awards have been given to race horses bred by Bert Michell?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +Where does the river begin whose left tributary is Krapanski Potok?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +What are the notable commanders of the army whose one of the notable commanders is Paul Hausser?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +Name the source of Raa ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +Who is the producer of Frampton's Camel ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +Name the directors of Lennon Legend: The Very Best of John Lennon (DVD) ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +What is the alma mater of the scientist who is known for Rational analysis ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +In which country is Sierra del Merendin?,SELECT DISTINCT ?uri WHERE { ?uri . },julipc-p(huggingface) +"What is on the border of the places which fall under crook county municipality, oregon?","SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . }",julipc-p(huggingface) +Which is the university of Vanderbilt Commodores ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +How many other home stadium are there of the soccer club whose home stadium is Luzhniki Stadium ?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri },julipc-p(huggingface) +Where was William Anthony trained ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +Which composer of Motorpsycho Nitemare has also composed The time are A-Changing ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +"What is the religion of the president who won the Mongolian legislative election, 2004 ?","SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . }",julipc-p(huggingface) +What is the municipality of Homestead Grays Bridge ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +Which interest of Philip Novak is the relegion of Vesak ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +Count all the ethinic group who speaks language which belongs to Anglo-Frisian language family ?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?uri ?x . ?uri },julipc-p(huggingface) +What is the area of the Tar Heel Sports Network which is official residence of the Michael Nichols (photographer) ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +How many artists have their works in the Sao Paolo Museum of Art?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?uri },julipc-p(huggingface) +What is used as money for French Southern and Antarctic Lands is also the product of the Karafarin Bank ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +Give me the total number of membership of the organisations which have memebers as Azerbaijan?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri },julipc-p(huggingface) +What is the content licence of MSX BASIC ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +How many TV shows are of the company which are of company which is a subsidiary of Big Ticket Entertainment ?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?uri ?x . ?uri },julipc-p(huggingface) +What is the city of the Maine School of Science and Mathematics is also the resting place of Charles A. Boutelle ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +Who is the president of Carl Stokes nad Wyche Fowler ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +List few Swedish language movies ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },julipc-p(huggingface) +What is the currency of Kerguelen Islands ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +Whose shrines are in a place governed by Justin Trudeau?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . },julipc-p(huggingface) +Who is the leader of Hackweiser ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +In which city is the sister station of KTXY located ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +Name the constituency of Jonas Gahr where Sverre Krogh was born ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +What is the common battle fought by Stephen Urban and Ali Habib Mahmud ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +who all have been a manager of english under twenty one football team?,SELECT DISTINCT ?uri WHERE {?uri },julipc-p(huggingface) +Which royalty was married to ptolemy XIII Theos Philopator and had mother named Cleopatra V ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },julipc-p(huggingface) +Which administrative headquarters of the Pulau Ubin is also the resting place of the Nicole Lai,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +Where did the beverages sold by Refriango originate?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +In which country does the Auckland rugby union team play ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +"Where are all the protected areas near Bend, Oregon?","SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x }",julipc-p(huggingface) +"Which office holder's resting place is in Palo Alto, California and was succeeded by Adrian A. Basora ?","SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri }",julipc-p(huggingface) +Name the loocation of Lekh Castle which is also the location of SamurAbsheron channel ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +What is the alma mater of the actors of The God Who Wasn't There ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +Which company's cars are assembled in Colombia?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +Count all the different purposes followed by the different NGOs.,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +"The players born in Bellaire, Ohio have played for which team?","SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . }",julipc-p(huggingface) +who are starring in the movies written by Mark Sandrich ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +What award has been awarded to both Dion Beebe and Charles LeMaire?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +What is the birth name of Putri Raemawasti ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +"What is the number of occupation of the people who died in tampa bay, florida?","SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . }",julipc-p(huggingface) +Who was the United States president who also served as a governor of Indiana Territory?,SELECT DISTINCT ?uri WHERE {?uri },julipc-p(huggingface) +Musical artists who are associated with Ren & Angela were born where ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +Name the debut team of Dan Otero ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +Who founded the Not on our Watch NGO?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +"List the employments of people who died in Tampa, Florida.","SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . }",julipc-p(huggingface) +What are some famous veterinary physicians known for?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +List the movies edited by Julian Doyle in which music was composed by Geoffrey Brugon ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },julipc-p(huggingface) +Which owner of Chelsea F.C also owns Evraz ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +What are the movies whose screenplay is done by Eric Roth?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },julipc-p(huggingface) +What is the total number of writers whose singles are recorded in Miami?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +Who is the producer of album which has the song Money?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +What is the company to which Fusajiro Yamauchi proprietor to ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },julipc-p(huggingface) +Who is the writer of mark twain Tonight ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +Marika Gombitov makes songs in which languages?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +What are some musical artists associated with the ones signed up with EMI?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +What are some relatives of armymen who died in Germany?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +To which political party does Virendra Kataria belongs ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +"What is the total number of awards whose presenter's headquarters is Beverly Hills, California?","SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?uri ?x . ?uri }",julipc-p(huggingface) +Who is the narrator of The Price of Beauty ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +How many politicians live in India?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . ?uri },julipc-p(huggingface) +Who operates Liverpool Playhouse ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +List few musical artist whose notable instruments are Ludwig Drums and Remo?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },julipc-p(huggingface) +Food in which countries has shallot in it?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +What sport played at Islamic azad uni employes Craig Van Tilbury?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +Whihc birthpalce of Svetlana Gounkina is also the largest city of Union State ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +Name the co-founder of the record labels which have one of the founder as Chris DuBois ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +How many people have worked for teams chaired by Patricia Amorim?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?uri },julipc-p(huggingface) +Directors of which movies are buried in Ronda?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . },julipc-p(huggingface) +Who all have developed softwares for Unix Like OSes?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +Which tenant of New Sanno Hotel is the military branch of the Gary Holder-Winfield ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +List the director of The Adventures of mimi ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +Name all the soccer players who played in a under 18 club for La Liga?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },julipc-p(huggingface) +Which key perosn of the Elders is also the president of united World College ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +What are some parties which have people from Mangalore as a member?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +Name the television show whose subsequent work is Crusade and Composer is Stewart Copeland?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },julipc-p(huggingface) +Which person designed the cars which has been designed by ASC Creative Services?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +Which driver had the pole position in 1994 Spanish Grand Prix ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +Count the number of important works done by the writers of The Second Coming?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +Who all are known to play the Gibson Guitar Corporation?,SELECT DISTINCT ?uri WHERE {?uri },julipc-p(huggingface) +Which child of Jack Ferguson became a Prime Minister?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +For whom did Michael Springer palyed for which is also had a former student named Donald Brooks ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +Name the movie written by Monty Python and distributed by Cinema International Corporation ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },julipc-p(huggingface) +Name the partners of Kelly Brook?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +Who is married to Gerard Piqu?,SELECT DISTINCT ?uri WHERE {?uri . },julipc-p(huggingface) +what is the headquarters of Juan Dalmau Ramerez?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +Who is the maker of the engine of Ford F-Series first generation ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +What is the religious affiliation of Neungin High School?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +Who is the owner of the South end ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +What is the colour of Xocolatlite ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +"Which music band made Take Me There, and to which Tedd Riley was associated?",SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +Which political party of Chandra Shekhar is also the political party of Datl Satyanarayana Raju ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +What is the baseball team whose club manager is Chip Hale?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },julipc-p(huggingface) +Which bacteria's taxonomic class is Bacilli?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },julipc-p(huggingface) +Which area operataed by the South Side Elevated Railroad is also the palce of death of the Sakari Suzuki ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +What is the television show whose related with Doctor Who Confidential?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },julipc-p(huggingface) +In which city wasThe Triple Door (The Courage album) performed live?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +Which nearest city of Jurgens Site is the death plce of Jimmie Heuga ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +List the battles fought by Ali Habib Mahmud ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +How many movies are distributed by Cinema International Corporation?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . ?uri },julipc-p(huggingface) +Which Texas based company was founded by Jim Harris ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },julipc-p(huggingface) +List the softwares which runs on Microsoft Windows and has license as Software as a service?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },julipc-p(huggingface) +What stadium's operator is Stan Kroenke,SELECT DISTINCT ?uri WHERE {?uri . ?uri },julipc-p(huggingface) +Which university with athletics department in NCAA Division I Football Bowl Subdivision has nickname Tulane Green Wave ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },julipc-p(huggingface) +Name the Pole driver of 1994 Spanish Grand Prix ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +Where did Georges Wolinski and Judson Huss die/,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +What are the common houses of US Congress and the Kansas Legislature?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +Name the television show where Mona Marshall has given voice and is distributed by Comedy Central?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },julipc-p(huggingface) +What is the successor of PlayStation 4,SELECT DISTINCT ?uri WHERE {?uri . },julipc-p(huggingface) +What is the sovereign state of the Dafydd Benfras where Jasmine Lowson is also citizen of ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +Which destination of Emerald Air is also the city served by houston Fort Bend Airport ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +name the region served by Jerusalem Institue of Justice which was also the conflict region in GazaIsrael ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +What is the total number of professions in which someone who has suicided worked?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +How many golf players are there in Arizona State Sun Devils ?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . ?uri },julipc-p(huggingface) +What is the branch of the politicians whose governor is Bill Clements?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +What are the other notable work of the executive producer of The Runaway Bride episode of Doctor Who?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +Who were involved in the wars where Jonathan Haskell battled?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +What are the reason served by Toll Global Express which is also the country of LPGA ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +What are the awards won by the person who wrote the screen play for Lost in Rio ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +Total number of places where people drafted in the detroit pistons have died?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?uri },julipc-p(huggingface) +Name the club of Julie Hastings ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +"Name the university located in Indiana and has affiliations with Kaplan, Inc.?","SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri }",julipc-p(huggingface) +Give me the total number of employer of the engineers whose one of the employer is McDonnell Aircraft ?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri },julipc-p(huggingface) +"Which universit's affiliation is with Kalpan, Inc. and has campus at Iowa ?","SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri }",julipc-p(huggingface) +What are the regions in which the distributor of Secrets and Lies serves ? ,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +What are the settlements whose neighboring municipalities is Lancy?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },julipc-p(huggingface) +Name the river whose source mountain is Baikal Mountains and mouth location is Arctic Ocean?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },julipc-p(huggingface) +What are the software whose programming language are Multilingual?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },julipc-p(huggingface) +Which birthplace of Liliya Lobanova is also the location of the Snake Island ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +Count all the stateless people,SELECT DISTINCT COUNT(?uri) WHERE {?uri . },julipc-p(huggingface) +Josef Bhler belongs to which political party?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +Where did the war take place where one of the commander was Zuo Zongtang?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +What novels are belong to the genre of Utopian and dystopian fiction?,SELECT DISTINCT ?uri WHERE {?uri },julipc-p(huggingface) +On which river are there things belonging to zambezi river authority?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +Which Paramount TV show was produced by Glen and Les Charles ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },julipc-p(huggingface) +Name some basketball players who have played for chicago bulls?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },julipc-p(huggingface) +Which owner of the national Herald india is the leader of Kumta ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +What is the largest city of Pulau Ubin ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +Horses sired by Karinga Bay have participated in which races?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +What is the alma mater of the scientists known for String theory?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +How many apes are there?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . },julipc-p(huggingface) +Where do beauty queens with brown hair reside?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +List the television shows one of whose distributor's divisions is Warner Bros. Animation.,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },julipc-p(huggingface) +Name the television show directed by Simon Fuller and judged by Jennifier Lopez ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },julipc-p(huggingface) +in which movies have momoki kochi acted,SELECT DISTINCT ?uri WHERE {?uri },julipc-p(huggingface) +What is the base currency of the Benelux and is also used as money in Kerguelen Islands?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +Count the key people of the Clinton Foundation?,SELECT DISTINCT COUNT(?uri) WHERE { ?uri . },julipc-p(huggingface) +Name the company founded in New Mexico and provides Outlook.com as services ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },julipc-p(huggingface) +Which tv show was preceded by The spirit of Christmas and voice to the character was given by Mona Marshall ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },julipc-p(huggingface) +List the producer of the television shows distributed by FremantleMedia.,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +"List the successor of successor of Hayden, Stone & Co.","SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . }",julipc-p(huggingface) +Count the number of battles fought by the military person involved in Morocco ?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri },julipc-p(huggingface) +Who is the owner of Saumarez ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +Name the alma mater of Ernest de Saisset ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +What magazine companies are of form Limited liability company?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },julipc-p(huggingface) +List the driver of SA MArino Grand Prix is also the Pole driver of Canadian Grand Proix ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +"Where was Live in Detroit, MI recorded ?","SELECT DISTINCT ?uri WHERE { ?uri }",julipc-p(huggingface) +Which footballers did their high school in west Sacramento california? ,"SELECT DISTINCT ?uri WHERE {?uri . ?uri }",julipc-p(huggingface) +List the names of the soccer club seasons whose division is 2012 Campeonato Brasileiro Srie A.,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +Which successor of Philippine Ports Authority is the state of origin of Ruben J. Villote ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +Who is the prime minister of Michael Jeffery who is also the minister of Williuam Deane ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +Who is the owner of the FC which owns the Cobham Training Centre?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +Who is considered to be the deciding person when it comes to crustaceans from the Balanidae family?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +Which past members of the The Conglomerate (American group) also sang Take Me There (Blackstreet & Ma song)?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +"Which military unit garrison is Arlington County, Virginia and The Pentagon?","SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri }",julipc-p(huggingface) +What is the launch site of Aquarius (rocket) ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +Count the total number of mammals whose phylum is Chordate and order (taxonomy) is Diprotodontia?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . ?uri },julipc-p(huggingface) +Where did the office holder who is predecessor to Marco Aurelio Robles died ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +What is the programme format of WWTR ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +What is the total number of participant in conflict of SFOR?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +Where is Denver Broncos located ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +Which serving railway line of the Daund Junction railway station is the home port of INS Viraat ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +Who is the performer of the album whose subsequent work is Willie Nelson and Family ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +What are the television shows whose starting music is composed by Ron Grainer?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },julipc-p(huggingface) +Who influenced the author of The Shooting of Dan McGrew ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +Which key person of Clinton Foundation is also the president of Jim Sasser ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +Who is the founder of the trade union which affiliates Amalgamated Association of Iron and Steel Workers?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +Which leader of United States House of Representatives was the appinter of ohn Drayton ?,"SELECT DISTINCT ?uri WHERE { ?uri. ?uri}",julipc-p(huggingface) +Which president of United States had vice president as John Adams?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },julipc-p(huggingface) +Where was James H. Fields buried ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +What is the commander of Battle of Brownstown ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +Who is the fictional character whose family member is Padme Amidala?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },julipc-p(huggingface) +How many different songwriters have had their songs recorded in London?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +Which are the automobile platform whose one of the automobile platform is Dodge ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +What is the total number of other combatant of the military conflicts whose combatant is Choctaw?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri },julipc-p(huggingface) +What is the name of the homeground of football team Panionios G.S.S.?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +List presidents of the school whose one of the president is Charles. Prince of Wales ?,"SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x }",julipc-p(huggingface) +Brian Moriarty designed video games written by whom?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +What automobile engine's successor is BMW M40,SELECT DISTINCT ?uri WHERE {?uri . ?uri },julipc-p(huggingface) +Name the company which produces both Boeing F/A-18 E/F Hornet nad CH-46 Chinook ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },julipc-p(huggingface) +Who develops the computation platform of Microsoft Expression Encoder ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +"What is the official language of Ladonia, which is the target area of Probus Journal?",SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +Where did the conflict take place where Louis Briere de I'Isle was a commander?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +List the other nicknames of city which has one of the nickname as City of Angels ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +What are the television shows whose company is owned by Viacom?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },julipc-p(huggingface) +Quebec born ice hockey players have stopped playing for which teams?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +"In which fields are the graduates of Worcester College, Oxford working?","SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . }",julipc-p(huggingface) +What are some artists on the show whose opening theme is Send It On?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +What is the craft of the Ralph Flanders which is also the profession of Claiborne Pell ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +What are the awards received by spouse of Ellen Lundstrom?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +Give me the home town of all musical artists who uses Guitar as instrument ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +List all binomial authority of the insects whose one of the binomial authority is douard Mntries?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +What are some other things developed by the company who made the remote desktop protocol?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +List the guests of On Broadway ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +Name the airlines which have a hub in airport in SF?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },julipc-p(huggingface) +In how many states can one find Burr Tuss kind of bridges?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?uri },julipc-p(huggingface) +Who are the animator of The Skeleton Dance?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +Name the country whose leader's deputy is Piotr Glinski?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },julipc-p(huggingface) +Which TV show is related to The Sarah Jane Adventures and theme music is composed by Ron Grainer?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },julipc-p(huggingface) +Name the parent company of Ford Air Transport Service ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +Which region of Bannock is the origin od Spaghetti squash ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +Count everyone who lives in a place where Indian English is an official language ?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?uri ?x . },julipc-p(huggingface) +How many religions are practiced by diplomats?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +To whom was Tessa Dahl born to?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +Where were sverre krogh sundbo and havard vad petersson born?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +What is the river whose source is Cowombat Flat and has it's mouth located in Murray Mouth?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },julipc-p(huggingface) +Where does the river flow into which begins in Lebrsnik?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +What is the government type of Ancient Rome ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +What is the home ground of the clubs managed by Ciao Zanardi?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +List the people with Scientology as their religious belief?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },julipc-p(huggingface) +How many teams have rented stadiums in Canada?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +What territory of Sino French War was the battle of Raoul Magrin-Vernerey fought ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +List the outflow of Lake Uniamsi?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +List the universities from a country where Norwegian language is officially accepted.,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },julipc-p(huggingface) +Name the incumbent of Linda Jenness ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +In which countries does the sea lie on whose shore is the city of Cumana?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +Which scientist was advised by John Robert Woodyard?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },julipc-p(huggingface) +Count the affiliations of International Union of Anarchists?,SELECT DISTINCT COUNT(?uri) WHERE { ?uri . },julipc-p(huggingface) +What is the alma mater of the scientist whose PhD advisor is Jean-Claude Latombe ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +What is the Location of the Peetz Table Wind Energy Center which is also the state of Ben Nighthorse Campbell ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +Name the officeholder who hasa child named Augustus and has an associate named Marcus Bibulus ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },julipc-p(huggingface) +Give me someone on the board of trinity house?,SELECT DISTINCT ?uri WHERE {?uri . },julipc-p(huggingface) +Horses grandsired by Sundridge have won which awards?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +"Who was on the first team in the GPs that were held at Watkins Glen, NY?","SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x }",julipc-p(huggingface) +What ethinicity of Linda Hogan is also the state of origin of Holmes Colbert ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +What cities are near to Nihoa which is also known as Bird Island ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +Which shareholder of Naval Air facility Adak is also the operator of New Sanno Hotel ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +What other awards have been given to Golden Globe winners?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +Which allegiance of the John Kotelawala is also the sovereign state of the Sanath Weerakoon ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +List the television shows whose network's sister names is N-tv.,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },julipc-p(huggingface) +God Defend New Zealand is the national anthem of which country?,SELECT DISTINCT ?uri WHERE {?uri },julipc-p(huggingface) +"Which political party of kumta had affiliation with Indian general election, 2004 (Andhra Pradesh) ","SELECT DISTINCT ?uri WHERE { ?uri. ?uri}",julipc-p(huggingface) +In how many different places have people beatified by Pope Pius X died?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri . ?uri },julipc-p(huggingface) +What is the nationality of Aishath Saffa ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +who was the president under whom winston bryant served as a lieutenant?,SELECT DISTINCT ?uri WHERE {?uri },julipc-p(huggingface) +What are the bands associated with the artists of My Favorite Girl ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +What are the television shows whose network's stockholder is Warner Bros. Television?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },julipc-p(huggingface) +Name the Fox TV show judged by Rand Jackson ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },julipc-p(huggingface) +What is the total number of software whose programming language is C++ and operating system is Microsoft Windows?,SELECT DISTINCT COUNT(?uri) WHERE {?uri . ?uri },julipc-p(huggingface) +Name the city of Phil-Ellena ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +What is the combatant of the Northwest Indian War and also the ethnic group of the Linda Hogan ,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +GetTV is owned by which organisation?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +Name the islands that belong to the archipelago whose largest city is Papeete?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . },julipc-p(huggingface) +List the settlements area whose province is Metropolitan City of Venice ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },julipc-p(huggingface) +"What was recorded by Live in Detroit, MI and also palce of birth of the Bodhin Kjolhede?","SELECT DISTINCT ?uri WHERE { ?uri. ?uri}",julipc-p(huggingface) +To which city does Northeast Library belong?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +What show has theme music composer as Ron Grainer and at the same time related to Class (2016 TV series)?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },julipc-p(huggingface) +What is the life stance of the ethnic groups related to Micronesia ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +Which venue of indy PopCon is also the death palce of Louis Le Cocqq ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +What genre's softwares are released with a GNU GPL license?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +Where is the headquarters of Metro Transit (Minnesota) ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +Name the movie with narrator as Trevor Peacock and music composer as Christophe Beck?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },julipc-p(huggingface) +Where did the scientist study whose doctoral thesis was supervised by Leonard Lerman?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +Which venues are located at places governed by John Roberts?,SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri },julipc-p(huggingface) +"Which office holder owes its allegiance to a state whose capital town is Jamestown, Virginia?","SELECT DISTINCT ?uri WHERE { ?x . ?uri ?x . ?uri }",julipc-p(huggingface) +"Which professional fighter, who is also a politician and was elected to House of Representatives of the Philippines?",SELECT DISTINCT ?uri WHERE {?uri },julipc-p(huggingface) +List the comic characters created by Joe Shuster ?,SELECT DISTINCT ?uri WHERE {?uri . ?uri },julipc-p(huggingface) +"Which kind of conventions are held in Rosemont, Illinois?","SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x }",julipc-p(huggingface) +Which governer of Winston Bryant is the president of Joseph Stiglitz ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +Name some ww1 veterans?,SELECT DISTINCT ?uri WHERE {?uri . },julipc-p(huggingface) +Which operator of New Sanno Hotel is also the governing body of the Oahu Railway and Land Company ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +What is the series of the book which is a subsequent work of Blade Runner 2: The Edge of Human ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +In which countries have models hanged themselves?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?x },julipc-p(huggingface) +What currencies have been prevalent in the country whose national anthem is La Marseillaise?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +Who is the relative of Jim Farley (businessman) ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +Name an American football player whose debuted in Chicago Bears and former team is 1998 Baltimore Ravens season?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },julipc-p(huggingface) +Name a river with source country as Zambia and source location as Ikelenge District?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },julipc-p(huggingface) +Which fields of the Paul Demiville is also the faith of Koay Teng Hai ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +Name the institute of Alton Ochsner ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +Who was the cover artist of The Adventure of Tom Sawyer also wrote mark Twain Tonight ?,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +Name the scientist whose academic advisor is Karl Ewald Hasse and supervisor is Georg Meissner?,SELECT DISTINCT ?uri WHERE {?uri . ?uri . ?uri },julipc-p(huggingface) +Which arena of WPC Dynamo Moscow is death location of Tigran Petrosian >,SELECT DISTINCT ?uri WHERE { ?uri. ?uri},julipc-p(huggingface) +Count the number teams which have former ice hockey players which also included American Hockey League ?,SELECT DISTINCT COUNT(?uri) WHERE { ?x . ?x ?uri },julipc-p(huggingface) +List all the schools of the rugby player whose went to school named Pietermaritzburg ?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +Name the office of Richard Coke ?,SELECT DISTINCT ?uri WHERE { ?uri },julipc-p(huggingface) +¿Qué libros de Kerouac han sido publicados por Viking Press?,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Book . ?uri dbo:publisher res:Viking_Press . ?uri dbo:author res:Jack_Kerouac . },julipc-p(huggingface) +¿Qué estados americanos se encuentran en la misma zona que Utah?,PREFIX res: PREFIX dbp: PREFIX yago: PREFIX rdf: SELECT DISTINCT ?uri WHERE { res:Utah dbp:timezone ?x . ?uri rdf:type yago:StatesOfTheUnitedStates . ?uri dbp:timezone ?x . FILTER (?uri != res:Utah) },julipc-p(huggingface) +¿Qué hijas de condes ingleses murieron en sus lugares de nacimiento?,PREFIX dbo: PREFIX yago: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type yago:DaughtersOfBritishEarls . ?uri dbo:birthPlace ?x . ?uri dbo:deathPlace ?y . FILTER (?x != ?y) . },julipc-p(huggingface) +¿Qué instrumentos tocaba John Lennon?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { res:John_Lennon dbo:instrument ?uri . },julipc-p(huggingface) +¿Cuándo fue construída la estatua de la libertad?,PREFIX dbp: PREFIX res: SELECT DISTINCT ?date WHERE { res:Statue_of_Liberty dbp:beginningDate ?date . },julipc-p(huggingface) +Dame todos los actores de películas dirigidas por William Shatner en las qué también haya actúado el mismo.,PREFIX dbo: PREFIX dbp: PREFIX res: SELECT DISTINCT ?uri WHERE { ?x dbo:director res:William_Shatner . ?x dbo:starring res:William_Shatner . { ?x dbo:starring ?uri . } UNION { ?x dbp:starring ?uri . } },julipc-p(huggingface) +Dame todas las personas que hayan nacido en Viena y hayan muerto en Berlin.,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { ?uri dbo:birthPlace res:Vienna . ?uri dbo:deathPlace res:Berlin . },julipc-p(huggingface) +¿Qué altura tiene Michael Jordan?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?num WHERE { res:Michael_Jordan dbo:height ?num . },julipc-p(huggingface) +Dame todas las películas argentinas.,PREFIX dbo: PREFIX dbp: PREFIX res: PREFIX yago: PREFIX rdf: SELECT DISTINCT ?uri WHERE { { ?uri rdf:type yago:ArgentineFilms . } UNION { ?uri rdf:type dbo:Film . { ?uri dbo:country res:Argentina . } UNION { ?uri dbp:country 'Argentina'@en . } } },julipc-p(huggingface) +¿Cúantos hombres y mujeres trabajan para los bomberos de Nueva York?,PREFIX dbp: PREFIX res: SELECT DISTINCT ?num WHERE { res:New_York_City_Fire_Department dbp:strength ?num . },julipc-p(huggingface) +Dame todas las razas de pastor alemán.,PREFIX dbp: PREFIX res: SELECT DISTINCT ?uri WHERE { ?uri dbp:breed res:German_Shepherd . },julipc-p(huggingface) +¿Quién compuso la música para Harold y Maude?,PREFIX res: PREFIX dbo: SELECT DISTINCT ?uri WHERE { res:Harold_and_Maude dbo:musicComposer ?uri . },julipc-p(huggingface) +¿En qué ciudad fué enterrada la antigua reina de los países bajos Juliana?,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { res:Juliana_of_the_Netherlands dbo:restingPlace ?uri. ?uri rdf:type dbo:Settlement . },julipc-p(huggingface) +¿Cuál es el apodo de San Francisco?,PREFIX dbp: PREFIX res: SELECT DISTINCT ?string WHERE { res:San_Francisco dbp:nickname ?string . },julipc-p(huggingface) +Dame todos los astronautas de Apolo 14?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { ?uri dbo:mission res:Apollo_14 . },julipc-p(huggingface) +¿Dónde vive el primer ministor de España?,PREFIX dbp: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Prime_Minister_of_Spain dbp:residence ?uri . },julipc-p(huggingface) +¿Qué otras armas desarrolló el inventor del Uzi?,PREFIX dbo: PREFIX dbp: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Weapon . ?uri dbp:designer ?x . res:Uzi dbp:designer ?x . FILTER (?uri != res:Uzi) },julipc-p(huggingface) +¿Por qué países se extiende el Himalaya?,PREFIX dbp: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Himalayas dbp:country ?uri . },julipc-p(huggingface) +¿En qué año fue fundada la cervecería que produce Pilsner Urquell?,PREFIX dbp: PREFIX res: SELECT DISTINCT ?num WHERE { res:Pilsner_Urquell dbp:brewery ?uri . ?uri dbp:foundation ?num . },julipc-p(huggingface) +¿De qué país viene el creador de Nijntje?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Miffy dbo:creator ?x . ?x dbo:nationality ?uri . },julipc-p(huggingface) +¿Fue Margaret Thatcher química?,PREFIX res: PREFIX dbo: ASK WHERE { res:Margaret_Thatcher dbo:profession res:Chemist . },julipc-p(huggingface) +¿Qué ciudades alemanas tienen más de 250000 habitantes?,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { { ?uri rdf:type dbo:City . } UNION { ?uri rdf:type dbo:Town . } ?uri dbo:country res:Germany . ?uri dbo:populationTotal ?population . FILTER ( ?population > 250000 ) },julipc-p(huggingface) +¿Qué discográfica grabó el primer album de Elvis?,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?x rdf:type dbo:Album . ?x dbo:artist res:Elvis_Presley . ?x dbo:releaseDate ?y . ?x dbo:recordLabel ?uri . } ORDER BY ASC(?y) LIMIT 1,julipc-p(huggingface) +¿Cuál es la capital de Canadá?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Canada dbo:capital ?uri . },julipc-p(huggingface) +¿En qué estado american se encuentra Fort Knox?,PREFIX dbo: PREFIX dbp: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Fort_Knox dbp:location ?uri . ?uri dbo:country res:United_States . },julipc-p(huggingface) +Dame una lista de todos los trompeteros que fueron líderes de un grupo.,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { ?uri dbo:occupation res:Bandleader . ?uri dbo:instrument res:Trumpet . },julipc-p(huggingface) +¿Tienen el príncipe Harry y el prínciple William la misma madre?,"PREFIX dbp: ASK WHERE { dbp:mother ?x . dbp:mother ?y . FILTER (?x = ?y) }",julipc-p(huggingface) +¿En qué conflictos militares participó Lawrence de Arabia?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { res:T._E._Lawrence dbo:battle ?uri . },julipc-p(huggingface) +¿Quién desarrolló Minecraft?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Minecraft dbo:developer ?uri . },julipc-p(huggingface) +¿Cuántas misiones espaciales ha habido?,PREFIX dbo: PREFIX rdf: SELECT COUNT(DISTINCT ?uri) WHERE { ?uri rdf:type dbo:SpaceMission . },julipc-p(huggingface) +Dame todos los coches producidos en Alemania.,PREFIX dbo: PREFIX dbp: PREFIX res: PREFIX yago: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Automobile . { ?uri dbp:production res:Germany . } UNION { ?uri dbp:assembly res:Germany . } UNION { ?uri dbp:manufacturer ?x . { ?x dbo:locationCountry res:Germany . } UNION { ?x rdf:type yago:AutomotiveCompaniesOfGermany . } } },julipc-p(huggingface) +Dame una lista de todos los inventos americanos.,PREFIX yago: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type yago:AmericanInventions . },julipc-p(huggingface) +¿Cuántos hijos tuvo Benjamin Franklin?,PREFIX res: PREFIX dbo: SELECT COUNT(DISTINCT ?uri) WHERE { res:Benjamin_Franklin dbo:child ?uri . },julipc-p(huggingface) +¿Quién fué el sucesor de John F. Kennedy?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { res:John_F._Kennedy dbo:successor ?uri . },julipc-p(huggingface) +¿Es Michele Obama la esposa de Barack Obama?,PREFIX dbo: PREFIX res: ASK WHERE { res:Barack_Obama dbo:spouse res:Michelle_Obama . },julipc-p(huggingface) +Dame una lista de los hijos de Margaret Thatcher.,PREFIX res: PREFIX dbo: SELECT DISTINCT ?uri WHERE { res:Margaret_Thatcher dbo:child ?uri . },julipc-p(huggingface) +¿Quién es el jugador más jóven de la Premier League?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { ?uri dbo:team ?x . ?x dbo:league res:Premier_League . ?uri dbo:birthDate ?y . } ORDER BY DESC(?y) OFFSET 0 LIMIT 1,julipc-p(huggingface) +¿Qué patrimonios de la humanidad fueron reconocidos en los últimos cinco años?,PREFIX dbo: PREFIX dbp: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:WorldHeritageSite . ?uri dbp:year ?x . FILTER ( ?x >= 2008^^xsd:integer) },julipc-p(huggingface) +¿Fué Dutch Schultz judío?,PREFIX dbp: PREFIX res: ASK WHERE { res:Dutch_Schultz dbp:ethnicity 'Jewish'@en . },julipc-p(huggingface) +¿Cuál es la segunda montaña más alta de la tierra?,PREFIX dbo: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Mountain . ?uri dbo:elevation ?elevation . } ORDER BY DESC(?elevation) OFFSET 1 LIMIT 1,julipc-p(huggingface) +Dame todos los libros de Wiliam Goldman con más de 300 páginas.,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Book . ?uri dbo:author res:William_Goldman . ?uri dbo:numberOfPages ?x . FILTER (?x > 300) },julipc-p(huggingface) +¿Cuántas veces ha estado casada Nicole Kidman?,PREFIX dbo: PREFIX res: SELECT COUNT(DISTINCT ?x) WHERE { res:Nicole_Kidman dbo:spouse ?x . },julipc-p(huggingface) +¿Cuál es la cuidad más grande de Australia?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Australia dbo:largestCity ?uri . },julipc-p(huggingface) +¿Quién pintó el Cristo en la tormenta en el lago de Galilea?,PREFIX dbp: PREFIX res: SELECT DISTINCT ?uri WHERE { res:The_Storm_on_the_Sea_of_Galilee dbp:artist ?uri . },julipc-p(huggingface) +Dame todas las plataformas de lanzamiento operadas por la NASA.,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:LaunchPad . ?uri dbo:operator res:NASA . },julipc-p(huggingface) +¿Quién escribió el texto del himno de Polonia?,PREFIX dbo: PREFIX dbp: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Poland dbo:anthem ?x . ?x dbp:author ?uri . },julipc-p(huggingface) +¿Quién creó el comic Capitán América?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Captain_America dbo:creator ?uri . },julipc-p(huggingface) +¿Quién fue el padre de la reina Isabel II?,PREFIX res: PREFIX dbp: SELECT DISTINCT ?uri WHERE { res:Elizabeth_II dbp:father ?uri . },julipc-p(huggingface) +¿Qué estado americano tiene la abreviación MN?,PREFIX dbp: PREFIX yago: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type yago:StatesOfTheUnitedStates . ?uri dbp:postalabbreviation 'MN'@en . },julipc-p(huggingface) +¿Qué películas ha rodado Kurosawa después de Rashomon?,PREFIX dbo: PREFIX dbp: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Film . ?uri dbo:director res:Akira_Kurosawa . { ?uri dbo:releaseDate ?x . } UNION { ?uri dbp:released ?x . } dbo:releaseDate ?y . FILTEr (?y > ?x) },julipc-p(huggingface) +¿Qué surfistas profesionales nacieron en las Filipinas?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { ?uri dbo:occupation res:Surfing . ?uri dbo:birthPlace res:Philippines . },julipc-p(huggingface) +Dame todos los jefes de estado actuales que sean metodístas.,PREFIX dbp: PREFIX res: PREFIX yago: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type yago:CurrentNationalLeaders . ?uri dbp:religion res:Methodism . },julipc-p(huggingface) +¿En qué películas con Clint Eastwood están dirigidas por él mismo?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { ?uri dbo:director res:Clint_Eastwood . ?uri dbo:starring res:Clint_Eastwood . },julipc-p(huggingface) +¿Quién son los padres de la esposa de Juan Carlos I?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Juan_Carlos_I_of_Spain dbo:spouse ?x . ?x dbo:parent ?uri . },julipc-p(huggingface) +¿Cuál es el nombre de soltera de Angela Merkel?,PREFIX dbp: PREFIX res: SELECT DISTINCT ?string WHERE { res:Angela_Merkel dbp:birthName ?string . },julipc-p(huggingface) +¿Quién era llamado Scarface?,PREFIX dbp: PREFIX res: SELECT DISTINCT ?uri WHERE { ?uri dbp:nickname res:Scarface . },julipc-p(huggingface) +¿Cuál es el río más largo?,PREFIX dbo: PREFIX dbp: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:River . ?uri dbp:length ?x . } ORDER BY DESC(?x) OFFSET 0 LIMIT 1,julipc-p(huggingface) +¿Tuvo Sócrates influencia sobre Aristóteles?,PREFIX dbo: PREFIX res: ASK WHERE { res:Aristotle dbo:influencedBy res:Socrates . },julipc-p(huggingface) +¿En qué ciudad del reino unido se encuentra el cuartel genetal del MI6?,PREFIX res: PREFIX dbo: SELECT DISTINCT ?uri WHERE { res:Secret_Intelligence_Service dbo:headquarter ?uri . ?uri dbo:country res:United_Kingdom . },julipc-p(huggingface) +¿En qué zona horaria se encuentra Salt Lake City?,PREFIX res: PREFIX dbp: SELECT DISTINCT ?uri WHERE { res:Salt_Lake_City dbp:timezone ?uri . },julipc-p(huggingface) +Dame todos los juegos de GMT.,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { ?uri dbo:publisher res:GMT_Games . },julipc-p(huggingface) +¿Tiene la nueve serie de Battlestar-Galactica más episodios que la anterior?,PREFIX dbo: PREFIX res: ASK WHERE { dbo:numberOfEpisodes ?x . dbo:numberOfEpisodes ?y . FILTER (?y > ?x) },julipc-p(huggingface) +¿Cúando fué fundada la provincia de Alberta?,PREFIX dbp: PREFIX res: SELECT DISTINCT ?date WHERE { res:Alberta dbp:admittancedate ?date . },julipc-p(huggingface) +¿Qué países une el Rhin?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Rhine dbo:country ?uri . },julipc-p(huggingface) +Dame todas la islas frisias que pertenezcan a los Países Bajos.,PREFIX dbo: PREFIX res: PREFIX yago: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type yago:FrisianIslands . ?uri dbo:country res:Netherlands . },julipc-p(huggingface) +¿Qué barcos fueron bautizados en honor a Benjamin Franklin?,PREFIX res: PREFIX dbp: SELECT DISTINCT ?uri WHERE { ?uri dbp:shipNamesake res:Benjamin_Franklin . },julipc-p(huggingface) +¿Quién es el marido de Amanda Palmer?,PREFIX dbp: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Amanda_Palmer dbp:spouse ?uri . },julipc-p(huggingface) +¿Cuántos empleados tiene Google?,PREFIX res: PREFIX dbo: SELECT DISTINCT ?num WHERE { res:Google dbo:numberOfEmployees ?num . },julipc-p(huggingface) +¿Cuándo murió Michael Jackson?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?date WHERE { res:Michael_Jackson dbo:deathDate ?date . },julipc-p(huggingface) +¿Cuántos habitantes tiene Maribor?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?num WHERE { res:Maribor dbo:populationTotal ?num . },julipc-p(huggingface) +Dame una lista de todos los lagos en Dinamarca.,PREFIX dbo: PREFIX res: PREFIX yago: PREFIX rdf: SELECT DISTINCT ?uri WHERE { { ?uri rdf:type dbo:Lake . ?uri dbo:country res:Denmark . } UNION { ?uri rdf:type yago:LakesOfDenmark . } },julipc-p(huggingface) +¿Qué diosas griegas habitan el Olimpo?,PREFIX dbp: PREFIX res: PREFIX yago: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type yago:GreekGoddesses . ?uri dbp:abode res:Mount_Olympus . },julipc-p(huggingface) +¿Qué alto es el Monte Everest?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?num WHERE { res:Mount_Everest dbo:elevation ?num. },julipc-p(huggingface) +¿De qué estado americano es Sean Parnell el gobernador?,PREFIX yago: PREFIX dbp: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type yago:StatesOfTheUnitedStates . ?uri dbp:governor res:Sean_Parnell . },julipc-p(huggingface) +¿Obtuvo Tesla el premio nobel de física?,PREFIX dbo: PREFIX res: ASK WHERE { res:Nikola_Tesla dbo:award res:Nobel_Prize_in_Physics . },julipc-p(huggingface) +¿Quién es el gobernador de Wyoming?,PREFIX res: PREFIX dbp: SELECT DISTINCT ?uri WHERE { res:Wyoming dbp:governor ?uri . },julipc-p(huggingface) +¿Cúando se fundaron los Hells Angels?,PREFIX dbp: PREFIX res: SELECT DISTINCT ?date WHERE { res:Hells_Angels dbp:founded ?date . },julipc-p(huggingface) +¿Quién es el alcalde de Berlin?,PREFIX dbo: PREFIX res: PREFIX rdfs: SELECT DISTINCT ?uri WHERE { res:Berlin dbo:leader ?uri . },julipc-p(huggingface) +¿Cuánta gente vive en la capital de Australia?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?num WHERE { res:Australia dbo:capital ?x . ?x dbo:populationTotal ?num . },julipc-p(huggingface) +¿Quién fundó Intel?,PREFIX dbo: PREFIX res: PREFIX rdfs: SELECT DISTINCT ?uri WHERE { res:Intel dbo:foundedBy ?uri . },julipc-p(huggingface) +Dame todas las caras B de los Ramones.,PREFIX dbo: PREFIX dbp: PREFIX res: SELECT DISTINCT ?string WHERE { ?x dbo:musicalArtist res:Ramones . ?x dbp:bSide ?string . },julipc-p(huggingface) +¿Por qué ciudades pasa el río Weser?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Weser dbo:city ?uri . },julipc-p(huggingface) +Dame todas las películas que haya dirigido Francis Ford Coppola.,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Film . ?uri dbo:director res:Francis_Ford_Coppola . },julipc-p(huggingface) +¿Qué partido gobierna en Lisboa?,PREFIX dbp: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Lisbon dbp:leaderParty ?uri . },julipc-p(huggingface) +¿Quién produce Orangina?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { ?uri dbo:product res:Orangina . },julipc-p(huggingface) +Dame todas las empresas de Munich?,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Company . { ?uri dbo:location res:Munich . } UNION { ?uri dbo:headquarter res:Munich . } UNION { ?uri dbo:locationCity res:Munich . } },julipc-p(huggingface) +¿Fué la crisis de cuba antes de la invasión de bahía de cochinos?,PREFIX dbo: PREFIX res: ASK WHERE { res:Cuban_Missile_Crisis dbo:date ?x . res:Bay_of_Pigs_Invasion dbo:date ?y . FILTER (?x < ?y) },julipc-p(huggingface) +¿Quién es el conductor de Formula 1 con más carreras?,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:FormulaOneRacer . ?uri dbo:races ?x . } ORDER BY DESC(?x) OFFSET 0 LIMIT 1,julipc-p(huggingface) +¿Qué estado americano fué el último en ser admitido?,PREFIX dbp: PREFIX yago: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type yago:StatesOfTheUnitedStates . ?uri dbp:admittancedate ?x . } ORDER BY DESC(?x) OFFSET 0 LIMIT 1,julipc-p(huggingface) +¿Cuántos idiomas oficiales se hablan en las Seychelles?,PREFIX dbo: PREFIX res: SELECT COUNT(DISTINCT ?x) WHERE { res:Seychelles dbo:officialLanguage ?x . },julipc-p(huggingface) +¿Enseñame todas las canciones de Bruce Springsteen que aparecieron entre 1980 y 1990.,PREFIX dbo: PREFIX res: PREFIX yago: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Song . ?uri dbo:artist res:Bruce_Springsteen . ?uri dbo:releaseDate ?date . FILTER (?date >= '1980-01-01'^^xsd:date && ?date <= '1990-12-31'^^xsd:date) },julipc-p(huggingface) +Dame todos las skateboarders profesionales de Suecia.,PREFIX dbo: PREFIX dbp: PREFIX res: SELECT DISTINCT ?uri WHERE { ?uri dbo:occupation res:Skateboarding . { ?uri dbo:birthPlace res:Sweden . } UNION { ?uri dbo:birthPlace ?place . ?place dbo:country res:Sweden . } },julipc-p(huggingface) +Dame todos los miembros de la banda Prodigy.,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { res:The_Prodigy dbo:bandMember ?uri . },julipc-p(huggingface) +¿Cuántos estudiantes tiene la Universidad Libre de Amsterdam?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?num WHERE { res:Vrije_Universiteit dbo:numberOfStudents ?num . },julipc-p(huggingface) +Dame todas las organizaciones benéficas de Australia.,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { ?uri dbo:type res:Nonprofit_organization . { ?uri dbo:locationCountry res:Australia . } UNION { ?uri dbo:location ?x . ?x dbo:country res:Australia . } },julipc-p(huggingface) +¿Cuántas veces ha estado casada Jane Fonda?,PREFIX dbo: PREFIX res: SELECT COUNT(DISTINCT ?uri) WHERE { res:Jane_Fonda dbo:spouse ?uri . },julipc-p(huggingface) +¿Cuál el la página de Web oficial de Tom Cruise?,PREFIX dbp: PREFIX res: SELECT DISTINCT ?string WHERE { res:Tom_Cruise dbp:website ?string . },julipc-p(huggingface) +¿Que estado de los estados unidos de america tiene la mayor densidad de población?,PREFIX yago: PREFIX dbp: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type yago:StatesOfTheUnitedStates . ?uri dbp:densityrank ?rank . } ORDER BY ASC(?rank) OFFSET 0 LIMIT 1,julipc-p(huggingface) +¿Quién creó Wikipedia?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Wikipedia dbo:author ?uri . },julipc-p(huggingface) +¿Cuántas películas ha producido Hal Roach?,PREFIX dbo: PREFIX res: SELECT COUNT(DISTINCT ?uri) WHERE { ?uri dbo:producer res:Hal_Roach . },julipc-p(huggingface) +¿En qué país nace el Nilo?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Nile dbo:sourceCountry ?uri . },julipc-p(huggingface) +Dame todos los cancilleres alemanos.,PREFIX dbp: PREFIX res: SELECT DISTINCT ?uri WHERE { ?uri dbp:office res:Chancellor_of_Germany . },julipc-p(huggingface) +¿En qué estados federales de Alemania gobierna la SPD?,PREFIX dbp: PREFIX dbo: PREFIX res: PREFIX yago: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type yago:StatesOfGermany . { ?uri dbo:leaderParty res:Social_Democratic_Party_of_Germany . } UNION { ?uri dbp:rulingParty 'SPD'@en . } },julipc-p(huggingface) +¿Por qué río cruza la Brooklyn Bridge?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Brooklyn_Bridge dbo:crosses ?uri . },julipc-p(huggingface) +¿Cómo de alta es Claudia Schiffer?,PREFIX res: PREFIX dbo: SELECT DISTINCT ?height WHERE { res:Claudia_Schiffer dbo:height ?height . },julipc-p(huggingface) +¿Qué series televisivas ideó Walt Disney?,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:TelevisionShow . ?uri dbo:creator res:Walt_Disney . },julipc-p(huggingface) +Dame todas las páginas de Web de empresas con más de 500000 empleados.,PREFIX dbo: PREFIX dbp: PREFIX rdf: PREFIX xsd: SELECT DISTINCT ?string WHERE { ?c rdf:type dbo:Company . { ?c dbo:numberOfEmployees ?employees . } UNION { ?c dbp:numEmployees ?employees . } FILTER( xsd:integer(?employees) > 500000 ) . ?c dbp:homepage ?string . },julipc-p(huggingface) +Dame todas las cuidades en New Jersey que tengan más de 100000 habitantes.,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:City . ?uri dbo:isPartOf res:New_Jersey . ?uri dbo:populationTotal ?inhabitants . FILTER (?inhabitants > 100000) . },julipc-p(huggingface) +¿Qué actores nacieron en Alemania?,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Actor . { ?uri dbo:birthPlace res:Germany . } UNION { ?uri dbo:birthPlace ?place . ?place dbo:country res:Germany . } },julipc-p(huggingface) +¿Qué países tienes más de dos lenguas oficiales?,PREFIX dbo: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Country . ?uri dbo:officialLanguage ?language . } GROUP BY ?uri HAVING (COUNT(?language) > 2),julipc-p(huggingface) +¿En qué estado de los estados unidos se encuentra el monte McKinley?,PREFIX yago: PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type yago:StatesOfTheUnitedStates . res:Mount_McKinley dbo:locatedInArea ?uri . },julipc-p(huggingface) +Dame todas las películas con Tom Cruise,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Film. ?uri dbo:starring res:Tom_Cruise . },julipc-p(huggingface) +¿Cuál es la idioma oficial de Surinam?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Suriname dbo:officialLanguage ?uri . },julipc-p(huggingface) +¿Quen escribió el libro Los pilares de la Tierra?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { res:The_Pillars_of_the_Earth dbo:author ?uri . },julipc-p(huggingface) +¿Qué empresas aerospaciales trabajar también en en medicina?,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Company . ?uri dbo:industry res:Aerospace . ?uri dbo:industry res:Medicine . },julipc-p(huggingface) +¿Qué idiomas se hablan en Estonia?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { ?uri dbo:spokenIn res:Estonia . },julipc-p(huggingface) +¿Son las ranas verdes un tipo de anfibio?,PREFIX dbo: PREFIX res: ASK WHERE { res:Hylidae dbo:class res:Amphibian . },julipc-p(huggingface) +¿Cuándo ingresó Letonia a la unión europea?,PREFIX res: PREFIX dbp: SELECT DISTINCT ?date WHERE { res:Latvia dbp:accessioneudate ?date . },julipc-p(huggingface) +¿Qué países tienen más de diez cuevas?,PREFIX dbo: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Country . ?cave rdf:type dbo:Cave . { ?cave dbo:location ?uri . } UNION { ?cave dbo:location ?loc . ?loc dbo:country ?uri . } } GROUP BY ?uri HAVING(COUNT(?cave) > 10),julipc-p(huggingface) +¿Quién es el creador de Goofy?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Goofy dbo:creator ?uri . },julipc-p(huggingface) +Dame todos los club de fútbol de España.,"PREFIX dbo: PREFIX dbp: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:SoccerClub . { ?uri dbo:ground res:Spain . } UNION { ?uri dbp:ground ?ground . FILTER (regex(?ground,'Spain')) } }",julipc-p(huggingface) +¿Qué cuevas tienen más de 3 entradas?,PREFIX dbo: PREFIX dbp: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Cave . ?uri dbp:entranceCount ?entrance . FILTER (?entrance > 3) . },julipc-p(huggingface) +¿Qué países han introducido el Euro?,PREFIX dbp: PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Country . { ?uri dbo:currency res:Euro . } UNION { ?uri dbp:currencyCode 'EUR'@en . } },julipc-p(huggingface) +Dame todos los nombres propios femeninos.,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:GivenName . ?uri dbo:gender res:Female . },julipc-p(huggingface) +¿Fué Marc Chagall judío?,PREFIX dbp: PREFIX res: ASK WHERE { res:Marc_Chagall dbp:ethnicity 'Jewish'@en . },julipc-p(huggingface) +¿Qué presidentes nacieron en 1945?,"PREFIX dbo: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:President . ?uri dbo:birthDate ?date . FILTER regex(?date, '^1945') . }",julipc-p(huggingface) +¿Cuántas tiendas Aldi hay?,PREFIX res: PREFIX dbo: SELECT DISTINCT ?number WHERE { res:Aldi dbo:numberOfLocations ?number . },julipc-p(huggingface) +¿Estuvo el el presidente de los estados unidos Jackson involucrado en una guerra?,PREFIX dbo: PREFIX res: ASK WHERE { res:Andrew_Jackson dbo:battle ?battle . },julipc-p(huggingface) +¿En qué museo está expuesto el Grito de Munch?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { res:The_Scream dbo:museum ?uri . },julipc-p(huggingface) +¿Qué discográfica grabó el primer album de Elvis?,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?x rdf:type dbo:Album . ?x dbo:artist res:Elvis_Presley . ?x dbo:releaseDate ?y . ?x dbo:recordLabel ?uri . } ORDER BY ASC(?y) OFFSET 0 LIMIT 1,julipc-p(huggingface) +Dame las capitales de todos los países africanos.,PREFIX dbo: PREFIX yago: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?states rdf:type yago:AfricanCountries . ?states dbo:capital ?uri . },julipc-p(huggingface) +¿Qué estados tienen frontera con Illinois?,PREFIX res: PREFIX dbp: SELECT DISTINCT ?uri WHERE { res:Illinois dbp:borderingstates ?uri . },julipc-p(huggingface) +Dame todas la islas que pertenezcan a Japón.,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Island . ?uri dbo:country res:Japan . },julipc-p(huggingface) +¿Quién diseñó la Brooklyn Bridge?,PREFIX res: PREFIX dbp: SELECT DISTINCT ?uri WHERE { res:Brooklyn_Bridge dbp:designer ?uri . },julipc-p(huggingface) +¿Quién era el primer presidente de los Estados Unidos?,PREFIX dbo: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Person . ?uri dbo:office '1st President of the United States'@en . },julipc-p(huggingface) +¿Cuál es la montaña más alta de Australia?,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Mountain . ?uri dbo:locatedInArea res:Australia . ?uri dbo:elevation ?elevation . } ORDER BY DESC(?elevation) OFFSET 0 LIMIT 1,julipc-p(huggingface) +¿Cuántos aeropuertos hay en California?,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Airport . { ?uri dbo:location res:California . } UNION { ?uri dbo:city res:California . } UNION { ?uri dbo:city ?city . ?city dbo:isPartOf res:California . } UNION { ?uri dbo:operator res:California . } },julipc-p(huggingface) +¿Qué jugadores de ajedrez murieron en sus lugares de nacimiento?,PREFIX dbo: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:ChessPlayer . ?uri dbo:birthPlace ?x . ?uri dbo:deathPlace ?y . FILTER (?x = ?y) . },julipc-p(huggingface) +¿En qué capitales europeas tuvieron lugar los juegos olímpicos de verano?,PREFIX yago: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type yago:CapitalsInEurope . ?uri rdf:type yago:HostCitiesOfTheSummerOlympicGames . },julipc-p(huggingface) +Dame todos los coches producidos en Alemania.,PREFIX dbo: PREFIX dbp: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Automobile . { ?uri dbo:assembly res:Germany . } UNION { ?uri dbp:assembly res:Germany . } UNION { { ?uri dbo:manufacturer ?x . } UNION { ?uri dbp:manufacturer ?x . } { ?x dbo:locationCountry res:Germany . } UNION { ?x dbo:location res:Germany . } } },julipc-p(huggingface) +¿Quién fué la mujer del presidente americano Lincoln?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Abraham_Lincoln dbo:spouse ?uri. },julipc-p(huggingface) +Dame todos los actores de películas dirigidas por William Shatner.,PREFIX dbo: PREFIX dbp: PREFIX res: SELECT DISTINCT ?uri WHERE { ?x dbo:director res:William_Shatner . ?x dbo:starring ?uri . },julipc-p(huggingface) +¿Qué surfistas profesionales nacieron en Australia?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { ?uri dbo:occupation res:Surfing . ?uri dbo:birthPlace res:Australia . },julipc-p(huggingface) +¿Quién es el editor de Forbes?,PREFIX res: PREFIX dbo: SELECT DISTINCT ?uri WHERE { res:Forbes dbo:editor ?uri . },julipc-p(huggingface) +Dame todos los actores que hayan actuado en Last Action Hero.,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Last_Action_Hero dbo:starring ?uri . },julipc-p(huggingface) +¿En qué lenguaje de programación esta programado GIMP?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { res:GIMP dbo:programmingLanguage ?uri . },julipc-p(huggingface) +¿En qué país se encuentra el lago Limerick?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Limerick_Lake dbo:country ?uri . },julipc-p(huggingface) +Dame todos los videojuegos de Mean Hamster Software.,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:VideoGame . ?uri dbo:publisher res:Mean_Hamster_Software . },julipc-p(huggingface) +¿Quién ha producido películas en las que actua Natalie Portman?,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?film rdf:type dbo:Film . ?film dbo:starring res:Natalie_Portman . ?film dbo:producer ?uri . },julipc-p(huggingface) +¿En qué películas actúan Julia Roberts y Richard Gere?,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Film . ?uri dbo:starring res:Julia_Roberts . ?uri dbo:starring res:Richard_Gere. },julipc-p(huggingface) +¿Nació Natalie Portman en los estados unidos de américa?,PREFIX dbo: PREFIX res: ASK WHERE { res:Natalie_Portman dbo:birthPlace ?city . ?city dbo:country res:United_States . },julipc-p(huggingface) +¿En cuántas películas ha actuado Leonardo DiCaprio?,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT COUNT(DISTINCT ?uri) WHERE { ?uri rdf:type dbo:Film . ?uri dbo:starring res:Leonardo_DiCaprio . },julipc-p(huggingface) +Dame todas las películas danesas.,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Film . ?uri dbo:country res:Denmark . },julipc-p(huggingface) +¿Quién pintó el Cristo en la tormenta en el lago de Galilea?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { res:The_Storm_on_the_Sea_of_Galilee dbo:author ?uri . },julipc-p(huggingface) +Dame los cumpleaños de los actores de la serie de televisión Charmed.,PREFIX dbo: PREFIX res: SELECT DISTINCT ?date WHERE { res:Charmed dbo:starring ?actor . ?actor dbo:birthDate ?date . },julipc-p(huggingface) +¿En qué ciudad murió John F. Kennedy?,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { res:John_F._Kennedy dbo:deathPlace ?uri . ?uri rdf:type dbo:City . },julipc-p(huggingface) +¿Quién ha producido más películas?,PREFIX dbo: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?film rdf:type dbo:Film . ?film dbo:producer ?uri . } ORDER BY DESC(COUNT(?film)) OFFSET 0 LIMIT 1,julipc-p(huggingface) +¿Qué películas ha rodado Kurosawa después de Rashomon?,PREFIX dbo: PREFIX dbp: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Film . ?uri dbo:director res:Akira_Kurosawa . { ?uri dbo:releaseDate ?x . } UNION { ?uri dbp:released ?x . } res:Rashomon dbo:releaseDate ?y . FILTER (?y > ?x) },julipc-p(huggingface) +¿Hay algún videojuego que se llame Battle Chess?,PREFIX dbo: PREFIX rdf: PREFIX rdfs: ASK WHERE { ?uri rdf:type dbo:VideoGame . ?uri rdfs:label 'Battle Chess'@en . },julipc-p(huggingface) +¿Qué montañas son más altas que el Nanga Parbat?,PREFIX dbo: PREFIX dbp: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { res:Nanga_Parbat dbo:elevation ?elevation . ?uri rdf:type dbo:Mountain . { ?uri dbo:elevation ?otherelevation . } UNION { ?uri dbp:elevationM ?otherelevation . } FILTER (?otherelevation > ?elevation) . },julipc-p(huggingface) +Dame todos los episodios de la prímera época de la serie de HBO Los Sporanos.,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { ?uri dbo:series res:The_Sopranos . ?uri dbo:seasonNumber 1 . },julipc-p(huggingface) +¿Qué empresas de telecomunicaciones tienen su sede en Bélgica?,"PREFIX dbo: PREFIX dbp: PREFIX res: PREFIX rdf: SELECT COUNT(DISTINCT ?uri) WHERE { ?uri rdf:type dbo:Organisation . { ?uri dbo:industry res:Telecommunication . } UNION { ?uri dbp:industry ?industry . FILTER (regex(?industry,'Telecommunications')) . } { ?uri dbo:location res:Belgium. } UNION { ?uri dbp:locationCountry 'Belgium'@en . } }",julipc-p(huggingface) +¿La mujer del presidente Obama se llama Michelle?,"PREFIX dbo: PREFIX res: PREFIX rdfs: ASK WHERE { res:Barack_Obama dbo:spouse ?spouse . ?spouse rdfs:label ?name . FILTER(regex(?name,'Michelle')) }",julipc-p(huggingface) +¿Cuál es la montaña más alta?,PREFIX dbo: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Mountain . ?uri dbo:elevation ?elevation . } ORDER BY DESC(?elevation) OFFSET 0 LIMIT 1,julipc-p(huggingface) +Dame todos las empresas canadienses productoras de música Grunge.,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:RecordLabel . ?uri dbo:genre res:Grunge . ?uri dbo:country res:Canada . },julipc-p(huggingface) +¿En qué ciudad del reino unido se encuentra el cuartel genetal del MI6?,PREFIX res: PREFIX dbo: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:City . res:Secret_Intelligence_Service dbo:headquarter ?uri . },julipc-p(huggingface) +¿Cuál es el río más largo?,PREFIX dbo: PREFIX dbp: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:River . { ?uri dbo:length ?l . } UNION { ?uri dbp:length ?l . } } ORDER BY DESC(?l) OFFSET 0 LIMIT 1,julipc-p(huggingface) +¿En qué películas dirigidas por Garry Mashall actuó Julia Roberts?,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Film . ?uri dbo:starring res:Julia_Roberts . ?uri dbo:director res:Garry_Marshall . },julipc-p(huggingface) +¿Actúa Christian Bale en Velvet Goldmine?,PREFIX dbo: PREFIX res: ASK WHERE { res:Velvet_Goldmine dbo:starring res:Christian_Bale . },julipc-p(huggingface) +¿Quién desarrolló el videojuego Warcraft?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { res:World_of_Warcraft dbo:developer ?uri . },julipc-p(huggingface) +¿Por qué países fluye el río Yenisei?,PREFIX res: PREFIX dbo: SELECT DISTINCT ?uri WHERE { res:Yenisei_River dbo:country ?uri . },julipc-p(huggingface) +¿Qué empresas fueron fundadas en 1930?,"PREFIX dbo: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Organisation . { ?uri dbo:formationYear ?date . } UNION { ?uri dbo:foundingYear ?date. } FILTER regex(?date,'^1930') . }",julipc-p(huggingface) +¿Cuántos empleados tiene IBM?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?number WHERE { res:IBM dbo:numberOfEmployees ?number . },julipc-p(huggingface) +¿Qué países une el Rhin?,PREFIX dbo: PREFIX dbp: PREFIX res: PREFIX rdf: PREFIX rdfs: SELECT DISTINCT ?uri WHERE { res:Rhine dbp:country ?string . ?uri rdf:type dbo:Country . ?uri rdfs:label ?string . },julipc-p(huggingface) +Dame todas las cosmonautas.,PREFIX rdf: PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Astronaut . { ?uri dbo:nationality res:Russia . } UNION { ?uri dbo:nationality res:Soviet_Union . } },julipc-p(huggingface) +¿Quién es el alcalde de Tel Aviv?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Tel_Aviv dbo:leaderName ?uri . },julipc-p(huggingface) +¿Cuál es la montaña más alta después del Annapurna?,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { res:Annapurna dbo:elevation ?elevation . ?uri rdf:type dbo:Mountain . ?uri dbo:elevation ?otherelevation . FILTER (?otherelevation < ?elevation) . } ORDER BY DESC(?otherelevation) OFFSET 0 LIMIT 1,julipc-p(huggingface) +¿Tiene Breaking Bad más episodios que Game of Thrones?,PREFIX dbo: PREFIX res: ASK WHERE { res:Breaking_Bad dbo:numberOfEpisodes ?x . res:Game_of_Thrones dbo:numberOfEpisodes ?y . FILTER (?y > ?x) },julipc-p(huggingface) +Dame una lista de todos los líderes de un grupo que tocan la trompeta.,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { ?uri dbo:occupation res:Bandleader . ?uri dbo:instrument res:Trumpet . },julipc-p(huggingface) +¿Cuándo tuvo lugar la batalla de Gettysburg?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?date WHERE { res:Battle_of_Gettysburg dbo:date ?date . },julipc-p(huggingface) +¿Cuántos idiomas se hablan en Turkmenistán?,PREFIX dbo: PREFIX res: SELECT COUNT(DISTINCT ?x) WHERE { res:Turkmenistan dbo:language ?x . },julipc-p(huggingface) +¿Todavía vive Frank Herbert?,PREFIX dbo: PREFIX res: ASK WHERE { OPTIONAL { res:Frank_Herbert dbo:deathDate ?date . } FILTER (!BOUND(?date)) },julipc-p(huggingface) +¿La proinsulina es una proteina?,PREFIX dbo: PREFIX res: PREFIX rdf: ASK WHERE { res:Proinsulin rdf:type dbo:Protein . },julipc-p(huggingface) +¿Qué premios ha ganado WikiLeaks?,PREFIX res: PREFIX dbp: SELECT DISTINCT ?uri WHERE { res:WikiLeaks dbp:awards ?uri . },julipc-p(huggingface) +¿Qué país tiene más idiomas oficiales?,PREFIX dbo: PREFIX dbp: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Country . ?uri dbp:officialLanguages ?language . } ORDER BY DESC(COUNT(?language)) OFFSET 0 LIMIT 1,julipc-p(huggingface) +Dame todos los países comunistas.,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Country . { ?uri dbo:governmentType res:Communism . } UNION { ?uri dbo:governmentType res:Communist_state . } },julipc-p(huggingface) +¿Qué instrumentos tocaba Cat Stevens?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Cat_Stevens dbo:instrument ?uri . },julipc-p(huggingface) +Dame todos los libros escritos por Danielle Steel.,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Book . ?uri dbo:author res:Danielle_Steel . },julipc-p(huggingface) +¿A quién le pertenecen los Universal Studios?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Universal_Studios dbo:owner ?uri . },julipc-p(huggingface) +¿Con quién está casada la hija de Ingrid Bergman?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Ingrid_Bergman dbo:child ?child . ?child dbo:spouse ?uri . },julipc-p(huggingface) +Dame todas las bibliotecas que fueron establecidas antes de 1400.,PREFIX dbo: PREFIX dbp: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Library . ?uri dbp:established ?year . FILTER (?year < 1400) },julipc-p(huggingface) +¿Es la cuidad más grande de Egipto también capital?,PREFIX res: PREFIX dbo: ASK WHERE { res:Egypt dbo:largestCity ?large . res:Egypt dbo:capital ?capital . FILTER (?large = ?capital) },julipc-p(huggingface) +¿Cuántos países existen en Europa?,PREFIX yago: PREFIX rdf: SELECT COUNT(DISTINCT ?uri) WHERE { ?uri rdf:type yago:EuropeanCountries . },julipc-p(huggingface) +¿Quién es el alcalde de Berlin?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Berlin dbo:leader ?uri . },julipc-p(huggingface) +¿Quién fundó Intel?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Intel dbo:foundedBy ?uri . },julipc-p(huggingface) +Dame todas las caras B de los Ramones.,PREFIX dbo: PREFIX res: SELECT DISTINCT ?string WHERE { ?x dbo:musicalArtist res:Ramones . ?x dbo:bSide ?string . },julipc-p(huggingface) +Dame todas las películas del producente Hal Roach.,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Film . ?uri dbo:producer res:Hal_Roach . },julipc-p(huggingface) +¿Qué puentes son del mismo tipo que el puente de Manhattan?,PREFIX dbo: PREFIX dbp: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Bridge . ?uri dbp:design ?design . res:Manhattan_Bridge dbp:design ?mdesign . FILTER (?design = ?mdesign && ?uri != res:Manhattan_Bridge) . },julipc-p(huggingface) +¿Cuál es el prefijo de Berlin?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?string WHERE { res:Berlin dbo:areaCode ?string . },julipc-p(huggingface) +¿Qué productos de software han sido desarrollados por empresas fundadas en California?,PREFIX rdf: PREFIX dbo: PREFIX dbp: PREFIX res: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Software . ?company rdf:type dbo:Company . ?uri dbo:developer ?company . { ?company dbo:foundationPlace res:California . } UNION { ?company dbp:foundation res:California . } },julipc-p(huggingface) +¿Cuál es la moneda de la república checa?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Czech_Republic dbo:currency ?uri . },julipc-p(huggingface) +¿Qué albums musicales contienen la canción Las Christmas?,PREFIX dbo: PREFIX rdfs: SELECT DISTINCT ?uri WHERE { ?single dbo:album ?uri . ?single rdfs:label 'Last Christmas'@en . },julipc-p(huggingface) +¿Qué patrimonios de la humanidad fueron reconocidos en los últimos dos años?,PREFIX dbo: PREFIX dbp: PREFIX rdf: PREFIX xsd: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:WorldHeritageSite . ?uri dbp:year ?x . FILTER ( ?x >= '2012'^^xsd:integer) },julipc-p(huggingface) +Dame todas las empresas publicitarias.,"PREFIX dbp: PREFIX dbo: PREFIX res: PREFIX rdf: SELECT COUNT(DISTINCT ?uri) WHERE { ?uri rdf:type dbo:Company . ?uri dbp:industry ?industry . FILTER regex(?industry,'advertising','i') . }",julipc-p(huggingface) +¿Fué la crisis de cuba antes de la invasión de bahía de cochinos?,PREFIX dbo: PREFIX res: ASK WHERE { res:Cuban_missile_crisis dbo:date ?x . res:Bay_of_Pigs_Invasion dbo:date ?y . FILTER (?x < ?y) },julipc-p(huggingface) +¿Quién fué el vicepresidente de John F. Kennedy?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { res:John_F._Kennedy dbo:vicePresident ?uri . },julipc-p(huggingface) +¿Cúando se fundó Capcom?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?date WHERE { res:Capcom dbo:foundingDate ?date . },julipc-p(huggingface) +Dame todos los políticos que sean metodístas.,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Politician . ?uri dbo:religion res:Methodism . },julipc-p(huggingface) +¿Cuál es el punto más alto del montes Urales?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Ural_Mountains dbo:highestPlace ?uri . },julipc-p(huggingface) +Dame todos los clubs de la Premier League.,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:SoccerClub . ?uri dbo:league res:Premier_League . },julipc-p(huggingface) +¿Qué monárcas estaban casados con una persona alemana?,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Monarch . ?uri dbo:spouse ?spouse . { ?spouse dbo:birthPlace res:Germany. } UNION { ?spouse dbo:birthPlace ?p . ?p dbo:country res:Germany. } },julipc-p(huggingface) +¿Enseñame todas las canciones de Bruce Springsteen que aparecieron entre 1980 y 1990.,PREFIX dbo: PREFIX res: PREFIX yago: PREFIX rdf: PREFIX xsd: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Song . ?uri dbo:artist res:Bruce_Springsteen . ?uri dbo:releaseDate ?date . FILTER (?date >= '1980-01-01'^^xsd:date && ?date <= '1990-12-31'^^xsd:date) },julipc-p(huggingface) +Dame todos las skateboarders profesionales de Suecia.,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { ?uri dbo:occupation res:Skateboarding . { ?uri dbo:birthPlace res:Sweden . } UNION { ?uri dbo:birthPlace ?place . ?place dbo:country res:Sweden . } },julipc-p(huggingface) +¿De qué murió Bruce Carver?,PREFIX res: PREFIX dbo: SELECT DISTINCT ?uri WHERE { res:Bruce_Carver dbo:deathCause ?uri . },julipc-p(huggingface) +¿Qué patrimonios de la humanidad fueron reconocidos en los últimos cinco años?,"PREFIX dbo: PREFIX dbp: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:WorldHeritageSite . ?uri dbp:year ?x . FILTER ( ?x >= ""2008""^^xsd:integer) }",julipc-p(huggingface) +¿En qué país nace el Ganges?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Ganges dbo:sourceCountry ?uri . },julipc-p(huggingface) +¿Cuántos estudiantes tiene la Universidad Libre de Amsterdam?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?num WHERE { res:VU_University_Amsterdam dbo:numberOfStudents ?num . },julipc-p(huggingface) +¿Cúantos hombres y mujeres trabajan para los bomberos de Nueva York?,PREFIX dbp: PREFIX res: SELECT DISTINCT ?num WHERE { res:New_York_City_Fire_Department dbp:employees ?num . },julipc-p(huggingface) +¿Qué patrimonios de la humanidad fueron reconocidos en los últimos dos años?,PREFIX dbo: PREFIX dbp: PREFIX rdf: PREFIX xsd: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:WorldHeritageSite . { ?uri dbp:year '2013'^^xsd:integer . } UNION { ?uri dbp:year '2014'^^xsd:integer . } },julipc-p(huggingface) +¿Tiene Breaking Bad más episodios que Game of Thrones?,PREFIX dbo: PREFIX res: ASK WHERE { res:Breaking_Bad dbo:numberOfEpisodes ?x . res:Game_of_Thrones dbo:numberOfEpisodes ?y . FILTER (?x > ?y) },julipc-p(huggingface) +¿Tienen el príncipe Harry y el prínciple William la misma madre?,"PREFIX dbo: ASK WHERE { dbo:parent ?x . dbo:parent ?x . }",julipc-p(huggingface) +¿Qué surfistas profesionales nacieron en Australia?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { ?uri dbo:occupation res:Surfing . { ?uri dbo:birthPlace res:Australia . } UNION { ?uri dbo:birthPlace ?x . ?x dbo:country res:Australia . } },julipc-p(huggingface) +¿En qué ciudad del reino unido se encuentra el cuartel genetal del MI6?,PREFIX res: PREFIX dbo: PREFIX rdf: SELECT DISTINCT ?uri WHERE { res:Secret_Intelligence_Service dbo:headquarter ?uri . ?uri dbo:country res:United_Kingdom . },julipc-p(huggingface) +¿Cuántas misiones tiene el programa Soyuz?,PREFIX dbp: PREFIX res: SELECT COUNT(DISTINCT ?uri) WHERE { ?uri dbp:programme res:Soyuz_programme . },julipc-p(huggingface) +¿Tuvo Sócrates influencia sobre Aristóteles?,PREFIX dbo: PREFIX res: ASK WHERE { res:Socrates dbo:influenced res:Aristotle . },julipc-p(huggingface) +¿Es Rita Wilson la esposa de Tom Hanks?,PREFIX dbo: PREFIX res: ASK WHERE { res:Tom_Hanks dbo:spouse res:Rita_Wilson . },julipc-p(huggingface) +¿Quién era llamado Frank The Tank?,PREFIX dbp: SELECT DISTINCT ?uri WHERE { ?uri dbp:nickname 'Frank The Tank'@en . },julipc-p(huggingface) +¿Enseñame todas las canciones de Bruce Springsteen que aparecieron entre 1980 y 1990.,PREFIX dbo: PREFIX res: PREFIX rdf: PREFIX xsd: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Song . ?uri dbo:artist res:Bruce_Springsteen . ?uri dbo:releaseDate ?date . FILTER (?date >= '1980-01-01'^^xsd:date && ?date <= '1990-12-31'^^xsd:date) },julipc-p(huggingface) +¿Qué películas ha rodado Kurosawa?,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Film . ?uri dbo:director res:Akira_Kurosawa . },julipc-p(huggingface) +¿Qué series televisivas ideó John Cleese?,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:TelevisionShow . ?uri dbo:creator res:John_Cleese . },julipc-p(huggingface) +¿Qué puentes son del mismo tipo que el puente de Manhattan?,PREFIX dbo: PREFIX dbp: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Bridge . ?uri dbp:design ?design . res:Manhattan_Bridge dbp:design ?mdesign . FILTER (?design = ?mdesign && ?uri != res:Manhattan_Bridge) .},julipc-p(huggingface) +¿Qué premios ha ganado Douglas Hofstadter?,PREFIX res: PREFIX dbo: SELECT DISTINCT ?uri WHERE { res:Douglas_Hofstadter dbo:award ?uri . },julipc-p(huggingface) +¿Con quién está casada la hija de Robert Kennedy?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Robert_F._Kennedy dbo:child ?child . ?child dbo:spouse ?uri . },julipc-p(huggingface) +¿Quién es el dueño de Rolls-Royce?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Rolls-Royce_Motors dbo:owner ?uri . },julipc-p(huggingface) +¿Por qué países fluye el río Yenisei?,PREFIX res: PREFIX dbo: SELECT DISTINCT ?uri WHERE { res:Yenisei dbo:country ?uri . },julipc-p(huggingface) +¿Quién diseñó la Brooklyn Bridge?,PREFIX res: PREFIX dbo: SELECT DISTINCT ?uri WHERE { res:Brooklyn_Bridge dbo:architect ?uri . },julipc-p(huggingface) +¿Cuál es el punto más alto del montes Urales?,PREFIX dbp: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Ural_Mountains dbp:highest ?uri . },julipc-p(huggingface) +Dame todas las empresas publicitarias.,"PREFIX dbp: PREFIX dbo: PREFIX res: PREFIX rdf: SELECT COUNT(DISTINCT ?uri) WHERE { ?uri rdf:type dbo:Company . { ?uri dbo:industry res:Advertising } UNION { ?uri dbo:industry ?industry . FILTER regex(?industry,'advertising','i') . } }",julipc-p(huggingface) +Dame todos los cancilleres alemanos.,PREFIX dbp: PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Person . { ?uri dbo:office 'Chancellor of Germany' . } UNION { ?uri dbp:office res:Chancellor_of_Germany . } },julipc-p(huggingface) +¿Qué productos de software han sido desarrollados por empresas fundadas en California?,PREFIX rdf: PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Software . ?company rdf:type dbo:Company . ?uri dbo:developer ?company . ?company dbo:foundationPlace res:California . },julipc-p(huggingface) +¿La mujer del presidente Lincoln se llama Mary?,"PREFIX dbo: PREFIX res: PREFIX rdfs: ASK WHERE { res:Abraham_Lincoln dbo:spouse ?spouse . ?spouse rdfs:label ?name . FILTER(regex(?name,'Mary')) }",julipc-p(huggingface) +¿Quién fue el 16th presidente de los Estados Unidos?,PREFIX dbo: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri dbo:office 'President of the United States' . ?uri dbo:orderInOffice '16th' . },julipc-p(huggingface) +¿Nació Natalie Portman en los estados unidos de américa?,PREFIX dbo: PREFIX res: ASK WHERE { { res:Natalie_Portman dbo:birthPlace res:United_States . } UNION { res:Natalie_Portman dbo:birthPlace ?city . ?city dbo:country res:United_States . } },julipc-p(huggingface) +¿Cuántos habitantes tiene la ciudad más grande de Canadá?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?num WHERE { res:Canada dbo:largestCity ?city . ?city dbo:populationTotal ?num . },julipc-p(huggingface) +¿Quién fue el primero en ascender al Monte Everest?,PREFIX res: PREFIX dbo: SELECT DISTINCT ?uri WHERE { res:Mount_Everest dbo:firstAscentPerson ?uri . },julipc-p(huggingface) +¿Cuántos lenguajes de programación existen?,PREFIX dbo: PREFIX rdf: SELECT COUNT(DISTINCT ?uri) WHERE { ?uri rdf:type dbo:ProgrammingLanguage . },julipc-p(huggingface) +¿Cuál es el color oficial de la Universidad de Oxford?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?string WHERE { res:University_of_Oxford dbo:officialSchoolColour ?string . },julipc-p(huggingface) +¿A qué estilo artístico pertenece el pinto de Los Tres Bailarines?,PREFIX res: PREFIX dbo: SELECT DISTINCT ?uri WHERE { res:The_Three_Dancers dbo:author ?person . ?person dbo:movement ?uri . },julipc-p(huggingface) +Dame todos los animales extintos,PREFIX dbo: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Animal . ?uri dbo:conservationStatus 'EX' . },julipc-p(huggingface) +¿Tiene el lugar de nacimiento de Abraham Lincol una página web?,PREFIX dbo: PREFIX dbp: PREFIX res: ASK WHERE { res:Abraham_Lincoln dbo:deathPlace ?p . ?p dbp:website ?w . },julipc-p(huggingface) +Cómo de hondo es el Lago Placid?,PREFIX dbo: SELECT DISTINCT ?n WHERE { dbo:depth ?n . },julipc-p(huggingface) +Dame todos los nietos de Bruce Lee.,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Bruce_Lee dbo:child ?child . ?child dbo:child ?uri . },julipc-p(huggingface) +¿Quién es el jugador mas jóven de dardos?,PREFIX dbo: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:DartsPlayer . ?uri dbo:birthDate ?date . } ORDER BY DESC(?date) OFFSET 0 LIMIT 1,julipc-p(huggingface) +¿Dónde nació Bach?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Johann_Sebastian_Bach dbo:birthPlace ?uri . },julipc-p(huggingface) +¿En qué páises se paga con el Franco CFA?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { ?uri dbo:currency res:West_African_CFA_franc . },julipc-p(huggingface) +¿Cuáles son los 10 mejores videojuegos de rol de acción según la IGN?,PREFIX dbo: PREFIX dbp: PREFIX res: SELECT DISTINCT ?uri WHERE { ?uri . ?uri dbp:ign ?score . } ORDER BY DESC(?score) LIMIT 10,julipc-p(huggingface) +¿Cual es la causa mortal más común?,PREFIX dbo: SELECT DISTINCT ?x WHERE { ?uri dbo:deathCause ?x . } ORDER BY DESC(COUNT(DISTINCT ?uri)) OFFSET 0 LIMIT 1,julipc-p(huggingface) +¿Desemboca el Isar en un lago?,PREFIX dbo: PREFIX res: PREFIX rdf: ASK WHERE { ?x dbo:inflow res:Isar . ?x rdf:type dbo:Lake . },julipc-p(huggingface) +Dame todas las películas producidas por Steven Spielberg con un presupuesto de al menos 80 milliones de dólares.,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Film . ?uri dbo:director res:Steven_Spielberg . ?uri dbo:budget ?b . FILTER( xsd:double(?b) >= 8.0E7 ) },julipc-p(huggingface) +Dame todos los escritores que hayan recibido el premio nobel de literatura.,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Writer . ?uri dbo:award res:Nobel_Prize_in_Literature . },julipc-p(huggingface) +Dame todas las taikonautas.,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Astronaut . ?uri dbo:nationality res:China . },julipc-p(huggingface) +¿Cuántas páginas tiene Guerra y Paz?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?n WHERE { res:War_and_Peace dbo:numberOfPages ?n . },julipc-p(huggingface) +¿Qué puente tiene el mayor largo del vano?,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Bridge . ?uri dbo:mainspan ?s . } ORDER BY DESC(?s) OFFSET 0 LIMIT 1,julipc-p(huggingface) +Dame todos los actores llamados Baldwin.,PREFIX dbo: PREFIX res: PREFIX foaf: SELECT DISTINCT ?uri WHERE { ?uri foaf:surname 'Baldwin'@en . { ?uri dbo:occupation res:Actor . } UNION { ?uri rdf:type dbo:Actor . } },julipc-p(huggingface) +¿Quién es el jugador más alto de los Atlanta Falcons?,PREFIX dbo: PREFIX dbp: PREFIX res: SELECT DISTINCT ?uri WHERE { ?uri dbo:team res:Atlanta_Falcons . ?uri dbo:height ?h . } ORDER BY DESC(?h) OFFSET 0 LIMIT 1,julipc-p(huggingface) +¿Qué ríos desembocan en un lago alemán?,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:River . ?x dbo:inflow ?uri . ?x rdf:type dbo:Lake . ?x dbo:country res:Germany . },julipc-p(huggingface) +¿Cuántas películas de James Bond existen?,PREFIX rdf: PREFIX yago: SELECT COUNT(DISTINCT ?uri) WHERE { ?uri rdf:type yago:JamesBondFilms . },julipc-p(huggingface) +¿Qué cohetes han sido lanzados desde Baionur?,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Rocket . ?uri dbo:launchSite res:Baikonur_Cosmodrome . },julipc-p(huggingface) +¿Qué papa fue el sucesor de Juan Pablo II?,PREFIX res: PREFIX dbp: SELECT DISTINCT ?uri WHERE { res:Pope_John_Paul_II dbp:successor ?uri . },julipc-p(huggingface) +Dame todos los partidos políticos holandeses,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:PoliticalParty . ?uri dbo:country res:Netherlands . },julipc-p(huggingface) +¿Cuándo es Halloween?,PREFIX dbp: PREFIX res: SELECT DISTINCT ?date WHERE { res:Halloween dbp:date ?date . },julipc-p(huggingface) +Dame todos los oceanógrafos suecos.,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { ?uri dbo:field res:Oceanography . ?uri dbo:birthPlace res:Sweden . },julipc-p(huggingface) +Dame todos los actores nacidos en Berlin.,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Actor . ?uri dbo:birthPlace res:Berlin . },julipc-p(huggingface) +¿Cuál fue la última película con Alec Guinness?,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Film . ?uri dbo:starring res:Alec_Guinness . ?uri dbo:releaseDate ?date . } ORDER BY DESC(?date) LIMIT 1,julipc-p(huggingface) +¿Que poeta ha escrito el mayor número de libros?,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri dbo:occupation res:Poet . ?x dbo:author ?uri . ?x rdf:type dbo:Book . } ORDER BY DESC(COUNT(?x)) OFFSET 0 LIMIT 1,julipc-p(huggingface) +¿Cuántos idiomas se hablan en Colombia?,PREFIX dbo: PREFIX res: SELECT COUNT(DISTINCT ?uri) WHERE { ?uri rdf:type dbo:Language . res:Colombia dbo:language ?uri . },julipc-p(huggingface) +¿Qué abrevia IYCM?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { ?uri dbo:abbreviation 'IYCM' . },julipc-p(huggingface) +¿Cuál ha sido la posición de ranking más baja de Brasil en el ranking mundial de la FIFA?,PREFIX dbp: PREFIX res: SELECT DISTINCT ?n WHERE { res:Brazil_national_football_team dbp:fifaMin ?n . },julipc-p(huggingface) +Dame las capitales de todos los países que atraviesa el Himalaya.,PREFIX dbp: PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Himalayas dbp:country ?country . ?country dbo:capital ?uri . },julipc-p(huggingface) +¿Qué actor hizo el papel de Chewbacca?,PREFIX dbp: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Chewbacca dbp:portrayer ?uri . },julipc-p(huggingface) +¿Qué ingredientes son necesarios para una tarta de zanahorias?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Carrot_cake dbo:ingredient ?uri . },julipc-p(huggingface) +¿La Coca Cola es una bebida?,PREFIX dbo: PREFIX res: PREFIX rdf: ASK WHERE { res:Cola rdf:type dbo:Beverage . },julipc-p(huggingface) +¿Quién ha estado casado con Tom Cruise?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { ?uri dbo:spouse res:Tom_Cruise. },julipc-p(huggingface) +¿Cuál es la película de Tim Burton con el mayor presupuesto?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { ?uri dbo:director res:Tim_Burton . ?uri dbo:budget ?b . } ORDER BY ?b OFFSET 0 LIMIT 1,julipc-p(huggingface) +¿Cuánto pesa el satélite más ligero de Júpiter?,PREFIX dbo: PREFIX dbp: PREFIX res: SELECT DISTINCT ?n WHERE { ?uri dbp:satelliteOf res:Jupiter . ?uri dbo:mass ?n . } ORDER BY ASC(?n) OFFSET 0 LIMIT 1,julipc-p(huggingface) +¿Qué actor ha actuado en el mayor número de películas?,PREFIX dbo: PREFIX dbp: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Actor . ?f rdf:type dbo:Film . ?f dbo:starring ?uri . } ORDER BY DESC(COUNT(DISTINCT(?f))) OFFSET 0 LIMIT 1,julipc-p(huggingface) +¿Está James Bond casado?,PREFIX dbo: PREFIX res: ASK WHERE { res:James_Bond dbo:spouse ?uri . },julipc-p(huggingface) +Dame todos los grupos australianos de metalcore.,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Band . ?uri dbo:genre res:Metalcore . { ?uri dbo:hometown res:Australia . } UNION { ?uri dbo:hometown ?h . ?h dbo:country res:Australia . } },julipc-p(huggingface) +Dame todos los actores nacidos en Paris después de 1950.,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Actor . ?uri dbo:birthPlace res:Paris . ?uri dbo:birthDate ?date . FILTER ( ?date >= xsd:dateTime('1950-12-31T00:00:00Z')) },julipc-p(huggingface) +¿Cuándo fue disparado Carlo Giuliani?,PREFIX dbp: PREFIX res: SELECT DISTINCT ?date WHERE { res:Death_of_Carlo_Giuliani dbp:dateOfDeath ?date . },julipc-p(huggingface) +¿Cuáles son los cuatro jugadores de baloncesto de categoría MVP más jóvenes?,"PREFIX dbo: PREFIX dbp: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:BasketballPlayer . ?uri dbo:birthDate ?date. ?uri dbp:highlights ?h . FILTER regex(?h,'MVP') } ORDER BY DESC(?date) OFFSET 0 LIMIT 4",julipc-p(huggingface) +¿Qué empresas tienen mas de 1 millón de empleados?,PREFIX dbo: PREFIX dbp: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Company . { ?uri dbo:numberOfEmployees ?n . } UNION { ?uri dbp:numEmployees ?n . } FILTER ( ?n > 1000000 ) },julipc-p(huggingface) +Dame todos los nadadores nacidos en Moscú,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Swimmer . ?uri dbo:birthPlace res:Moscow . },julipc-p(huggingface) +¿Quien se llamaba Rodzilla?,"PREFIX dbp: SELECT DISTINCT ?uri WHERE { ?uri dbp:nickname ""Rodzilla""@en . }",julipc-p(huggingface) +Muéstrame el libro escrito por Muhammad Ali.,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Book . ?uri dbo:author res:Muhammad_Ali . },julipc-p(huggingface) +¿Cuantos museos hay en Paris?,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Museum . ?uri dbo:location res:Paris . },julipc-p(huggingface) +¿Que ciudad tiene la mayor población?,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:City . ?uri dbo:populationTotal ?pop . } ORDER BY DESC(?pop) OFFSET 0 LIMIT 1,julipc-p(huggingface) +¿Que ciudad tiene la menor población?,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:City . ?uri dbo:populationTotal ?pop . } ORDER BY ASC(?pop) OFFSET 0 LIMIT 1,julipc-p(huggingface) +Dame todos los programas de televisión con Neil Patrick Harris.,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:TelevisionShow . ?uri dbo:starring res:Neil_Patrick_Harris . },julipc-p(huggingface) +¿Quien escribió Los juegos del hambre?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { res:The_Hunger_Games dbo:author ?uri . },julipc-p(huggingface) +Dame una lista de los clubs de futbol que juegan en Bundesliga.,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:SoccerClub . ?uri dbo:league res:Bundesliga . },julipc-p(huggingface) +¿En que país esta el monte Everest?,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { res:Mount_Everest dbo:locatedInArea ?uri . ?uri rdf:type dbo:Country . },julipc-p(huggingface) +¿Quien es el fundador de Penguin Books?,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { res:Penguin_Books dbo:founder ?uri . },julipc-p(huggingface) +¿Que lenguajes de programación influenciaron el Javascript?,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:ProgrammingLanguage . ?uri dbo:influenced res:JavaScript . },julipc-p(huggingface) +¿Tuvo hijos el Che Guevara?,PREFIX dbo: PREFIX res: ASK WHERE { res:Che_Guevara dbo:child ?uri . },julipc-p(huggingface) +Dame todos los musicales con música de Elton John.,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Musical . ?uri dbo:musicBy res:Elton_John . },julipc-p(huggingface) +Muéstrame todas las cervecerías en Australia.,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri ?x WHERE { ?uri rdf:type dbo:Brewery . { ?uri dbo:location res:Australia . } UNION { ?uri dbo:location ?x . ?x dbo:country res:Australia . } },julipc-p(huggingface) +¿Cuando se completo el Titanic?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?date WHERE { res:RMS_Titanic dbo:completionDate ?date . },julipc-p(huggingface) +¿Cuanto costo Pulp Fiction?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?n WHERE { res:Pulp_Fiction dbo:budget ?n . },julipc-p(huggingface) +¿Cuantas líneas aéreas existen?,PREFIX dbo: PREFIX rdf: SELECT COUNT(DISTINCT ?uri) WHERE { ?uri rdf:type dbo:Airline . },julipc-p(huggingface) +¿Quien actuó como el agente Smith en Matrix?,PREFIX dbp: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Agent_Smith dbp:portrayer ?uri . },julipc-p(huggingface) +¿Cuantos hidrates de carbono tienen la manteca de cacahuete?,PREFIX dbp: PREFIX res: SELECT DISTINCT ?carbs WHERE { res:Peanut_butter dbp:carbs ?carbs . },julipc-p(huggingface) +¿Que libro tiene el mayor numero de paginas?,PREFIX dbo: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Book . ?uri dbo:numberOfPages ?n . } ORDER BY DESC(?n) OFFSET 0 LIMIT 1,julipc-p(huggingface) +¿Cuantos puentes cruzan el Siena?,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Bridge . ?uri dbo:crosses res:Seine . },julipc-p(huggingface) +¿Quien es el alcalde de la capital de la Polinesia Francesa?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { res:French_Polynesia dbo:capital ?x . ?x dbo:mayor ?uri . },julipc-p(huggingface) +¿Cuando murió el creador de Drácula?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?date WHERE { res:Count_Dracula dbo:creator ?x . ?x dbo:deathDate ?date . },julipc-p(huggingface) +¿Donde están situadas las Casas del Parlamento?,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT ?uri WHERE { res:Palace_of_Westminster dbo:location ?uri . },julipc-p(huggingface) +Muéstrame todos los edificios góticos en Kent.,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT ?uri WHERE { ?uri rdf:type dbo:Building . ?uri dbo:architecturalStyle res:English_Gothic_architecture . ?uri dbo:location res:Kent . },julipc-p(huggingface) +¿Quien fue el papa que fundo la televisión Vaticana?,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT ?uri WHERE { ?uri rdf:type dbo:Pope . res:Vatican_Television_Center dbo:foundedBy ?uri . },julipc-p(huggingface) +¿Qué aerolíneas forman parte del la alianza SkyTeam?,PREFIX res: PREFIX dbp: PREFIX dbo: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Airline . { ?uri dbp:alliance res:SkyTeam . } UNION { ?uri dbo:Alliance res:SkyTeam . } },julipc-p(huggingface) +"¿Cuál es la población total de Melbourne, Florida?","PREFIX dbo: SELECT ?uri WHERE { dbo:populationTotal ?uri . }",julipc-p(huggingface) +¿Qué aeropuertos sirve Air China?,PREFIX res: PREFIX dbo: SELECT DISTINCT ?uri WHERE { res:Air_China dbo:targetAirport ?uri . },julipc-p(huggingface) +¿En que año nació Rachel Stevens?,PREFIX res: PREFIX dbo: SELECT DISTINCT ?uri WHERE { res:Rachel_Stevens dbo:birthYear ?uri . },julipc-p(huggingface) +¿Dónde fue JFK asesinado?,PREFIX res: PREFIX dbo: SELECT DISTINCT ?uri WHERE { res:John_F._Kennedy dbo:deathPlace ?uri . },julipc-p(huggingface) +¿Cuántos políticos se han graduado en la universidad de Columbia?,PREFIX res: PREFIX dbo: SELECT DISTINCT COUNT(?uri) WHERE { ?uri dbo:profession res:Politician . ?uri dbo:almaMater res:Columbia_University . },julipc-p(huggingface) +¿Qué científicos son conocidos por el proyecto Manhattan y el premio Nobel de la Paz?,PREFIX res: PREFIX dbo: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri dbo:knownFor res:Manhattan_Project . ?uri rdf:type dbo:Scientist . ?uri dbo:knownFor res:Nobel_Peace_Prize . },julipc-p(huggingface) +¿Cuál es el volcán mas alto en África?,PREFIX dbo: PREFIX res: PREFIX rdf: PREFIX yago: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Volcano . ?uri dbo:locatedInArea ?area . ?area rdf:type yago:AfricanCountries . ?uri dbo:elevation ?elevation . } ORDER BY DESC(?elevation) OFFSET 0 LIMIT 1,julipc-p(huggingface) +¿Qué cerveza se ha originado en Irlanda?,"PREFIX res: PREFIX dbp: SELECT DISTINCT ?uri WHERE { ?uri dbp:type res:Beer . ?uri dbp:origin ""Ireland""@en . }",julipc-p(huggingface) +¿Cuáles son las especialidades del UNC Health Care?,PREFIX dbo: PREFIX res: PREFIX dbp: PREFIX rdf: SELECT DISTINCT ?uri WHERE { res:UNC_Health_Care dbp:speciality ?uri . },julipc-p(huggingface) +¿Quién es el due��o de Facebook?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Facebook dbo:foundedBy ?uri . },julipc-p(huggingface) +¿De que región es el vino Melon de Bourgogne?,PREFIX res: PREFIX dbo: SELECT DISTINCT ?uri WHERE { res:Melon_de_Bourgogne dbo:wineRegion ?uri . },julipc-p(huggingface) +¿Quién fue influenciado por Socrates?,PREFIX res: PREFIX dbo: SELECT DISTINCT ?uri WHERE { ?uri dbo:influencedBy res:Socrates . },julipc-p(huggingface) +¿Quién fue el presidente de Pakistán en 1978?,PREFIX res: PREFIX dbp: SELECT DISTINCT ?uri WHERE { ?uri dbp:title res:President_of_Pakistan . ?uri dbp:years 1978 . },julipc-p(huggingface) +Dame actores Ingleses protagonizando Lovesick.,PREFIX res: PREFIX dbo: PREFIX yago: SELECT DISTINCT ?uri WHERE { res:Lovesick dbo:starring ?uri . { ?uri dbo:birthPlace res:England . } UNION { ?uri rdf:type yago:EnglishFilmActors . } },julipc-p(huggingface) +¿Que tipos hay de trastornos de la alimentación?,PREFIX yago: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type yago:EatingDisorders . },julipc-p(huggingface) +¿Quién estuvo casado con el presidente Chirac?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Jacques_Chirac dbo:spouse ?uri . },julipc-p(huggingface) +¿Cuál es el área metropolitana mas larga en el estado de Washington?,PREFIX res: PREFIX dbp: SELECT DISTINCT ?uri WHERE { dbp:largestmetro ?uri . },julipc-p(huggingface) +¿Dónde en Francia se produce el vino espumoso?,PREFIX res: PREFIX dbo: SELECT DISTINCT ?uri WHERE { ?uri dbo:wineProduced res:Sparkling_wine . ?uri dbo:location res:France . },julipc-p(huggingface) +¿Dónde murió Hillel Slovak?,PREFIX res: PREFIX dbo: SELECT DISTINCT ?uri WHERE { res:Hillel_Slovak dbo:deathPlace ?uri . },julipc-p(huggingface) +¿Cuál es la zona horaria en San Pedro de Atacama?,PREFIX res: PREFIX dbo: SELECT DISTINCT ?uri WHERE { res:San_Pedro_de_Atacama dbo:timezone ?uri . },julipc-p(huggingface) +¿En que ciudad termina la ruta Chilena 68?,PREFIX res: PREFIX dbo: SELECT DISTINCT ?uri WHERE { res:Chile_Route_68 dbo:routeEnd ?uri . },julipc-p(huggingface) +Dame todos los astronautas de la ESA.,PREFIX rdf: PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Astronaut . ?uri dbo:type res:European_Space_Agency . },julipc-p(huggingface) +Dame todos los días festivos en Suecia.,PREFIX rdf: PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Holiday . ?uri dbo:country res:Sweden . },julipc-p(huggingface) +¿Quien es el premio Pilitzer mas joven?,PREFIX rdf: PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { ?uri dbo:award res:Pulitzer_Prize . ?uri dbo:birthDate ?d . } ORDER BY DESC(?d) OFFSET 0 LIMIT 1,julipc-p(huggingface) +¿Que animales están en peligro de extinción?,PREFIX dbo: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Animal . ?uri dbo:conservationStatus 'CR' . },julipc-p(huggingface) +¿Que jugadores de futbol han nacido en Malta?,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:SoccerPlayer . ?uri dbo:birthPlace res:Malta . },julipc-p(huggingface) +¿Fue Arnold Schwarzenegger a la universidad?,PREFIX dbo: PREFIX res: PREFIX rdf: ASK WHERE { res:Arnold_Schwarzenegger dbo:almaMater ?x . ?x rdf:type dbo:University . },julipc-p(huggingface) +¿Qué lenguajes de programación fueron influenciados por el Perl?,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:ProgrammingLanguage . { ?uri dbo:influencedBy res:Perl . } UNION { res:Perl dbo:influenced ?uri . } },julipc-p(huggingface) +¿Es Barack Obama demócrata?,PREFIX dbo: PREFIX res: ASK WHERE { res:Barack_Obama dbo:party . },julipc-p(huggingface) +¿Cuántos hijos tiene Eddie Murphy?,PREFIX dbp: PREFIX res: SELECT DISTINCT ?n WHERE { res:Eddie_Murphy dbp:children ?n . },julipc-p(huggingface) +¿Cuál es el hijo mas mayor de Meryl Streep?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Meryl_Streep dbo:child ?uri . ?uri dbo:birthDate ?d . } ORDER BY ASC(?d) OFFSET 0 LIMIT 1,julipc-p(huggingface) +¿Quién asesino a John Lennon?,PREFIX rdf: PREFIX dbo: PREFIX res: PREFIX dbp: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Person. ?uri dbp:conviction res:Death_of_John_Lennon. },julipc-p(huggingface) +¿Qué programa de viajero frecuente tienen la mayoría de las aerolineas?,PREFIX dbo: PREFIX dbp: PREFIX rdf: PREFIX yago: SELECT ?uri WHERE { ?airline rdf:type dbo:Airline. ?airline dbp:frequentFlyer ?uri. ?uri rdf:type yago:FrequentFlyerPrograms. } ORDER BY DESC(COUNT(DISTINCT ?airline)) OFFSET 0 LIMIT 1,julipc-p(huggingface) +¿En que ciudad esta la sede de Air China?,PREFIX res: PREFIX yago: PREFIX dbo: SELECT DISTINCT ?uri WHERE { res:Air_China dbo:headquarter ?uri . ?uri rdf:type yago:City108524735 . },julipc-p(huggingface) +¿Qué artistas nacieron en la misma fecha que Rachel Stevens?,PREFIX res: PREFIX dbp: PREFIX dbo: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Artist. res:Rachel_Stevens dbp:dateOfBirth ?date . ?uri dbp:dateOfBirth ?date . },julipc-p(huggingface) +¿Cuántos científicos se han graduado en un Universidad de la Ivy League?,PREFIX res: PREFIX dbo: SELECT DISTINCT count (?uri) WHERE { ?uri rdf:type dbo:Scientist . ?uri dbo:almaMater ?university . ?university dbo:affiliation res:Ivy_League . },julipc-p(huggingface) +¿Que tipo de uva crece en Oregon?,PREFIX res: PREFIX dbo: SELECT DISTINCT ?uri WHERE { res:Oregon_wine dbo:growingGrape ?uri . },julipc-p(huggingface) +¿Quien protagoniza peliculas españolas producidas por Benicio del Toro?,PREFIX res: PREFIX dbo: PREFIX rdf: PREFIX dbp: SELECT DISTINCT ?uri WHERE { ?film rdf:type dbo:Film . ?film dbo:country res:Spain . ?film dbo:producer res:Benicio_del_Toro . ?film dbo:starring ?uri . ?uri rdf:type dbo:Person . },julipc-p(huggingface) +¿Quien es el manager de Real Madrid?,PREFIX dbo: SELECT DISTINCT ?uri WHERE { dbo:manager ?uri . },julipc-p(huggingface) +¿Cual es la moneda de China?,PREFIX res: PREFIX dbo: SELECT DISTINCT ?uri WHERE { res:China dbo:currency ?uri . },julipc-p(huggingface) +¿Que peliculas protagonizadas por Brad Pitt han sido dirigidas por Guy Ritchie?,PREFIX res: PREFIX dbo: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Film . ?uri dbo:starring res:Brad_Pitt . ?uri dbo:director res:Guy_Ritchie . },julipc-p(huggingface) +¿Cuantas compañías han sido fundadas por el fundador de Facebook?,PREFIX dbo: PREFIX res: SELECT DISTINCT COUNT(?c) WHERE { res:Facebook dbo:foundedBy ?uri . ?c dbo:foundedBy ?uri . },julipc-p(huggingface) +¿Cuántas compañías fueron fundadas en el mismo año que Google?,PREFIX dbo: PREFIX res: SELECT COUNT(DISTINCT ?c) WHERE { ?c rdf:type dbo:Company . ?c dbo:foundingYear ?year . res:Google dbo:foundingYear ?year . },julipc-p(huggingface) +¿Qué subsidiario de Lufthansa vuela en Dortmund y en Berlin?,PREFIX res: PREFIX dbo: SELECT DISTINCT ?uri WHERE { res:Lufthansa dbo:subsidiary ?uri . ?uri dbo:targetAirport res:Dortmund_Airport . ?uri dbo:targetAirport res:Berlin_Tegel_Airport . },julipc-p(huggingface) +¿Cuántas compañías son miembros del la Star Alliance?,PREFIX dbo: PREFIX dbp: PREFIX res: PREFIX rdf: SELECT COUNT(DISTINCT ?uri) WHERE { ?uri rdf:type dbo:Airline . ?uri dbp:alliance res:Star_Alliance . },julipc-p(huggingface) +Dame todas las naves espaciales que han volado a Marte,PREFIX dbo: PREFIX dbp: PREFIX res: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Spacecraft . ?uri dbp:planet res:Mars . },julipc-p(huggingface) +¿Qué músico ha escrito el mayor numero de libros?,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri dbo:occupation res:Musician . ?x dbo:author ?uri . ?x rdf:type dbo:Book . } ORDER BY DESC(COUNT(?x)) OFFSET 0 LIMIT 1,julipc-p(huggingface) +Muestrame todas las personas nacidas en Halloween,PREFIX dbp: PREFIX res: PREFIX dbo: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Person . { ?uri dbo:birthDate ?date . } UNION { ?uri dbp:birthDate ?date . } res:Halloween dbp:date ?date . },julipc-p(huggingface) +Dame todas las organizaciones Suizas sin animo de lucro,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { ?uri dbo:type res:Nonprofit_organization . { ?uri dbo:locationCountry res:Switzerland . } UNION { ?uri dbo:location ?x . ?x dbo:country res:Switzerland . } },julipc-p(huggingface) +¿En que país se sitúa la Meca?,PREFIX res: PREFIX dbo: SELECT DISTINCT ?uri WHERE { res:Mecca dbo:country ?uri . },julipc-p(huggingface) +¿Cual es la ganancia en neto de Apple?,PREFIX dbo: SELECT DISTINCT ?ni WHERE { dbo:netIncome ?ni . },julipc-p(huggingface) +¿Qué significa la abreviación FIFA?,PREFIX res: PREFIX dbp: SELECT DISTINCT ?name WHERE { res:FIFA dbp:name ?name . },julipc-p(huggingface) +¿Cuándo se disolvió la dinastía de Ming?,PREFIX res: PREFIX dbo: SELECT DISTINCT ?date WHERE { res:Ming_dynasty dbo:dissolutionDate ?date . },julipc-p(huggingface) +¿Qué museo en Nueva York tiene el mayor numero de visitantes?,PREFIX res: PREFIX dbo: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Museum . ?uri dbo:location res:New_York_City . ?uri dbo:numberOfVisitors ?num . } ORDER BY DESC(?num) OFFSET 0 LIMIT 1,julipc-p(huggingface) +¿Es el lago Baikal mayor que el lago Great Bear?,PREFIX res: PREFIX dbo: ASK WHERE { res:Lake_Baikal dbo:areaTotal ?a1 . res:Great_Bear_Lake dbo:areaTotal ?a2 . FILTER (?a1 > ?a2) },julipc-p(huggingface) +¿Los postres de que país contienen pescado?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { ?x dbo:type res:Dessert . ?x dbo:origin ?uri . ?x dbo:ingredient res:Fish . },julipc-p(huggingface) +¿Cuál es la montaña mas alta en Italia?,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Mountain . ?uri dbo:locatedInArea res:Italy . ?uri dbo:elevation ?num . } ORDER BY DESC(?num) OFFSET 0 LIMIT 1,julipc-p(huggingface) +¿Dónde estudio el arquitecto de la torre Eiffel?,PREFIX dbp: PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Eiffel_Tower dbo:architect ?x . ?x dbp:almaMater ?uri . },julipc-p(huggingface) +¿Qué partidos Griegos están a favor de Europa?,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:PoliticalParty . ?uri dbo:country res:Greece . ?uri dbo:ideology res:Pro-Europeanism . },julipc-p(huggingface) +¿Cuál es la diferencia de altura entra el Monte Everest y K2?,PREFIX dbo: PREFIX res: SELECT DISTINCT (?h1-?h2) WHERE { res:Mount_Everest dbo:elevation ?h1 . res:K2 dbo:elevation ?h2 . },julipc-p(huggingface) +¿Quién es el alcalde de Rotterdam?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Rotterdam dbo:leaderName ?uri . },julipc-p(huggingface) +¿Cómo de alta el la torre Yokohama Marine?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?num WHERE { res:Yokohama_Marine_Tower dbo:height ?num . },julipc-p(huggingface) +¿Es el Taiko un tipo de instrumento musical?,PREFIX yago: PREFIX res: ASK WHERE { res:Taiko rdf:type yago:JapaneseMusicalInstruments . },julipc-p(huggingface) +¿Cuántos grupos étnicos viven en Eslovenia?,PREFIX dbo: PREFIX res: SELECT COUNT(DISTINCT ?uri) WHERE { res:Slovenia dbo:ethnicGroup ?uri . },julipc-p(huggingface) +Lista los siete reyes de Roma.,PREFIX res: PREFIX dbp: SELECT DISTINCT ?uri WHERE { ?uri dbp:title res:King_of_Rome . },julipc-p(huggingface) +¿Quiénes fueron los padres de la reina Victoria?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Queen_Victoria dbo:parent ?uri . },julipc-p(huggingface) +¿Quien es el jugador mas pesado del los Chicago Bulls?,PREFIX dbo: PREFIX dbp: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Person . ?uri dbo:weight ?num . { ?uri dbp:team res:Chicago_Bulls . } UNION { ?uri dbp:draftTeam res:Chicago_Bulls . } UNION { ?uri dbo:draftTeam res:Chicago_Bulls . } } ORDER BY DESC(?num) OFFSET 0 LIMIT 1,julipc-p(huggingface) +¿Que volcanos han erupcionado en Japon desde el 2000?,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Volcano . ?uri dbo:locatedInArea res:Japan . ?uri dbo:eruptionYear ?date . FILTER (year(?date) >= 2000) },julipc-p(huggingface) +Quien es el jugador de baloncesto mas alto?,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:BasketballPlayer . ?uri dbo:height ?num . } ORDER BY DESC(?num) OFFSET 0 LIMIT 1,julipc-p(huggingface) +¿Cómo de alta el faro de Colombo?,SELECT DISTINCT ?num WHERE { ?num . },julipc-p(huggingface) +¿Quién es el anfitrión de los especiales de la BBC Wildlife?,SELECT DISTINCT ?uri WHERE { ?uri . },julipc-p(huggingface) +¿Cuanto costo Pulp Fiction?,SELECT DISTINCT ?n WHERE { ?n . },julipc-p(huggingface) +¿En qué ciudad esta la fábrica de cerveza Heineken?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +¿Cuándo comenzó la operación Overlord?,SELECT DISTINCT ?d WHERE { ?d . },julipc-p(huggingface) +¿En que ciudad termina la ruta Chilena 68?,SELECT DISTINCT ?uri WHERE { ?uri . },julipc-p(huggingface) +¿Quien desarrolló Slack?,SELECT DISTINCT ?uri WHERE { ?uri . },julipc-p(huggingface) +¿Por qué ciudades pasa el río Weser?,SELECT DISTINCT ?uri WHERE { ?uri . },julipc-p(huggingface) +¿Cuántos asientos tiene el estadio del FC Porto?,SELECT DISTINCT ?n WHERE { ?x . ?x ?n . },julipc-p(huggingface) +¿Con quién está casada la hija de Robert Kennedy?,SELECT DISTINCT ?uri WHERE { ?child . ?child ?uri . },julipc-p(huggingface) +¿Qué libros de Kerouac han sido publicados por Viking Press?,SELECT DISTINCT ?uri WHERE { ?uri . ?uri . ?uri . },julipc-p(huggingface) +¿Cómo de alta es Amazon Eve?,SELECT DISTINCT ?height WHERE { ?height . },julipc-p(huggingface) +¿Quién descubrió Ceres?,SELECT DISTINCT ?uri WHERE { ?uri . },julipc-p(huggingface) +¿Cuál es el país más grande del mundo?,SELECT DISTINCT ?uri WHERE { ?uri a . ?uri ?n . } ORDER BY DESC(?n) OFFSET 0 LIMIT 1,julipc-p(huggingface) +¿Quién es el alcalde de Par��s?,SELECT DISTINCT ?uri WHERE { ?uri . },julipc-p(huggingface) +¿Quién es el entrenador del equipo de hockey sobre hielo de Ankara?,SELECT DISTINCT ?uri WHERE { ?x . ?x . ?x ?uri . },julipc-p(huggingface) +¿Cuánto cuesta la película de Lego?,SELECT DISTINCT ?n WHERE { ?n . },julipc-p(huggingface) +¿Dónde empieza Piccadilly?,SELECT DISTINCT ?uri WHERE { ?uri . },julipc-p(huggingface) +¿Cuántos idiomas se hablan en Turkmenistán?,SELECT (COUNT(DISTINCT ?x) as ?c) WHERE { ?x . },julipc-p(huggingface) +¿En qué películas actúan Julia Roberts y Richard Gere?,SELECT DISTINCT ?uri WHERE { ?uri . ?uri . ?uri . },julipc-p(huggingface) +¿En que año nació Rachel Stevens?,SELECT DISTINCT ?uri WHERE { ?uri . },julipc-p(huggingface) +¿Cuántas veces ha estado casada Jane Fonda?,SELECT (COUNT(DISTINCT ?uri) as ?c) WHERE { ?uri . },julipc-p(huggingface) +¿Cuántas personas viven en Polonia?,SELECT DISTINCT ?uri WHERE { ?uri . },julipc-p(huggingface) +¿Donde están situadas las Casas del Parlamento?,SELECT ?uri WHERE { ?uri . },julipc-p(huggingface) +¿Actúa Christian Bale en Batman Begins?,PREFIX dbo: PREFIX res: ASK WHERE { res:Batman_Begins dbo:starring res:Christian_Bale . },julipc-p(huggingface) +¿Cuál fue la última película con Alec Guinness?,SELECT DISTINCT ?uri WHERE { ?uri . ?uri . ?uri ?date . } ORDER BY DESC(?date) LIMIT 1,julipc-p(huggingface) +¿Cuál es la montaña más alta de Australia?,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Mountain . ?uri dbo:locatedInArea res:Australia . ?uri dbo:elevation ?elevation . } ORDER BY DESC(?elevation) LIMIT 1,julipc-p(huggingface) +¿Quién creó Family Guy?,SELECT DISTINCT ?uri WHERE { ?uri . },julipc-p(huggingface) +¿Quién escribió la canción Hotel California?,SELECT DISTINCT ?uri WHERE { ?uri . },julipc-p(huggingface) +Dame todos los actores de películas dirigidas por William Shatner.,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +¿Qué contiene una galleta de chocolate?,SELECT DISTINCT ?uri WHERE { ?uri . },julipc-p(huggingface) +¿Qué ingredientes son necesarios para una tarta de zanahorias?,SELECT DISTINCT ?uri WHERE { ?uri . },julipc-p(huggingface) +¿juega Neymar en el Real Madrid?,ASK WHERE { . },julipc-p(huggingface) +¿Qué ingeniero informático ganó un Oscar?,"SELECT DISTINCT ?uri WHERE { { ?uri . } UNION { ?uri ?s . FILTER regex(?s,'computer scientist','i') } ?uri . }",julipc-p(huggingface) +¿Cuántas compañías fueron fundadas en el mismo año que Google?,SELECT (COUNT(DISTINCT ?uri) as ?c) WHERE { ?uri . ?uri ?year . ?year . },julipc-p(huggingface) +¿Quién creó Batman?,SELECT DISTINCT ?uri WHERE { ?uri . },julipc-p(huggingface) +¿Quién interpreto a Gus Fring en Breaking Bad?,SELECT DISTINCT ?uri WHERE { ?uri . },julipc-p(huggingface) +En que imperio antiguo pagaría con granos de cacao?,SELECT DISTINCT ?uri WHERE { ?uri . },julipc-p(huggingface) +¿Qué compañías de electrónica fueron fundadas en Pekín?,SELECT DISTINCT ?uri WHERE { ?uri a . ?uri . ?uri . },julipc-p(huggingface) +¿Cuántas tiendas Aldi hay?,SELECT DISTINCT ?number WHERE { ?number . },julipc-p(huggingface) +¿Cuál es la capital de Camerún?,SELECT DISTINCT ?uri WHERE { ?uri. },julipc-p(huggingface) +Dame todas las películas que haya dirigido Francis Ford Coppola.,SELECT DISTINCT ?uri WHERE { ?uri . ?uri . },julipc-p(huggingface) +Dame todos los nietos de Elvis Presley.,SELECT DISTINCT ?uri WHERE { ?child . ?child ?uri . },julipc-p(huggingface) +¿Que peliculas protagonizadas por Mickey Rourke han sido dirigidas por Guy Ritchie?,SELECT DISTINCT ?uri WHERE { ?uri . ?uri . ?uri . },julipc-p(huggingface) +¿Cuando murió el creador de Drácula?,SELECT DISTINCT ?date WHERE { ?x . ?x ?date . },julipc-p(huggingface) +¿Cuál es el verdadero nombre de Batman?,SELECT DISTINCT ?s WHERE { ?s . },julipc-p(huggingface) +¿Qué forma de gobierno tiene Rusia?,SELECT DISTINCT ?uri WHERE { ?uri . },julipc-p(huggingface) +¿Cuantas compañías han sido fundadas por el fundador de Facebook?,SELECT (COUNT(DISTINCT ?uri) as ?c) WHERE { ?uri . ?uri ?uri . },julipc-p(huggingface) +¿Cuántos hijos tuvo Benjamin Franklin?,SELECT (COUNT(DISTINCT ?uri) as ?c) WHERE { ?uri . },julipc-p(huggingface) +¿Qué aeropuertos sirve Yeti Airlines?,SELECT DISTINCT ?uri WHERE { ?uri . },julipc-p(huggingface) +¿Qué empresa de la India tiene el mayor número de empleados?,SELECT DISTINCT ?uri WHERE { ?uri a . ?uri . ?uri ?n . } ORDER BY DESC(?n) OFFSET 0 LIMIT 1,julipc-p(huggingface) +¿Qué color expresa lealtad?,SELECT DISTINCT ?uri WHERE { ?uri . },julipc-p(huggingface) +¿Cuántos grupos étnicos viven en Eslovenia?,SELECT (COUNT(DISTINCT ?uri) as ?c) WHERE { ?uri . },julipc-p(huggingface) +¿Quién es el presidente de Eritrea?,SELECT DISTINCT ?uri WHERE { ?uri . 'President'@en . },julipc-p(huggingface) +¿Qué películas dirigio Stanley Kubrick?,SELECT DISTINCT ?uri WHERE { ?uri . },julipc-p(huggingface) +¿Quién compuso la banda sonora del Titanic de Cameron?,SELECT DISTINCT ?uri WHERE { ?uri . },julipc-p(huggingface) +¿En qué zona horaria esta Roma?,SELECT DISTINCT ?uri WHERE { ?uri . },julipc-p(huggingface) +¿Quiénes son los desarrolladores de DBpedia?,SELECT DISTINCT ?uri WHERE { ?uri . },julipc-p(huggingface) +¿Tiene el lugar de nacimiento de Abraham Lincol una página web?,PREFIX dbo: PREFIX res: ASK WHERE { res:Abraham_Lincoln dbo:deathPlace ?p . ?p dbo:website ?w . },julipc-p(huggingface) +¿Quién es el rey de los Países Bajos?,SELECT DISTINCT ?uri WHERE { ?uri . ?uri a . },julipc-p(huggingface) +¿En que ciudad murió Nikos Kazantzakis?,SELECT DISTINCT ?uri WHERE { ?uri . ?uri a . },julipc-p(huggingface) +Dame una lista de todas las aves en peligro de extinción.,SELECT DISTINCT ?uri ?p WHERE { ?uri a . { ?uri 'CR'^^ . } UNION { ?uri . } },julipc-p(huggingface) +¿Quién es el conductor de Formula 1 con más carreras?,SELECT DISTINCT ?uri WHERE { ?uri . ?uri ?x . } ORDER BY DESC(?x) OFFSET 0 LIMIT 1,julipc-p(huggingface) +¿Qué compañías producen aerodeslizadores?,SELECT DISTINCT ?uri WHERE { ?uri a . ?uri . },julipc-p(huggingface) +Tuvo hijos Elvis Presley?,ASK WHERE { ?uri . },julipc-p(huggingface) +¿En que ciudad nació el presidente de Montenegro?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . ?uri a . },julipc-p(huggingface) +¿En qué país nació Bill Gates?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +¿En qué países se habla japonés?,SELECT DISTINCT ?uri WHERE { ?uri a . ?uri . },julipc-p(huggingface) +¿Cuál es el apodo de San Francisco?,SELECT DISTINCT ?string WHERE { ?string . },julipc-p(huggingface) +¿Cuál fue el primer álbum de Queen?,SELECT DISTINCT ?uri WHERE { ?uri a . ?uri . ?uri ?d . } ORDER BY ASC(?d) OFFSET 0 LIMIT 1,julipc-p(huggingface) +¿Por qué países fluye el río Yenisei?,PREFIX res: PREFIX dbp: SELECT DISTINCT ?uri WHERE { res:Yenisei_River dbp:country ?uri . },julipc-p(huggingface) +¿De qué país es Sitecore?,SELECT DISTINCT ?uri WHERE { ?uri . },julipc-p(huggingface) +¿Con quien se casó Lance Bass?,SELECT DISTINCT ?uri WHERE { ?uri . },julipc-p(huggingface) +¿Quién inspiro a Vincent van Gogh?,SELECT DISTINCT ?uri WHERE { ?uri . },julipc-p(huggingface) +¿Quién escribió el tema del Juego de Tronos?,SELECT DISTINCT ?uri WHERE { ?uri. },julipc-p(huggingface) +¿Cuándo termino Boris Becker su carrera como actor?,SELECT DISTINCT ?d WHERE { ?d . },julipc-p(huggingface) +¿Que tipo de uva crece en Oregon?,SELECT DISTINCT ?uri WHERE { ?uri . },julipc-p(huggingface) +¿A qué partido politico pertenece el alcalde de París?,SELECT DISTINCT ?uri WHERE { ?x . ?x ?uri . },julipc-p(huggingface) +¿Quien es el supervisor de doctorado de Albert Einstein?,SELECT DISTINCT ?uri WHERE { ?uri . },julipc-p(huggingface) +¿En qué ciudad vive Sylvester Stallone?,SELECT DISTINCT ?uri WHERE { ?uri a . ?uri . },julipc-p(huggingface) +¿Quién es el hijo de Sonny y Cher?,SELECT DISTINCT ?uri WHERE { ?uri . ?uri . },julipc-p(huggingface) +¿En qué ciudad se encuentra la sede de las Naciones Unidas?,SELECT DISTINCT ?uri WHERE { ?uri . ?uri a . },julipc-p(huggingface) +¿Cúando se fundó Jack Wolfskin?,SELECT DISTINCT ?year WHERE { ?year . },julipc-p(huggingface) +Muéstrame la autobiografía Hemingway.,SELECT DISTINCT ?uri WHERE { ?uri . ?uri . },julipc-p(huggingface) +Quien es el jugador de baloncesto mas alto?,SELECT DISTINCT ?uri WHERE { ?uri . ?uri ?num . } ORDER BY DESC(?num) OFFSET 0 LIMIT 1,julipc-p(huggingface) +¿Que ciudad tiene la menor población?,SELECT DISTINCT ?uri WHERE { ?uri . ?uri ?pop . } ORDER BY ASC(?pop) OFFSET 0 LIMIT 1,julipc-p(huggingface) +¿Gano Kaurismäki alguna vez el Gran Prix de Cannes?,ASK WHERE { . },julipc-p(huggingface) +¿Donde se encuentra el Fort Knox?,SELECT DISTINCT ?uri WHERE { ?uri . },julipc-p(huggingface) +¿Dónde está enterrado Syngman Rhee?,SELECT DISTINCT ?uri WHERE { ?uri . },julipc-p(huggingface) +¿Cuál es la zona horaria en San Pedro de Atacama?,SELECT DISTINCT ?uri WHERE { ?uri . },julipc-p(huggingface) +¿A qué estilo artístico pertenece el pinto de Los Tres Bailarines?,SELECT DISTINCT ?uri WHERE { ?person . ?person ?uri . },julipc-p(huggingface) +Muéstrame todos los libros en la serie Fundación de Asimov,SELECT DISTINCT ?uri WHERE { ?uri . },julipc-p(huggingface) +Dame todas las cuidades en New Jersey que tengan más de 100000 habitantes.,PREFIX dbo: PREFIX dbp: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:City . ?uri dbo:isPartOf res:New_Jersey . ?uri dbp:populationTotal ?inhabitants . FILTER (?inhabitants > 100000) . },julipc-p(huggingface) +¿Qué museo en Nueva York tiene el mayor numero de visitantes?,SELECT DISTINCT ?uri WHERE { ?uri . ?uri . ?uri ?num . } ORDER BY DESC(?num) OFFSET 0 LIMIT 1,julipc-p(huggingface) +Dame todos los miembros de la banda Prodigy.,SELECT DISTINCT ?uri WHERE { ?uri . },julipc-p(huggingface) +¿Quien protagoniza peliculas españolas producidas por Benicio del Toro?,SELECT DISTINCT ?uri WHERE { ?film . ?film . ?film . ?film ?uri . ?uri . },julipc-p(huggingface) +¿Qué subsidiario de TUI Travel vuela en Glasgow y en Dublin?,SELECT DISTINCT ?uri WHERE { ?uri . ?uri . ?uri . },julipc-p(huggingface) +¿Cuántos idiomas se hablan en Colombia?,SELECT (COUNT(DISTINCT ?uri) as ?c) WHERE { ?uri . ?uri . },julipc-p(huggingface) +¿Cu��l es el estadio más grande de España?,SELECT DISTINCT ?uri WHERE { ?uri a . ?uri . ?uri ?n . } ORDER BY DESC(?n) OFFSET 0 LIMIT 1,julipc-p(huggingface) +¿Cuáles son los cinco condados de Nueva York?,SELECT DISTINCT ?uri WHERE { ?uri . },julipc-p(huggingface) +¿Cuándo murió la princesa Diana?,"SELECT DISTINCT ?d WHERE { ?d . }",julipc-p(huggingface) +Dame todos los animales extintos,PREFIX dbo: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Animal . ?uri dbo:conservationStatus EX . },julipc-p(huggingface) +Dame todos los actores llamados Baldwin.,PREFIX dbo: PREFIX res: PREFIX foaf: SELECT DISTINCT ?uri WHERE { ?uri foaf:surname Baldwin . { ?uri dbo:occupation res:Actor . } UNION { ?uri rdf:type dbo:Actor . } },julipc-p(huggingface) +¿Qué misiones espaciales partieron desde Baionur?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { ?uri dbo:launchPad res:Baikonur_Cosmodrome . },julipc-p(huggingface) +¿Qué abrevia CPU?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { ?uri dbo:abbreviation CPU . },julipc-p(huggingface) +Dame todos los actores nacidos en Paris después de 1950.,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Actor . ?uri dbo:birthPlace res:Paris . ?uri dbo:birthDate ?date . FILTER ( ?date >= xsd:dateTime(1950-12-31T00:00:00Z)) },julipc-p(huggingface) +¿Cuáles son los cuatro jugadores de baloncesto de categoría MVP más jóvenes?,"PREFIX dbo: PREFIX dbp: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:BasketballPlayer . ?uri dbo:birthDate ?date. ?uri dbp:highlights ?h . FILTER regex(?h,MVP) } ORDER BY DESC(?date) OFFSET 0 LIMIT 4",julipc-p(huggingface) +Dame todos los animales extintos,"PREFIX dbo: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Animal . ?uri dbo:conservationStatus ""EX""@en . }",julipc-p(huggingface) +¿Es la Coca Cola una bebida?,PREFIX dbo: PREFIX res: PREFIX rdf: ASK WHERE { res:Cola rdf:type dbo:Beverage . },julipc-p(huggingface) +¿Cuáles son los cuatro jugadores de baloncesto de categoría MVP más jóvenes?,"PREFIX dbo: PREFIX dbp: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:BasketballPlayer . ?uri dbo:birthDate ?date. ?uri dbp:highlights ?h . FILTER regex(?h,""MVP"") } ORDER BY DESC(?date) OFFSET 0 LIMIT 4",julipc-p(huggingface) +Dame todos los actores nacidos en Paris después de 1950.,"PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Actor . ?uri dbo:birthPlace res:Paris . ?uri dbo:birthDate ?date . FILTER ( ?date >= xsd:dateTime(""1950-12-31T00:00:00Z"")) }",julipc-p(huggingface) +¿A qué estilo artístico pertenece el pintor de Los Tres Bailarines?,PREFIX res: PREFIX dbo: SELECT DISTINCT ?uri WHERE { res:The_Three_Dancers dbo:author ?person . ?person dbo:movement ?uri . },julipc-p(huggingface) +Dame todos los actores llamados Baldwin.,"PREFIX dbo: PREFIX res: PREFIX foaf: SELECT DISTINCT ?uri WHERE { ?uri foaf:surname ""Baldwin""@en . { ?uri dbo:occupation res:Actor . } UNION { ?uri rdf:type dbo:Actor . } }",julipc-p(huggingface) +¿Qué abrevia CPU?,"PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { ?uri dbo:abbreviation ""CPU""@en . }",julipc-p(huggingface) +Dame todas las páginas de Web de empresas con más de 500000 empleados.,PREFIX foaf: PREFIX dbo: PREFIX dbp: PREFIX rdf: PREFIX xsd: SELECT DISTINCT ?string WHERE { ?subject rdf:type dbo:Company . ?subject dbp:numEmployees ?employees . FILTER( xsd:integer(?employees) > 500000 ) . ?subject foaf:homepage ?string . },julipc-p(huggingface) +¿Cuál el la página de Web oficial de Tom Cruise?,PREFIX foaf: PREFIX res: SELECT DISTINCT ?string WHERE { res:Tom_Cruise foaf:homepage ?string . },julipc-p(huggingface) +¿En qué estados federales de Alemania gobierna la SPD?,PREFIX dbp: PREFIX res: PREFIX yago: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type yago:StatesOfGermany . { ?uri dbp:rulingParty 'SPD'@en . } UNION { ?uri dbp:rulingParty res:Social_Democratic_Party_of_Germany . } },julipc-p(huggingface) +¿Cuál es el punto más alto del Karakorum?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Karakoram dbo:highestPlace ?uri . },julipc-p(huggingface) +¿Cuál es la montaña más alta después del Annapurna?,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { res:Annapurna dbo:elevation ?elevation . ?uri rdf:type dbo:Mountain . ?uri dbo:elevation ?otherelevation . FILTER (?otherelevation < ?elevation) . } ORDER BY DESC(?otherelevation) LIMIT 1,julipc-p(huggingface) +¿A qué especie pertenece la rana verde?,PREFIX dbp: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Hylidae dbp:classis ?uri . },julipc-p(huggingface) +¿Quién es el alcalde de la cuidad de Nueva York?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { res:New_York_City dbo:leaderName ?uri . },julipc-p(huggingface) +¿Qué empresas fueron fundadas en 1950?,"PREFIX dbo: PREFIX dbp: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Organisation . { ?uri dbo:formationYear ?date . } UNION { ?uri dbo:foundingYear ?date. } UNION { ?uri dbp:foundation ?date . } UNION { ?uri dbp:formation ?date . } FILTER regex(?date,'^1950') . }",julipc-p(huggingface) +¿Qué presidentes nacieron en 1945?,"PREFIX dbo: PREFIX yago: PREFIX rdf: SELECT DISTINCT ?uri WHERE { { ?uri rdf:type dbo:President . } UNION { ?uri rdf:type yago:Presidents . } ?uri dbo:birthDate ?date . FILTER regex(?date, '^1945') . }",julipc-p(huggingface) +¿En qué museo está expuesto el Grito de Munch?,PREFIX dbp: PREFIX res: SELECT DISTINCT ?uri WHERE { res:The_Scream dbp:museum ?uri . },julipc-p(huggingface) +¿Qué países tienen lugares con más de dos cuevas?,PREFIX dbo: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?cave rdf:type dbo:Cave . ?cave dbo:location ?uri . ?uri rdf:type dbo:Country . } GROUP BY ?uri HAVING (COUNT(?cave) > 2),julipc-p(huggingface) +¿Qué países europeos tienen una monarquía constitucional?,PREFIX dbo: PREFIX res: PREFIX yago: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type yago:EuropeanCountries . ?uri dbo:governmentType res:Constitutional_monarchy . },julipc-p(huggingface) +¿Cuántos aeropuertos hay en California?,PREFIX dbo: PREFIX dbp: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Airport . { ?uri dbo:location res:California . } UNION { ?uri dbp:location res:California . } UNION { ?uri dbo:city res:California . } UNION { ?uri dbo:city ?city . ?city dbo:isPartOf res:California . } UNION { ?uri dbo:operator res:California . } UNION { ?uri dbp:cityServed res:California . } },julipc-p(huggingface) +¿Qué monárcas del reino unido estaban casados con una persona alemana?,PREFIX yago: PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type yago:MonarchsOfTheUnitedKingdom . ?uri dbo:spouse ?spouse . ?spouse dbo:birthPlace res:Germany. },julipc-p(huggingface) +Dame todas las cancilleres alemanas.,PREFIX yago: PREFIX dbp: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type yago:FemaleHeadsOfGovernment. ?uri dbp:office res:Chancellor_of_Germany . },julipc-p(huggingface) +Dame todos los videojuegos de Mean Hamster Software.,PREFIX dbo: PREFIX dbp: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:VideoGame . { ?uri dbp:publisher 'Mean Hamster Software'@en . } UNION { ?uri dbo:publisher res:Mean_Hamster_Software . } },julipc-p(huggingface) +Dame todos los tipos de escuela.,PREFIX yago: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type yago:SchoolTypes . },julipc-p(huggingface) +¿Cuántas monarquías existen en Europa?,"PREFIX dbo: PREFIX yago: PREFIX rdf: SELECT COUNT(DISTINCT ?uri) WHERE { ?uri rdf:type yago:EuropeanCountries . ?uri dbo:governmentType ?govern . FILTER regex(?govern,'monarchy') . }",julipc-p(huggingface) +Dame todos los presidentes de los estados unidos de américa.,PREFIX yago: PREFIX dbo: PREFIX dbp: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Person . { ?uri rdf:type yago:PresidentsOfTheUnitedStates. } UNION { ?uri rdf:type dbo:President. ?uri dbp:title res:President_of_the_United_States. } },julipc-p(huggingface) +¿Quién ha producido más películas?,PREFIX dbo: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?film rdf:type dbo:Film . ?film dbo:producer ?uri . } ORDER BY DESC(COUNT(?film)) LIMIT 1,julipc-p(huggingface) +¿Qué idiomas se hablan en Estonia?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { { res:Estonia dbo:language ?uri . } UNION { ?uri dbo:spokenIn res:Estonia . } },julipc-p(huggingface) +¿Qué montañas son más altas que el Nanga Parbat?,PREFIX dbo: PREFIX dbp: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { res:Nanga_Parbat dbp:elevationM ?elevation . ?uri rdf:type dbo:Mountain . ?uri dbp:elevationM ?otherelevation . FILTER (?otherelevation > ?elevation) . },julipc-p(huggingface) +¿Qué empresas de telecomunicaciones tienen su sede en Bélgica?,"PREFIX dbo: PREFIX dbp: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Organisation . { ?uri dbp:industry res:Telecommunications . } UNION { ?uri dbp:industry ?industry . FILTER (regex(?industry, 'Telecommunication')) . } { ?uri dbo:location res:Belgium. } UNION { ?uri dbp:location res:Belgium. } UNION { ?uri dbp:locationCountry 'Belgium'@en . } }",julipc-p(huggingface) +¿Qué empresas aerospaciales trabajar también en en tecnología de reactores?,PREFIX dbo: PREFIX dbp: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Company . ?uri dbp:industry res:Aerospace . ?uri dbp:industry res:Nuclear_reactor_technology . },julipc-p(huggingface) +¿Que estado de los estados unidos de america tiene la mayor densidad de población?,PREFIX yago: PREFIX dbp: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type yago:StatesOfTheUnitedStates . ?uri dbp:densityrank ?rank . } ORDER BY ASC(?rank) LIMIT 1,julipc-p(huggingface) +¿Cuál es la montaña más alta?,PREFIX dbo: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Mountain . ?uri dbo:elevation ?elevation . } ORDER BY DESC(?elevation) LIMIT 1,julipc-p(huggingface) +¿A quién pertenece Aldi?,PREFIX res: PREFIX dbo: SELECT DISTINCT ?uri WHERE { res:Aldi dbo:keyPerson ?uri . },julipc-p(huggingface) +¿Cuáles son los idiomas oficiales de Las Philipinas?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Philippines dbo:officialLanguage ?uri . },julipc-p(huggingface) +Dame la página de web de Forbes.,PREFIX res: PREFIX foaf: SELECT DISTINCT ?string WHERE { res:Forbes foaf:homepage ?string . },julipc-p(huggingface) +¿Qué país tiene más idiomas oficiales?,PREFIX dbo: PREFIX dbp: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Country . ?uri dbp:officialLanguages ?language . } ORDER BY DESC(COUNT(?language)) LIMIT 1,julipc-p(huggingface) +¿En qué estados de los estados unidos de américa hay oro?,"PREFIX yago: PREFIX dbp: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type yago:StatesOfTheUnitedStates . ?uri dbp:mineral ?mineral . FILTER (regex(?mineral,'gold','i')) . }",julipc-p(huggingface) +¿Con quién está casada la hija de Ingrid Bergman?,PREFIX dbo: PREFIX res: PREFIX rdfs: SELECT DISTINCT ?uri WHERE { res:Ingrid_Bergman dbo:child ?child . ?child dbo:spouse ?uri . },julipc-p(huggingface) +¿Qué puentes son del mismo tipo que el puente de Manhattan?,"PREFIX dbo: PREFIX dbp: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Bridge . ?uri dbp:design ?design . res:Manhattan_Bridge dbp:design ?mdesign . FILTER (regex(?design, ?mdesign)). FILTER (?uri != res:Manhattan_Bridge) . }",julipc-p(huggingface) +¿Qué productos de software han sido desarrollados por empresas fundadas en California?,PREFIX rdf: PREFIX dbo: PREFIX dbp: PREFIX res: SELECT DISTINCT ?uri WHERE { ?company rdf:type dbo:Organisation . { ?uri dbo:developer ?company . } UNION { ?uri dbp:developer ?company .} ?uri rdf:type dbo:Software . ?company dbo:foundationPlace res:California . },julipc-p(huggingface) +¿Quién fue el quinto presidente de los estados unidos de américa?,PREFIX dbo: SELECT DISTINCT ?uri WHERE { ?uri dbo:orderInOffice '5th President of the United States'@en . },julipc-p(huggingface) +¿Qué albums musicales contienen la canción Las Christmas?,PREFIX foaf: PREFIX dbo: SELECT DISTINCT ?uri WHERE { ?single dbo:album ?uri . ?single foaf:name 'Last Christmas'@en . },julipc-p(huggingface) +Dame todas las astronautas rusas.,PREFIX yago: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type yago:RussianCosmonauts . ?uri rdf:type yago:FemaleAstronauts . },julipc-p(huggingface) +Dame todos los actores que hayan actuado en Last Action Hero.,PREFIX dbp: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Last_Action_Hero dbp:starring ?uri . },julipc-p(huggingface) +Dame todas las empresas publicitarias.,"PREFIX dbp: PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Company . ?uri dbp:industry ?industry . FILTER regex(?industry,'advertising','i') . }",julipc-p(huggingface) +¿Qué países de la unión europea han introducido el Euro?,PREFIX dbp: PREFIX res: PREFIX yago: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type yago:EuropeanUnionMemberStates . { ?uri dbp:currency res:Euro . } UNION { ?uri dbp:currencyCode 'EUR'@en . } UNION { ?uri dbp:currencyCode 'Euro'@en . } },julipc-p(huggingface) +¿Cúando se fundó Capcom?,PREFIX dbp: PREFIX res: SELECT DISTINCT ?date WHERE { res:Capcom dbp:foundation ?date . },julipc-p(huggingface) +¿En qué país nace el Ganges?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Ganges dbo:sourceCountry ?uri .},julipc-p(huggingface) +¿Qué ciudades alemanas tienen más de 250000 habitantes?,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { { ?uri rdf:type dbo:City . } UNION { ?uri rdf:type dbo:Town . } ?uri dbo:country res:Germany . ?uri dbo:populationTotal ?population . FILTER ( ?population > 250 ) },julipc-p(huggingface) +¿Cuál es la segunda montaña más alta de la tierra?,PREFIX dbo: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Mountain . ?uri dbo:elevation ?elevation . } ORDER BY DESC(?elevation) OFSET 1 LIMIT 1,julipc-p(huggingface) +¿Cúando fué fundada la provincia de Alberta?,PREFIX dbp: PREFIX res: SELECT DISTINCT ?date WHERE { res:Alberta dbp:admitancedate ?date . },julipc-p(huggingface) +¿Cúantos hombres y mujeres trabajan para los bomberos de Nueva York?,PREFIX dbp: PREFIX res: SELECT DISTINCT ?num WHERE { res:New_York_City_Fire_Department dbp:employes ?num . },julipc-p(huggingface) +¿Quién es el conductor de Formula 1 con más carreras?,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:FormulaOneRacer . ?uri dbo:races ?x . } ORDER BY DESC(?x) OFSET 0 LIMIT 1,julipc-p(huggingface) +¿Qué patrimonios de la humanidad fueron reconocidos en los últimos dos años?,PREFIX dbo: PREFIX dbp: PREFIX rdf: PREFIX xsd: SELECT DISTINCT ?uriWHERE { ?uri rdf:type dbo:WorldHeritageSite . { ?uri dbp:year '2013'^xsd:integer . } UNION { ?uri dbp:year '2014'^xsd:integer . },julipc-p(huggingface) +¿Quién es el jugador más jóven de la Premier League?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { ?uri dbo:team ?x . ?x dbo:league res:Premier_League . ?uri dbo:birthDate ?y . } ORDER BY DESC(?y) OFSET 0 LIMIT 1,julipc-p(huggingface) +¿Cuál es el río más largo?,PREFIX dbo: PREFIX dbp: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:River . { ?uri dbo:length ?l . } UNION { ?uri dbp:length ?l . } } ORDER BY DESC(?l) OFSET 0 LIMIT 1,julipc-p(huggingface) +Dame todos los coches producidos en Alemania.,PREFIX dbo: PREFIX dbp: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Automobile . { ?uri dbo:assembly res:Germany . } UNION { ?uri dbp:asembly res:Germany . } UNION { { ?uri dbo:manufacturer ?x . } UNION { ?uri dbp:manufacturer ?x . } { ?x dbo:locationCountry res:Germany . } UNION { ?x dbo:location res:Germany . } } },julipc-p(huggingface) +¿Tienen el príncipe Harry y el prínciple William la misma madre?,"PREFIX dbo: ASKWHERE { dbo:parent ?x . dbo:parent ?x .}",julipc-p(huggingface) +¿Quién fue el padre de la reina Isabel II?,PREFIX res: PREFIX dbp: SELECT DISTINCT ?uri WHERE { res:Elizabeth_I dbp:father ?uri . },julipc-p(huggingface) +¿Qué estado americano fué el último en ser admitido?,PREFIX dbp: PREFIX yago: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type yago:StatesOfTheUnitedStates . ?uri dbp:admitancedate ?x . } ORDER BY DESC(?x) OFSET 0 LIMIT 1,julipc-p(huggingface) +¿De qué estado americano es Sean Parnell el gobernador?,PREFIX yago: PREFIX dbp: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type yago:StatesOfTheUnitedStates . ?uri dbp:governor res:Sean_Parnel . },julipc-p(huggingface) +¿Son las ranas verdes un tipo de anfibio?,PREFIX dbo: PREFIX res: ASK WHERE { res:Hylidae dbo:clas res:Amphibian . },julipc-p(huggingface) +Dame todas las razas de pastor alemán.,PREFIX dbp: PREFIX res: SELECT DISTINCT ?uri WHERE { ?uri dbp:bred res:German_Shepherd . },julipc-p(huggingface) +¿Qué países une el Rhin?,PREFIX dbo: PREFIX dbp: PREFIX res: PREFIX rdf: PREFIX rdfs: SELECT DISTINCT ?uri WHERE { res:Rhine dbp:country ?string . ?uri rdf:type dbo:Country . ?uri rdfs:label ?string . },julipc-p(huggingface) +¿Qué surfistas profesionales nacieron en Australia?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { ?uri dbo:occupation res:Surfing . { ?uri dbo:birthPlace res:Australia . } UNION { ?uri dbo:birthPlace ?x . ?x dbo:country res:Australia . },julipc-p(huggingface) +¿En qué ciudad del reino unido se encuentra el cuartel genetal del MI6?,PREFIX res: PREFIX dbo: PREFIX rdf: SELECT DISTINCT ?uri WHERE { res:Secret_Intelligence_Service dbo:headquarter ?uri . ?uri dbo:country res:United_Kingdom . },julipc-p(huggingface) +¿Qué diosas griegas habitan el Olimpo?,PREFIX dbp: PREFIX res: PREFIX yago: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type yago:GrekGodeses . ?uri dbp:abode res:Mount_Olympus . },julipc-p(huggingface) +¿Qué estados americanos se encuentran en la misma zona que Utah?,PREFIX res: PREFIX dbp: PREFIX yago: PREFIX rdf: SELECT DISTINCT ?uri WHERE { res:Utah dbp:timezone ?x . ?uri rdf:type yago:StatesOfTheUnitedStates . ?uri dbp:timezone ?x . FILTER (?uri != res:Utah) },julipc-p(huggingface) +Dame las capitales de todos los países africanos.,PREFIX dbo: PREFIX yago: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?states rdf:type yago:AfricanCountries . ?states dbo:capital ?uri . },julipc-p(huggingface) +Dame una lista de todos los lagos en Dinamarca.,PREFIX dbo: PREFIX res: PREFIX yago: PREFIX rdf: SELECT DISTINCT ?uri WHERE { { ?uri rdf:type dbo:Lake . ?uri dbo:country res:Denmark . } UNION { ?uri rdf:type yago:LakesOfDenmark . } },julipc-p(huggingface) +¿Cuántas misiones tiene el programa Soyuz?,PREFIX dbp: PREFIX res: SELECT COUNT(DISTINCT ?uri)WHERE { ?uri dbp:programe res:Soyuz_programme . },julipc-p(huggingface) +Dame todas las cuidades en New Jersey que tengan más de 100000 habitantes.,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:City . ?uri dbo:isPartOf res:New_Jersey . ?uri dbo:populationTotal ?inhabitants . FILTER (?inhabitants > 10) . },julipc-p(huggingface) +¿Cuándo fue construída la estatua de la libertad?,PREFIX dbp: PREFIX res: SELECT DISTINCT ?date WHERE { res:Statue_of_Liberty dbp:beginingDate ?date . },julipc-p(huggingface) +¿Fué Marc Chagall judío?,PREFIX dbp: PREFIX res: ASK WHERE { res:Marc_Chagal dbp:ethnicity 'Jewish'@en .},julipc-p(huggingface) +¿En qué museo está expuesto el Grito de Munch?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uriWHERE { res:The_Scream dbo:museum ?uri .},julipc-p(huggingface) +Dame todos los libros de Wiliam Goldman con más de 300 páginas.,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Book . ?uri dbo:author res:William_Goldman . ?uri dbo:numberOfPages ?x . FILTER (?x > 30)},julipc-p(huggingface) +¿Qué libros de Kerouac han sido publicados por Viking Press?,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Book . ?uri dbo:publisher res:Viking_Pres . ?uri dbo:author res:Jack_Kerouac .},julipc-p(huggingface) +Dame una lista de todos los inventos americanos.,PREFIX yago: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type yago:AmericanInventions .},julipc-p(huggingface) +¿Qué alto es el Monte Everest?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?num WHERE { res:Mount_Everest dbo:elevation ?num.},julipc-p(huggingface) +¿Quién creó el comic Capitán América?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Captain_America dbo:creator ?uri .},julipc-p(huggingface) +¿Cuánta gente vive en la capital de Australia?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?num WHERE { res:Australia dbo:capital ?x . ?x dbo:populationTotal ?num .},julipc-p(huggingface) +¿Cuál es la cuidad más grande de Australia?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Australia dbo:largestCity ?uri .},julipc-p(huggingface) +¿Quién compuso la música para Harold y Maude?,PREFIX res: PREFIX dbo: SELECT DISTINCT ?uri WHERE { res:Harold_and_Maude dbo:musicComposer ?uri .},julipc-p(huggingface) +¿En qué películas con Clint Eastwood están dirigidas por él mismo?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { ?uri dbo:director res:Clint_Eastwood . ?uri dbo:starring res:Clint_Eastwood .},julipc-p(huggingface) +¿En qué ciudad fué enterrada la antigua reina de los países bajos Juliana?,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { res:Juliana_of_the_Netherlands dbo:restingPlace ?uri. ?uri rdf:type dbo:Settlement .},julipc-p(huggingface) +¿Es la cuidad más grande de Egipto también capital?,PREFIX res: PREFIX dbo: ASK WHERE { res:Egypt dbo:largestCity ?large . res:Egypt dbo:capital ?capital . FILTER (?large = ?capital)},julipc-p(huggingface) +¿Dónde vive el primer ministor de España?,PREFIX dbp: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Prime_Minister_of_Spain dbp:residence ?uri .},julipc-p(huggingface) +¿Qué estado americano tiene la abreviación MN?,PREFIX dbp: PREFIX yago: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type yago:StatesOfTheUnitedStates . ?uri dbp:postalabreviation 'MN'@en .},julipc-p(huggingface) +¿Enseñame todas las canciones de Bruce Springsteen que aparecieron entre 1980 y 1990.,PREFIX dbo: PREFIX res: PREFIX rdf: PREFIX xsd: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Song . ?uri dbo:artist res:Bruce_Springsteen . ?uri dbo:releaseDate ?date . FILTER (?date >= '1980-01-01'^xsd:date & ?date <= '190-12-31'^xsd:date)},julipc-p(huggingface) +¿Qué películas ha rodado Kurosawa?,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uriWHERE { ?uri rdf:type dbo:Film . ?uri dbo:director res:Akira_Kurosawa .},julipc-p(huggingface) +¿En qué año fue fundada la cervecería que produce Pilsner Urquell?,PREFIX dbp: PREFIX res: SELECT DISTINCT ?num WHERE { res:Pilsner_Urquel dbp:brewery ?uri . ?uri dbp:foundation ?num .},julipc-p(huggingface) +¿Quién escribió el texto del himno de Polonia?,PREFIX dbo: PREFIX dbp: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Poland dbo:anthem ?x . ?x dbp:author ?uri .},julipc-p(huggingface) +Dame todas las caras B de los Ramones.,PREFIX dbo: PREFIX res: SELECT DISTINCT ?string WHERE { ?x dbo:musicalArtist res:Ramones . ?x dbo:bSide ?string . },julipc-p(huggingface) +¿Quién pintó el Cristo en la tormenta en el lago de Galilea?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { res:The_Storm_on_the_Sea_of_Galile dbo:author ?uri .},julipc-p(huggingface) +¿De qué país viene el creador de Nijntje?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Miffy dbo:creator ?x . ?x dbo:nationality ?uri .},julipc-p(huggingface) +¿Qué discográfica grabó el primer album de Elvis?,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?x rdf:type dbo:Album . ?x dbo:artist res:Elvis_Presley . ?x dbo:releaseDate ?y . ?x dbo:recordLabel ?uri .}ORDER BY ASC(?y) OFSET 0 LIMIT 1,julipc-p(huggingface) +Dame los cumpleaños de los actores de la serie de televisión Charmed.,PREFIX dbo: PREFIX res: SELECT DISTINCT ?date WHERE { res:Charmed dbo:starring ?actor . ?actor dbo:birthDate ?date .},julipc-p(huggingface) +¿Cuántos empleados tiene IBM?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?number WHERE { res:IBM dbo:numberOfEmployees ?number .},julipc-p(huggingface) +¿Qué estados tienen frontera con Illinois?,PREFIX res: PREFIX dbp: SELECT DISTINCT ?uri WHERE { res:Illinois dbp:borderingstates ?uri .},julipc-p(huggingface) +¿En qué país se encuentra el lago Limerick?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Limerick_Lake dbo:country ?uri .},julipc-p(huggingface) +¿Qué series televisivas ideó John Cleese?,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uriWHERE { ?uri rdf:type dbo:TelevisionShow . ?uri dbo:creator res:John_Cleese .},julipc-p(huggingface) +¿Cuál es la montaña más alta después del Annapurna?,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uriWHERE { res:Annapurna dbo:elevation ?elevation . ?uri rdf:type dbo:Mountain . ?uri dbo:elevation ?otherelevation . FILTER (?otherelevation < ?elevation) .} ORDER BY DESC(?otherelevation) OFSET 0 LIMIT 1,julipc-p(huggingface) +¿En qué películas dirigidas por Garry Mashall actuó Julia Roberts?,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uriWHERE { ?uri rdf:type dbo:Film . ?uri dbo:starring res:Julia_Roberts . ?uri dbo:director res:Garry_Marshall .},julipc-p(huggingface) +¿Qué puentes son del mismo tipo que el puente de Manhattan?,PREFIX dbo: PREFIX dbp: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uriWHERE { ?uri rdf:type dbo:Bridge . ?uri dbp:design ?design . res:Manhattan_Bridge dbp:design ?mdesign . FILTER (?design = ?mdesign & ?uri != res:Manhattan_Bridge) . },julipc-p(huggingface) +¿Estuvo el el presidente de los estados unidos Jackson involucrado en una guerra?,PREFIX dbo: PREFIX res: ASK WHERE { res:Andrew_Jackson dbo:battle ?batle . },julipc-p(huggingface) +Dame todos los países comunistas.,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uriWHERE { ?uri rdf:type dbo:Country . { ?uri dbo:governmentType res:Communism . } UNION { ?uri dbo:governmentType res:Communist_state . },julipc-p(huggingface) +¿Qué premios ha ganado Douglas Hofstadter?,PREFIX res: PREFIX dbo: SELECT DISTINCT ?uriWHERE { res:Douglas_Hofstadter dbo:award ?uri .},julipc-p(huggingface) +¿Con quién está casada la hija de Robert Kennedy?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Robert_F._Kennedy dbo:child ?child . ?child dbo:spouse ?uri .},julipc-p(huggingface) +¿Que estado de los estados unidos de america tiene la mayor densidad de población?,PREFIX yago: PREFIX dbp: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type yago:StatesOfTheUnitedStates . ?uri dbp:densityrank ?rank .} ORDER BY ASC(?rank) OFSET 0 LIMIT 1,julipc-p(huggingface) +¿Cuál es la moneda de la república checa?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uriWHERE { res:Czech_Republic dbo:currency ?uri .},julipc-p(huggingface) +¿Qué países han introducido el Euro?,PREFIX dbp: PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uriWHERE { ?uri rdf:type dbo:Country . { ?uri dbo:currency res:Euro . } UNION { ?uri dbp:curencyCode 'EUR'@en . },julipc-p(huggingface) +¿Cuál es el prefijo de Berlin?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?string WHERE { res:Berlin dbo:areaCode ?string .},julipc-p(huggingface) +¿Qué países tienes más de dos lenguas oficiales?,PREFIX dbo: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Country . ?uri dbo:officialLanguage ?language .} GROUP BY ?uriHAVING (COUNT(?language) > 2),julipc-p(huggingface) +¿Quién es el dueño de Rolls-Royce?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uriWHERE { res:Rolls-Royce_Motors dbo:owner ?uri .},julipc-p(huggingface) +¿Por qué países fluye el río Yenisei?,PREFIX res: PREFIX dbo: SELECT DISTINCT ?uri WHERE { res:Yenisei dbo:country ?uri .},julipc-p(huggingface) +¿Cuándo ingresó Letonia a la unión europea?,PREFIX res: PREFIX dbp: SELECT DISTINCT ?date WHERE { res:Latvia dbp:acesioneudate ?date . },julipc-p(huggingface) +¿Qué monárcas estaban casados con una persona alemana?,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Monarch . ?uri dbo:spouse ?spouse . { ?spouse dbo:birthPlace res:Germany. } UNION { ?spouse dbo:birthPlace ?p . ?p dbo:country res:Germany. },julipc-p(huggingface) +¿Cuándo tuvo lugar la batalla de Gettysburg?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?date WHERE { res:Battle_of_Gettysburg dbo:date ?date .},julipc-p(huggingface) +¿Por qué río cruza la Brooklyn Bridge?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uriWHERE { res:Brooklyn_Bridge dbo:crosses ?uri . },julipc-p(huggingface) +¿Cuál es la montaña más alta de Australia?,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Mountain . ?uri dbo:locatedInArea res:Australia . ?uri dbo:elevation ?elevation .} ORDER BY DESC(?elevation) OFSET 0 LIMIT 1,julipc-p(huggingface) +Dame todos los club de fútbol de España.,"PREFIX dbo: PREFIX dbp: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uriWHERE { ?uri rdf:type dbo:SoccerClub . { ?uri dbo:ground res:Spain . } UNION { ?uri dbp:ground ?ground . FILTER (regex(?ground,'Spain') }",julipc-p(huggingface) +¿Cuál es la idioma oficial de Surinam?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uriWHERE { res:Suriname dbo:officialLanguage ?uri .},julipc-p(huggingface) +¿Quién es el alcalde de Tel Aviv?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uriWHERE { res:Tel_Aviv dbo:leaderName ?uri .},julipc-p(huggingface) +¿Quién diseñó la Brooklyn Bridge?,PREFIX res: PREFIX dbo: SELECT DISTINCT ?uri WHERE { res:Brooklyn_Bridge dbo:architect ?uri .},julipc-p(huggingface) +¿Qué empresas de telecomunicaciones tienen su sede en Bélgica?,"PREFIX dbo: PREFIX dbp: PREFIX res: PREFIX rdf: SELECT COUNT(DISTINCT ?uri)WHERE { ?uri rdf:type dbo:Organisation . { ?uri dbo:industry res:Telecommunication . } UNION { ?uri dbp:industry ?industry . FILTER (regex(?industry,'Telecomunications') . } { ?uri dbo:location res:Belgium. } UNION { ?uri dbp:locationCountry 'Belgium'@en . }",julipc-p(huggingface) +¿Todavía vive Frank Herbert?,PREFIX dbo: PREFIX res: ASK WHERE { OPTIONAL { res:Frank_Herbert dbo:deathDate ?date . } FILTER (!BOUND(?date)},julipc-p(huggingface) +¿Cuál es el punto más alto del montes Urales?,PREFIX dbp: PREFIX res: SELECT DISTINCT ?uriWHERE { res:Ural_Mountains dbp:highest ?uri . },julipc-p(huggingface) +¿Quién es el editor de Forbes?,PREFIX res: PREFIX dbo: SELECT DISTINCT ?uri WHERE { res:Forbes dbo:editor ?uri .},julipc-p(huggingface) +Dame todas las empresas publicitarias.,"PREFIX dbp: PREFIX dbo: PREFIX res: PREFIX rdf: SELECT COUNT(DISTINCT ?uri)WHERE { ?uri rdf:type dbo:Company . { ?uri dbo:industry res:Advertising } UNION { ?uri dbo:industry ?industry . FILTER regex(?industry,'advertising','i') . }",julipc-p(huggingface) +¿Cuántos países existen en Europa?,PREFIX yago: PREFIX rdf: SELECT COUNT(DISTINCT ?uri) WHERE { ?uri rdf:type yago:EuropeanCountries .},julipc-p(huggingface) +¿De qué murió Bruce Carver?,PREFIX res: PREFIX dbo: SELECT DISTINCT ?uriWHERE { res:Bruce_Carver dbo:deathCause ?uri . },julipc-p(huggingface) +Dame todas las bibliotecas que fueron establecidas antes de 1400.,PREFIX dbo: PREFIX dbp: PREFIX rdf: SELECT DISTINCT ?uriWHERE { ?uri rdf:type dbo:Library . ?uri dbp:established ?year . FILTER (?year < 140)},julipc-p(huggingface) +¿Qué presidentes nacieron en 1945?,"PREFIX dbo: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:President . ?uri dbo:birthDate ?date . FILTER regex(?date, '^1945') .}",julipc-p(huggingface) +Dame todos los cancilleres alemanos.,PREFIX dbp: PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uriWHERE { ?uri rdf:type dbo:Person . { ?uri dbo:office 'Chancelor of Germany' . } UNION { ?uri dbp:ofice res:Chancellor_of_Germany . },julipc-p(huggingface) +¿Quién fué la mujer del presidente americano Lincoln?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Abraham_Lincoln dbo:spouse ?uri.},julipc-p(huggingface) +¿Quién desarrolló el videojuego Warcraft?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { res:World_of_Warcraft dbo:developer ?uri . },julipc-p(huggingface) +¿Cuál el la página de Web oficial de Tom Cruise?,PREFIX dbp: PREFIX res: SELECT DISTINCT ?string WHERE { res:Tom_Cruise dbp:website ?string .},julipc-p(huggingface) +Dame todos los episodios de la prímera época de la serie de HBO Los Sporanos.,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { ?uri dbo:series res:The_Sopranos . ?uri dbo:seasonNumber 1 .},julipc-p(huggingface) +¿Quién ha producido más películas?,PREFIX dbo: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?film rdf:type dbo:Film . ?film dbo:producer ?uri .} ORDER BY DESC(COUNT(?film) OFSET 0 LIMIT 1,julipc-p(huggingface) +¿En qué ciudad murió John F. Kennedy?,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uriWHERE { res:John_F._Kennedy dbo:deathPlace ?uri . ?uri rdf:type dbo:City .},julipc-p(huggingface) +¿Hay algún videojuego que se llame Battle Chess?,PREFIX dbo: PREFIX rdf: PREFIX rdfs: ASK WHERE { ?uri rdf:type dbo:VideoGame . ?uri rdfs:label 'Batle Ches'@en .},julipc-p(huggingface) +¿Qué montañas son más altas que el Nanga Parbat?,PREFIX dbo: PREFIX dbp: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uriWHERE { res:Nanga_Parbat dbo:elevation ?elevation . ?uri rdf:type dbo:Mountain . { ?uri dbo:elevation ?otherelevation . } UNION { ?uri dbp:elevationM ?otherelevation . } FILTER (?otherelevation > ?elevation) .},julipc-p(huggingface) +¿Quién creó Wikipedia?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uriWHERE { res:Wikipedia dbo:author ?uri .},julipc-p(huggingface) +Dame todos los actores que hayan actuado en Last Action Hero.,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uriWHERE { res:Last_Action_Hero dbo:starring ?uri . },julipc-p(huggingface) +¿Qué productos de software han sido desarrollados por empresas fundadas en California?,PREFIX rdf: PREFIX dbo: PREFIX res: SELECT DISTINCT ?uriWHERE { ?uri rdf:type dbo:Software . ?company rdf:type dbo:Company . ?uri dbo:developer ?company . ?company dbo:foundationPlace res:California . },julipc-p(huggingface) +¿Qué empresas aerospaciales trabajar también en en medicina?,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Company . ?uri dbo:industry res:Aerospace . ?uri dbo:industry res:Medicine .},julipc-p(huggingface) +¿Actúa Christian Bale en Velvet Goldmine?,PREFIX dbo: PREFIX res: ASKWHERE { res:Velvet_Goldmine dbo:starring res:Christian_Bale .},julipc-p(huggingface) +Dame todas las páginas de Web de empresas con más de 500000 empleados.,PREFIX dbo: PREFIX dbp: PREFIX rdf: PREFIX xsd: SELECT DISTINCT ?stringWHERE { ?c rdf:type dbo:Company . { ?c dbo:numberOfEmployees ?employes . } UNION { ?c dbp:numEmployes ?employes . } FILTER( xsd:integer(?employes) > 50 ) . ?c dbp:homepage ?string .},julipc-p(huggingface) +¿Qué actores nacieron en Alemania?,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uriWHERE { ?uri rdf:type dbo:Actor . { ?uri dbo:birthPlace res:Germany . } UNION { ?uri dbo:birthPlace ?place . ?place dbo:country res:Germany . },julipc-p(huggingface) +¿Qué cuevas tienen más de 3 entradas?,PREFIX dbo: PREFIX dbp: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Cave . ?uri dbp:entranceCount ?entrance . FILTER (?entrance > 3) .},julipc-p(huggingface) +¿La mujer del presidente Lincoln se llama Mary?,"PREFIX dbo: PREFIX res: PREFIX rdfs: ASK WHERE { res:Abraham_Lincoln dbo:spouse ?spouse . ?spouse rdfs:label ?name . FILTER(regex(?name,'Mary') }",julipc-p(huggingface) +Dame todas las películas del producente Hal Roach.,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Film . ?uri dbo:producer res:Hal_Roach .},julipc-p(huggingface) +Dame todos los videojuegos de Mean Hamster Software.,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:VideoGame . ?uri dbo:publisher res:Mean_Hamster_Software . },julipc-p(huggingface) +¿Qué idiomas se hablan en Estonia?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { ?uri dbo:spokenIn res:Estonia . },julipc-p(huggingface) +¿Cuántas tiendas Aldi hay?,PREFIX res: PREFIX dbo: SELECT DISTINCT ?numberWHERE { res:Aldi dbo:numberOfLocations ?number .},julipc-p(huggingface) +¿En qué capitales europeas tuvieron lugar los juegos olímpicos de verano?,PREFIX yago: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type yago:CapitalsInEurope . ?uri rdf:type yago:HostCitiesOfTheSumerOlympicGames .},julipc-p(huggingface) +¿Quién fue el 16th presidente de los Estados Unidos?,PREFIX dbo: PREFIX rdf: SELECT DISTINCT ?uriWHERE { ?uri dbo:office 'President of the United States' . ?uri dbo:orderInOffice '16th' .},julipc-p(huggingface) +¿Cuántas películas ha producido Hal Roach?,PREFIX dbo: PREFIX res: SELECT COUNT(DISTINCT ?uri) WHERE { ?uri dbo:producer res:Hal_Roach .},julipc-p(huggingface) +¿Qué albums musicales contienen la canción Las Christmas?,PREFIX dbo: PREFIX rdfs: SELECT DISTINCT ?uri WHERE { ?single dbo:album ?uri . ?single rdfs:label 'Last Christmas'@en .},julipc-p(huggingface) +Dame todos los libros escritos por Danielle Steel.,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Book . ?uri dbo:author res:Danielle_Steel .},julipc-p(huggingface) +¿Cuántos aeropuertos hay en California?,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uriWHERE { ?uri rdf:type dbo:Airport . { ?uri dbo:location res:California . } UNION { ?uri dbo:city res:California . } UNION { ?uri dbo:city ?city . ?city dbo:isPartOf res:California . } UNION { ?uri dbo:operator res:California . } },julipc-p(huggingface) +¿En qué estados federales de Alemania gobierna la SPD?,PREFIX dbp: PREFIX dbo: PREFIX res: PREFIX yago: PREFIX rdf: SELECT DISTINCT ?uriWHERE { ?uri rdf:type yago:StatesOfGermany . { ?uri dbo:leaderParty res:Social_Democratic_Party_of_Germany . } UNION { ?uri dbp:rulingParty 'SPD'@en . } },julipc-p(huggingface) +Dame todos las empresas canadienses productoras de música Grunge.,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:RecordLabel . ?uri dbo:genre res:Grunge . ?uri dbo:country res:Canada .},julipc-p(huggingface) +¿Qué país tiene más idiomas oficiales?,PREFIX dbo: PREFIX dbp: PREFIX rdf: SELECT DISTINCT ?uriWHERE { ?uri rdf:type dbo:Country . ?uri dbp:oficialLanguages ?language .} ORDER BY DESC(COUNT(?language) OFSET 0 LIMIT 1,julipc-p(huggingface) +¿En qué lenguaje de programación esta programado GIMP?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { res:GIMP dbo:programmingLanguage ?uri .},julipc-p(huggingface) +¿Quién ha producido películas en las que actua Natalie Portman?,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?film rdf:type dbo:Film . ?film dbo:starring res:Natalie_Portman . ?film dbo:producer ?uri .},julipc-p(huggingface) +Dame todas las películas con Tom Cruise,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uriWHERE { ?uri rdf:type dbo:Film. ?uri dbo:starring res:Tom_Cruise .},julipc-p(huggingface) +¿En qué películas actúan Julia Roberts y Richard Gere?,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Film . ?uri dbo:starring res:Julia_Roberts . ?uri dbo:starring res:Richard_Gere..},julipc-p(huggingface) +Dame todos los nombres propios femeninos.,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:GivenName . ?uri dbo:gender res:Female .},julipc-p(huggingface) +¿Quen escribió el libro Los pilares de la Tierra?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { res:The_Pillars_of_the_Earth dbo:author ?uri .},julipc-p(huggingface) +¿En cuántas películas ha actuado Leonardo DiCaprio?,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT COUNT(DISTINCT ?uri) WHERE { ?uri rdf:type dbo:Film . ?uri dbo:starring res:Leonardo_DiCaprio . },julipc-p(huggingface) +Dame todos los clubs de la Premier League.,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uriWHERE { ?uri rdf:type dbo:SoccerClub . ?uri dbo:league res:Premier_League . },julipc-p(huggingface) +¿En qué estado de los estados unidos se encuentra el monte McKinley?,PREFIX yago: PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uriWHERE { ?uri rdf:type yago:StatesOfTheUnitedStates . res:Mount_McKinley dbo:locatedInArea ?uri . },julipc-p(huggingface) +¿Cúando se fundó Capcom?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?date WHERE { res:Capcom dbo:foundingDate ?date .},julipc-p(huggingface) +¿Qué empresas fueron fundadas en 1930?,"PREFIX dbo: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Organisation . { ?uri dbo:formationYear ?date . } UNION { ?uri dbo:foundingYear ?date. } FILTER regex(?date,'^1930') . }",julipc-p(huggingface) +¿Cuál es la montaña más alta?,PREFIX dbo: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Mountain . ?uri dbo:elevation ?elevation .} ORDER BY DESC(?elevation) OFSET 0 LIMIT 1,julipc-p(huggingface) +¿Nació Natalie Portman en los estados unidos de américa?,PREFIX dbo: PREFIX res: ASK WHERE { { res:Natalie_Portman dbo:birthPlace res:United_States . } UNION { res:Natalie_Portman dbo:birthPlace ?city . ?city dbo:country res:United_States . },julipc-p(huggingface) +¿Cuántos habitantes tiene la ciudad más grande de Canadá?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?numWHERE { res:Canada dbo:largestCity ?city . ?city dbo:populationTotal ?num .},julipc-p(huggingface) +¿Quién fue el primero en ascender al Monte Everest?,PREFIX res: PREFIX dbo: SELECT DISTINCT ?uriWHERE { res:Mount_Everest dbo:firstAscentPerson ?uri . },julipc-p(huggingface) +¿Cuántos lenguajes de programación existen?,PREFIX dbo: PREFIX rdf: SELECT COUNT(DISTINCT ?uri)WHERE { ?uri rdf:type dbo:ProgrammingLanguage .},julipc-p(huggingface) +¿Cuál es el color oficial de la Universidad de Oxford?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?stringWHERE { res:University_of_Oxford dbo:officialSchoolColour ?string . },julipc-p(huggingface) +¿A qué estilo artístico pertenece el pinto de Los Tres Bailarines?,PREFIX res: PREFIX dbo: SELECT DISTINCT ?uriWHERE { res:The_Three_Dancers dbo:author ?person . ?person dbo:movement ?uri .},julipc-p(huggingface) +Dame todos los animales extintos,PREFIX dbo: PREFIX rdf: SELECT DISTINCT ?uriWHERE { ?uri rdf:type dbo:Animal . ?uri dbo:conservationStatus 'EX' .},julipc-p(huggingface) +¿Tiene el lugar de nacimiento de Abraham Lincol una página web?,PREFIX dbo: PREFIX dbp: PREFIX res: ASKWHERE { res:Abraham_Lincoln dbo:deathPlace ?p . ?p dbp:website ?w . },julipc-p(huggingface) +Cómo de hondo es el Lago Placid?,PREFIX dbo: SELECT DISTINCT ?nWHERE { dbo:depth ?n . },julipc-p(huggingface) +Dame todos los nietos de Bruce Lee.,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uriWHERE { res:Bruce_Le dbo:child ?child . ?child dbo:child ?uri .},julipc-p(huggingface) +¿Quién es el jugador mas jóven de dardos?,PREFIX dbo: PREFIX rdf: SELECT DISTINCT ?uriWHERE { ?uri rdf:type dbo:DartsPlayer . ?uri dbo:birthDate ?date .}ORDER BY DESC(?date)OFSET 0 LIMIT 1,julipc-p(huggingface) +¿Dónde nació Bach?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { res:Johann_Sebastian_Bach dbo:birthPlace ?uri .},julipc-p(huggingface) +¿En qué páises se paga con el Franco CFA?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uriWHERE { ?uri dbo:currency res:West_African_CFA_franc . },julipc-p(huggingface) +¿Cuáles son los 10 mejores videojuegos de rol de acción según la IGN?,PREFIX dbo: PREFIX dbp: PREFIX res: SELECT DISTINCT ?uri WHERE { ?uri . ?uri dbp:ign ?score .} ORDER BY DESC(?score) LIMIT 10,julipc-p(huggingface) +¿Cual es la causa mortal más común?,PREFIX dbo: SELECT DISTINCT ?xWHERE { ?uri dbo:deathCause ?x . }ORDER BY DESC(COUNT(DISTINCT ?uri) OFSET 0 LIMIT 1,julipc-p(huggingface) +¿Desemboca el Isar en un lago?,PREFIX dbo: PREFIX res: PREFIX rdf: ASKWHERE { ?x dbo:inflow res:Isar . ?x rdf:type dbo:Lake . },julipc-p(huggingface) +Dame todas las películas producidas por Steven Spielberg con un presupuesto de al menos 80 milliones de dólares.,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Film . ?uri dbo:director res:Steven_Spielberg . ?uri dbo:budget ?b . FILTER( xsd:double(?b) >= 8.0E7 )},julipc-p(huggingface) +Dame todos los escritores que hayan recibido el premio nobel de literatura.,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uriWHERE { ?uri rdf:type dbo:Writer . ?uri dbo:award res:Nobel_Prize_in_Literature . },julipc-p(huggingface) +Dame todas las taikonautas.,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uriWHERE { ?uri rdf:type dbo:Astronaut . ?uri dbo:nationality res:China .},julipc-p(huggingface) +¿Cuántas páginas tiene Guerra y Paz?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?nWHERE { res:War_and_Peace dbo:numberOfPages ?n .},julipc-p(huggingface) +¿Qué puente tiene el mayor largo del vano?,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Bridge . ?uri dbo:mainspan ?s . } ORDER BY DESC(?s) OFSET 0 LIMIT 1,julipc-p(huggingface) +Dame todos los actores llamados Baldwin.,PREFIX dbo: PREFIX res: PREFIX foaf: SELECT DISTINCT ?uriWHERE { ?uri foaf:surname 'Baldwin'@en . { ?uri dbo:occupation res:Actor . } UNION { ?uri rdf:type dbo:Actor . },julipc-p(huggingface) +¿Quién es el jugador más alto de los Atlanta Falcons?,PREFIX dbo: PREFIX dbp: PREFIX res: SELECT DISTINCT ?uri WHERE { ?uri dbo:team res:Atlanta_Falcons . ?uri dbo:height ?h .} ORDER BY DESC(?h) OFSET 0 LIMIT 1,julipc-p(huggingface) +¿Qué ríos desembocan en un lago alemán?,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uriWHERE { ?uri rdf:type dbo:River . ?x dbo:inflow ?uri . ?x rdf:type dbo:Lake . ?x dbo:country res:Germany .},julipc-p(huggingface) +¿Cuántas películas de James Bond existen?,PREFIX rdf: PREFIX yago: SELECT COUNT(DISTINCT ?uri) WHERE { ?uri rdf:type yago:JamesBondFilms . },julipc-p(huggingface) +¿Qué cohetes han sido lanzados desde Baionur?,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uriWHERE { ?uri rdf:type dbo:Rocket . ?uri dbo:launchSite res:Baikonur_Cosmodrome .},julipc-p(huggingface) +¿Qué papa fue el sucesor de Juan Pablo II?,PREFIX res: PREFIX dbp: SELECT DISTINCT ?uriWHERE { res:Pope_John_Paul_I dbp:sucesor ?uri .},julipc-p(huggingface) +Dame todos los partidos políticos holandeses,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uriWHERE { ?uri rdf:type dbo:PoliticalParty . ?uri dbo:country res:Netherlands .},julipc-p(huggingface) +¿Cuándo es Halloween?,PREFIX dbp: PREFIX res: SELECT DISTINCT ?dateWHERE { res:Halloween dbp:date ?date . },julipc-p(huggingface) +Dame todos los oceanógrafos suecos.,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uriWHERE { ?uri dbo:field res:Oceanography . ?uri dbo:birthPlace res:Sweden . },julipc-p(huggingface) +Dame todos los actores nacidos en Berlin.,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Actor . ?uri dbo:birthPlace res:Berlin .},julipc-p(huggingface) +¿Cuál fue la última película con Alec Guinness?,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uriWHERE { ?uri rdf:type dbo:Film . ?uri dbo:starring res:Alec_Guinness . ?uri dbo:releaseDate ?date . } ORDER BY DESC(?date) LIMIT 1,julipc-p(huggingface) +¿Que poeta ha escrito el mayor número de libros?,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uriWHERE { ?uri dbo:occupation res:Poet . ?x dbo:author ?uri . ?x rdf:type dbo:Book .}ORDER BY DESC(COUNT(?x)OFSET 0 LIMIT 1,julipc-p(huggingface) +¿Cuántos idiomas se hablan en Colombia?,PREFIX dbo: PREFIX res: SELECT COUNT(DISTINCT ?uri) WHERE { ?uri rdf:type dbo:Language . res:Colombia dbo:language ?uri .},julipc-p(huggingface) +¿Qué abrevia IYCM?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uriWHERE { ?uri dbo:abbreviation 'IYCM' .},julipc-p(huggingface) +¿Cuál ha sido la posición de ranking más baja de Brasil en el ranking mundial de la FIFA?,PREFIX dbp: PREFIX res: SELECT DISTINCT ?nWHERE { res:Brazil_national_football_team dbp:fifaMin ?n .},julipc-p(huggingface) +Dame las capitales de todos los países que atraviesa el Himalaya.,PREFIX dbp: PREFIX dbo: PREFIX res: SELECT DISTINCT ?uriWHERE { res:Himalayas dbp:country ?country . ?country dbo:capital ?uri .},julipc-p(huggingface) +¿Qué actor hizo el papel de Chewbacca?,PREFIX dbp: PREFIX res: SELECT DISTINCT ?uriWHERE { res:Chewbacca dbp:portrayer ?uri . },julipc-p(huggingface) +¿Qué ingredientes son necesarios para una tarta de zanahorias?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uriWHERE { res:Carrot_cake dbo:ingredient ?uri .},julipc-p(huggingface) +¿La Coca Cola es una bebida?,PREFIX dbo: PREFIX res: PREFIX rdf: ASK WHERE { res:Cola rdf:type dbo:Beverage .},julipc-p(huggingface) +¿Quién ha estado casado con Tom Cruise?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { ?uri dbo:spouse res:Tom_Cruise.},julipc-p(huggingface) +¿Cuál es la película de Tim Burton con el mayor presupuesto?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { ?uri dbo:director res:Tim_Burton . ?uri dbo:budget ?b .}ORDER BY ?bOFSET 0 LIMIT 1,julipc-p(huggingface) +¿Cuánto pesa el satélite más ligero de Júpiter?,PREFIX dbo: PREFIX dbp: PREFIX res: SELECT DISTINCT ?nWHERE { ?uri dbp:sateliteOf res:Jupiter . ?uri dbo:mas ?n .}ORDER BY ASC(?n)OFSET 0 LIMIT 1,julipc-p(huggingface) +¿Qué actor ha actuado en el mayor número de películas?,PREFIX dbo: PREFIX dbp: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Actor . ?f rdf:type dbo:Film . ?f dbo:starring ?uri .} ORDER BY DESC(COUNT(DISTINCT(?f) OFSET 0 LIMIT 1,julipc-p(huggingface) +¿Está James Bond casado?,PREFIX dbo: PREFIX res: ASK WHERE { res:James_Bond dbo:spouse ?uri . },julipc-p(huggingface) +Dame todos los grupos australianos de metalcore.,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uriWHERE { ?uri rdf:type dbo:Band . ?uri dbo:genre res:Metalcore . { ?uri dbo:hometown res:Australia . } UNION { ?uri dbo:hometown ?h . ?h dbo:country res:Australia . },julipc-p(huggingface) +Dame todos los actores nacidos en Paris después de 1950.,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Actor . ?uri dbo:birthPlace res:Paris . ?uri dbo:birthDate ?date . FILTER ( ?date >= xsd:dateTime('1950-12-31T0:0:0Z') },julipc-p(huggingface) +¿Cuándo fue disparado Carlo Giuliani?,PREFIX dbp: PREFIX res: SELECT DISTINCT ?dateWHERE { res:Death_of_Carlo_Giuliani dbp:dateOfDeath ?date .},julipc-p(huggingface) +¿Cuáles son los cuatro jugadores de baloncesto de categoría MVP más jóvenes?,"PREFIX dbo: PREFIX dbp: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:BasketballPlayer . ?uri dbo:birthDate ?date. ?uri dbp:highlights ?h . FILTER regex(?h,'MVP')} ORDER BY DESC(?date) OFSET 0 LIMIT 4",julipc-p(huggingface) +¿Qué empresas tienen mas de 1 millón de empleados?,PREFIX dbo: PREFIX dbp: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Company . { ?uri dbo:numberOfEmployees ?n . } UNION { ?uri dbp:numEmployes ?n . } FILTER ( ?n > 10 ) },julipc-p(huggingface) +Dame todos los nadadores nacidos en Moscú,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Swimmer . ?uri dbo:birthPlace res:Moscow .},julipc-p(huggingface) +¿Quien se llamaba Rodzilla?,"PREFIX dbp: SELECT DISTINCT ?uri WHERE { ?uri dbp:nickname ""Rodzila""@en .}",julipc-p(huggingface) +¿Cuantos museos hay en Paris?,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uriWHERE { ?uri rdf:type dbo:Museum . ?uri dbo:location res:Paris . },julipc-p(huggingface) +¿Que ciudad tiene la mayor población?,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uriWHERE { ?uri rdf:type dbo:City . ?uri dbo:populationTotal ?pop . }ORDER BY DESC(?pop)OFSET 0 LIMIT 1,julipc-p(huggingface) +¿Que ciudad tiene la menor población?,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uriWHERE { ?uri rdf:type dbo:City . ?uri dbo:populationTotal ?pop . }ORDER BY ASC(?pop)OFSET 0 LIMIT 1,julipc-p(huggingface) +Dame todos los programas de televisión con Neil Patrick Harris.,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uriWHERE { ?uri rdf:type dbo:TelevisionShow . ?uri dbo:starring res:Neil_Patrick_Harris . },julipc-p(huggingface) +¿Quien escribió Los juegos del hambre?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uriWHERE { res:The_Hunger_Games dbo:author ?uri . },julipc-p(huggingface) +Dame una lista de los clubs de futbol que juegan en Bundesliga.,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uriWHERE { ?uri rdf:type dbo:SoccerClub . ?uri dbo:league res:Bundesliga . },julipc-p(huggingface) +¿En que país esta el monte Everest?,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uriWHERE { res:Mount_Everest dbo:locatedInArea ?uri . ?uri rdf:type dbo:Country .},julipc-p(huggingface) +¿Quien es el fundador de Penguin Books?,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uriWHERE { res:Penguin_Books dbo:founder ?uri .},julipc-p(huggingface) +¿Que lenguajes de programación influenciaron el Javascript?,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uriWHERE { ?uri rdf:type dbo:ProgrammingLanguage . ?uri dbo:influenced res:JavaScript . },julipc-p(huggingface) +¿Tuvo hijos el Che Guevara?,PREFIX dbo: PREFIX res: ASKWHERE { res:Che_Guevara dbo:child ?uri . },julipc-p(huggingface) +Dame todos los musicales con música de Elton John.,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uriWHERE { ?uri rdf:type dbo:Musical . ?uri dbo:musicBy res:Elton_John .},julipc-p(huggingface) +Muéstrame todas las cervecerías en Australia.,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uri ?xWHERE { ?uri rdf:type dbo:Brewery . { ?uri dbo:location res:Australia . } UNION { ?uri dbo:location ?x . ?x dbo:country res:Australia . } },julipc-p(huggingface) +¿Cuando se completo el Titanic?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?dateWHERE { res:RMS_Titanic dbo:completionDate ?date . },julipc-p(huggingface) +¿Cuanto costo Pulp Fiction?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?nWHERE { res:Pulp_Fiction dbo:budget ?n . },julipc-p(huggingface) +¿Cuantas líneas aéreas existen?,PREFIX dbo: PREFIX rdf: SELECT COUNT(DISTINCT ?uri)WHERE { ?uri rdf:type dbo:Airline . },julipc-p(huggingface) +¿Quien actuó como el agente Smith en Matrix?,PREFIX dbp: PREFIX res: SELECT DISTINCT ?uriWHERE { res:Agent_Smith dbp:portrayer ?uri . },julipc-p(huggingface) +¿Cuantos hidrates de carbono tienen la manteca de cacahuete?,PREFIX dbp: PREFIX res: SELECT DISTINCT ?carbsWHERE { res:Peanut_butter dbp:carbs ?carbs .},julipc-p(huggingface) +¿Que libro tiene el mayor numero de paginas?,PREFIX dbo: PREFIX rdf: SELECT DISTINCT ?uriWHERE { ?uri rdf:type dbo:Book . ?uri dbo:numberOfPages ?n .}ORDER BY DESC(?n)OFSET 0 LIMIT 1,julipc-p(huggingface) +¿Cuantos puentes cruzan el Siena?,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT DISTINCT ?uriWHERE { ?uri rdf:type dbo:Bridge . ?uri dbo:crosses res:Seine .},julipc-p(huggingface) +¿Quien es el alcalde de la capital de la Polinesia Francesa?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uri WHERE { res:French_Polynesia dbo:capital ?x . ?x dbo:mayor ?uri .},julipc-p(huggingface) +¿Cuando murió el creador de Drácula?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?dateWHERE { res:Count_Dracula dbo:creator ?x . ?x dbo:deathDate ?date .},julipc-p(huggingface) +¿Donde están situadas las Casas del Parlamento?,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT ?uri WHERE { res:Palace_of_Westminster dbo:location ?uri .},julipc-p(huggingface) +Muéstrame todos los edificios góticos en Kent.,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT ?uri WHERE { ?uri rdf:type dbo:Building . ?uri dbo:architecturalStyle res:English_Gothic_architecture . ?uri dbo:location res:Kent .},julipc-p(huggingface) +¿Quien fue el papa que fundo la televisión Vaticana?,PREFIX dbo: PREFIX res: PREFIX rdf: SELECT ?uri WHERE { ?uri rdf:type dbo:Pope . res:Vatican_Television_Center dbo:foundedBy ?uri .},julipc-p(huggingface) +¿Qué aerolíneas forman parte del la alianza SkyTeam?,PREFIX res: PREFIX dbp: PREFIX dbo: PREFIX rdf: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Airline . { ?uri dbp:aliance res:SkyTeam . } UNION { ?uri dbo:Alliance res:SkyTeam . },julipc-p(huggingface) +"¿Cuál es la población total de Melbourne, Florida?","PREFIX dbo: SELECT ?uri WHERE { dbo:populationTotal ?uri .}",julipc-p(huggingface) +¿Qué aeropuertos sirve Air China?,PREFIX res: PREFIX dbo: SELECT DISTINCT ?uri WHERE { res:Air_China dbo:targetAirport ?uri .},julipc-p(huggingface) +¿En que año nació Rachel Stevens?,PREFIX res: PREFIX dbo: SELECT DISTINCT ?uri WHERE { res:Rachel_Stevens dbo:birthYear ?uri .},julipc-p(huggingface) +¿Dónde fue JFK asesinado?,PREFIX res: PREFIX dbo: SELECT DISTINCT ?uri WHERE { res:John_F._Kennedy dbo:deathPlace ?uri .},julipc-p(huggingface) +¿Cuántos políticos se han graduado en la universidad de Columbia?,PREFIX res: PREFIX dbo: SELECT DISTINCT COUNT(?uri) WHERE { ?uri dbo:profession res:Politician . ?uri dbo:almaMater res:Columbia_University .},julipc-p(huggingface) +¿Qué científicos son conocidos por el proyecto Manhattan y el premio Nobel de la Paz?,PREFIX res: PREFIX dbo: PREFIX rdf: SELECT DISTINCT ?uriWHERE { ?uri dbo:knownFor res:Manhattan_Project . ?uri rdf:type dbo:Scientist . ?uri dbo:knownFor res:Nobel_Peace_Prize .},julipc-p(huggingface) +¿Cuál es el volcán mas alto en África?,PREFIX dbo: PREFIX res: PREFIX rdf: PREFIX yago: SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Volcano . ?uri dbo:locatedInArea ?area . ?area rdf:type yago:AfricanCountries . ?uri dbo:elevation ?elevation .}ORDER BY DESC(?elevation) OFSET 0 LIMIT 1,julipc-p(huggingface) +¿Qué cerveza se ha originado en Irlanda?,"PREFIX res: PREFIX dbp: SELECT DISTINCT ?uri WHERE { ?uri dbp:type res:Ber . ?uri dbp:origin ""Ireland""@en .}",julipc-p(huggingface) +¿Cuáles son las especialidades del UNC Health Care?,PREFIX dbo: PREFIX res: PREFIX dbp: PREFIX rdf: SELECT DISTINCT ?uriWHERE { res:UNC_Health_Care dbp:speciality ?uri .},julipc-p(huggingface) +¿Quién es el dueño de Facebook?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uriWHERE { res:Facebook dbo:foundedBy ?uri .},julipc-p(huggingface) +¿De que región es el vino Melon de Bourgogne?,PREFIX res: PREFIX dbo: SELECT DISTINCT ?uriWHERE { res:Melon_de_Bourgogne dbo:wineRegion ?uri .},julipc-p(huggingface) +¿Quién fue influenciado por Socrates?,PREFIX res: PREFIX dbo: SELECT DISTINCT ?uriWHERE { ?uri dbo:influencedBy res:Socrates .},julipc-p(huggingface) +¿Quién fue el presidente de Pakistán en 1978?,PREFIX res: PREFIX dbp: SELECT DISTINCT ?uri WHERE { ?uri dbp:title res:President_of_Pakistan . ?uri dbp:years 1978 .},julipc-p(huggingface) +Dame actores Ingleses protagonizando Lovesick.,PREFIX res: PREFIX dbo: PREFIX yago: SELECT DISTINCT ?uriWHERE { res:Lovesick dbo:starring ?uri . { ?uri dbo:birthPlace res:England . } UNION { ?uri rdf:type yago:EnglishFilmActors . },julipc-p(huggingface) +¿Que tipos hay de trastornos de la alimentación?,PREFIX yago: PREFIX rdf: SELECT DISTINCT ?uriWHERE { ?uri rdf:type yago:EatingDisorders .},julipc-p(huggingface) +¿Quién estuvo casado con el presidente Chirac?,PREFIX dbo: PREFIX res: SELECT DISTINCT ?uriWHERE { res:Jacques_Chirac dbo:spouse ?uri .},julipc-p(huggingface) +¿Cuál es el área metropolitana mas larga en el estado de Washington?,PREFIX res: PREFIX dbp: SELECT DISTINCT ?uriWHERE { dbp:largestmetro ?uri .},julipc-p(huggingface) +¿Dónde en Francia se produce el vino espumoso?,PREFIX res: PREFIX dbo: SELECT DISTINCT ?uriWHERE { ?uri dbo:wineProduced res:Sparkling_wine . ?uri dbo:location res:France .},julipc-p(huggingface) +¿Dónde murió Hillel Slovak?,PREFIX res: PREFIX dbo: SELECT DISTINCT ?uriWHERE { res:Hillel_Slovak dbo:deathPlace ?uri .},julipc-p(huggingface) +¿Cuál es la zona horaria en San Pedro de Atacama?,PREFIX res: PREFIX dbo: SELECT DISTINCT ?uriWHERE { res:San_Pedro_de_Atacama dbo:timezone ?uri .},julipc-p(huggingface) +¿En que ciudad termina la ruta Chilena 68?,PREFIX res: PREFIX dbo: SELECT DISTINCT ?uriWHERE { res:Chile_Route_68 dbo:routeEnd ?uri .},julipc-p(huggingface)