From 826a63b5cda39e237e54904ef5a663357910604b Mon Sep 17 00:00:00 2001
From: LudwigForsberg <ludfo774@student.liu.se>
Date: Thu, 17 Nov 2022 16:15:47 +0100
Subject: [PATCH] Fixed qald linked data

---
 QALD/combined-required-linked.json | 12973 ++++++++++++++++++++++++++-
 QALD/combined-required.json        |  9788 +-------------------
 {QALD => tools}/query.py           |     0
 {QALD => tools}/run_queries.py     |     2 +-
 4 files changed, 12974 insertions(+), 9789 deletions(-)
 rename {QALD => tools}/query.py (100%)
 rename {QALD => tools}/run_queries.py (97%)

diff --git a/QALD/combined-required-linked.json b/QALD/combined-required-linked.json
index e68e05d..5cc4a94 100644
--- a/QALD/combined-required-linked.json
+++ b/QALD/combined-required-linked.json
@@ -1 +1,12972 @@
-{"questions": [{"id": "1", "question": [{"language": "en", "string": "Which presidents of the United States had more than three children?"}], "query": {"sparql": "PREFIX rdf: &lt;http://www.w3.org/1999/02/22-rdf-syntax-ns#&gt;PREFIX rdfs: &lt;http://www.w3.org/2000/01/rdf-schema#&gt;PREFIX onto: &lt;http://dbpedia.org/ontology/&gt;PREFIX yago: &lt;http://dbpedia.org/class/yago/&gt;SELECT DISTINCT ?uri ?stringWHERE {\t?uri rdf:type yago:PresidentsOfTheUnitedStates .        ?uri onto:child ?child .        OPTIONAL {?uri rdfs:label ?string. FILTER (lang(?string) = 'en') }} HAVING (count(?child) &gt; 3)"}, "entities": [{"URI": "http://dbpedia.org/resource/United_States", "surface form": "United States"}], "relations": [{"URI": "http://dbpedia.org/ontology/country", "surface form": "presidents"}, {"URI": "http://dbpedia.org/ontology/languageFamily", "surface form": "children"}]}, {"id": "2", "question": [{"language": "en", "string": "Give me the official websites of actors of the television show Charmed."}], "query": {"sparql": "PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX foaf: <http://xmlns.com/foaf/0.1/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Charmed> onto:starring ?actors . ?actors foaf:homepage ?uri }"}}, {"id": "1", "question": [{"language": "en", "string": "Who is the daughter of Bill Clinton married to?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> PREFIX dbp: <http://dbpedia.org/property/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { dbr:Bill_Clinton dbo:child ?child . ?child dbo:spouse ?uri . ?uri rdfs:label ?string }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Marc_Mezvinsky"}}, "entities": [{"URI": "http://dbpedia.org/resource/Bill_Clinton", "surface form": "Bill Clinton"}], "relations": [{"URI": "http://dbpedia.org/ontology/child", "surface form": "daughter"}, {"URI": "http://dbpedia.org/ontology/spouse", "surface form": "married"}]}, {"id": "2", "question": [{"language": "en", "string": "Which river does the Brooklyn Bridge cross?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Brooklyn_Bridge dbo:crosses ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/East_River"}}, "entities": [{"URI": "http://dbpedia.org/resource/Brooklyn_Bridge", "surface form": "Brooklyn Bridge"}], "relations": [{"URI": "http://dbpedia.org/ontology/river", "surface form": "river"}, {"URI": "http://dbpedia.org/ontology/crosses", "surface form": "cross"}]}, {"id": "3", "question": [{"language": "en", "string": "How many monarchical countries are there in Europe?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/>PREFIX yago: <http://dbpedia.org/class/yago/>PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>SELECT COUNT(DISTINCT ?uri) WHERE {\t?uri rdf:type yago:EuropeanCountries .        ?uri dbo:governmentType ?govern .        FILTER regex(?govern,'monarchy') .}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "0"}}}, {"id": "6", "question": [{"language": "en", "string": "Where did Abraham Lincoln die?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> SELECT DISTINCT ?uri WHERE { res:Abraham_Lincoln dbo:deathPlace ?uri. }"}, "entities": [{"URI": "http://dbpedia.org/resource/Abraham_Lincoln", "surface form": "Abraham Lincoln"}], "relations": [{"URI": "http://dbpedia.org/ontology/deathDate", "surface form": "die"}]}, {"id": "7", "question": [{"language": "en", "string": "Is the wife of President Obama called Michelle?"}], "query": {"sparql": "PREFIX res: <http://dbpedia.org/resource/> PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> PREFIX onto: <http://dbpedia.org/ontology/> ASK WHERE { res:Barack_Obama onto:spouse ?spouse . ?spouse rdfs:label ?name FILTER regex(?name, \"Michelle\") }"}}, {"id": "8", "question": [{"language": "en", "string": "Which states of Germany are governed by the Social Democratic Party?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {  ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/class/yago/StatesOfGermany> .  { ?uri <http://dbpedia.org/ontology/leaderParty> <http://dbpedia.org/resource/Social_Democratic_Party_of_Germany> . } UNION  { ?uri <http://dbpedia.org/property/rulingParty> 'SPD'@en . } } "}, "entities": [{"URI": "http://dbpedia.org/resource/Germany", "surface form": "Germany"}, {"URI": "http://dbpedia.org/resource/Social_Democratic_Party", "surface form": "Social Democratic Party"}], "relations": [{"URI": "http://dbpedia.org/ontology/employer", "surface form": "governed"}]}, {"id": "4", "question": [{"language": "en", "string": "Which U.S. states possess gold minerals?"}], "query": {"sparql": "PREFIX yago: <http://dbpedia.org/class/yago/> PREFIX dbp: <http://dbpedia.org/property/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type yago:WikicatStatesOfTheUnitedStates ; dbp:mineral ?mineral FILTER regex(?mineral, \"gold\", \"i\") }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alaska"}}, "entities": [{"URI": "http://dbpedia.org/resource/United_States", "surface form": "US"}], "relations": [{"URI": "http://dbpedia.org/ontology/owner", "surface form": "possess"}, {"URI": "http://dbpedia.org/ontology/champion", "surface form": "gold minerals"}]}, {"id": "10", "question": [{"language": "en", "string": "In which country does the Nile start?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Nile dbo:sourceCountry ?uri }"}, "entities": [{"URI": "http://dbpedia.org/resource/Nile", "surface form": "Nile"}], "relations": [{"URI": "http://dbpedia.org/ontology/country", "surface form": "country"}, {"URI": "http://dbpedia.org/ontology/source", "surface form": "start"}]}, {"id": "11", "question": [{"language": "en", "string": "Which locations have more than two caves?"}], "query": {"sparql": "PREFIX onto: &lt;http://dbpedia.org/ontology/&gt;PREFIX rdf: &lt;http://www.w3.org/1999/02/22-rdf-syntax-ns#&gt;PREFIX rdfs: &lt;http://www.w3.org/2000/01/rdf-schema#&gt;SELECT DISTINCT ?uri ?stringWHERE {               ?cave rdf:type onto:Cave .         ?cave onto:location ?uri .        OPTIONAL {?uri rdfs:label ?string. FILTER (lang(?string) = 'en') }} HAVING (count(?cave) &gt; 2)"}, "entities": [{"URI": "http://dbpedia.org/resource/Caves_Beach,_New_South_Wales", "surface form": "caves"}], "relations": [{"URI": "http://dbpedia.org/property/location", "surface form": "locations"}]}, {"id": "12", "question": [{"language": "en", "string": "Is proinsulin a protein?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> ASK WHERE { res:Proinsulin rdf:type dbo:Protein }"}}, {"id": "13", "question": [{"language": "en", "string": "Which classis does the Millepede belong to?"}], "query": {"sparql": "PREFIX dbp: <http://dbpedia.org/property/>PREFIX res: <http://dbpedia.org/resource/>PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>SELECT DISTINCT ?uri ?stringWHERE {       res:Millipede dbp:classis ?string .       ?uri rdfs:label ?string .}"}, "entities": [{"URI": "http://dbpedia.org/resource/Glomeris_marginata", "surface form": "Millepede"}], "relations": [{"URI": "http://dbpedia.org/ontology/class", "surface form": "classis"}, {"URI": "http://dbpedia.org/ontology/date", "surface form": "belong"}]}, {"id": "5", "question": [{"language": "en", "string": "How tall is Claudia Schiffer?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?height WHERE { res:Claudia_Schiffer dbo:height ?height }"}, "answers": {"height": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#double", "value": "1.8"}}, "entities": [{"URI": "http://dbpedia.org/resource/Claudia_Schiffer", "surface form": "Claudia Schiffer"}], "relations": [{"URI": "http://dbpedia.org/ontology/height", "surface form": "tall"}]}, {"id": "6", "question": [{"language": "en", "string": "Who created Goofy?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Goofy> <http://dbpedia.org/ontology/creator> ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bob_Ogle"}}, "entities": [{"URI": "http://dbpedia.org/resource/Goofy", "surface form": "Goofy"}], "relations": [{"URI": "http://dbpedia.org/ontology/creator", "surface form": "created"}]}, {"id": "16", "question": [{"language": "en", "string": "Give me the capitals of all U.S. states."}], "query": {"sparql": "PREFIX onto: &lt;http://dbpedia.org/ontology/&gt;PREFIX rdf: &lt;http://www.w3.org/1999/02/22-rdf-syntax-ns#&gt;PREFIX rdfs: &lt;http://www.w3.org/2000/01/rdf-schema#&gt;PREFIX yago: &lt;http://dbpedia.org/class/yago/&gt;SELECT DISTINCT ?uri ?stringWHERE{ \t?states rdf:type yago:StatesOfTheUnitedStates .        ?states onto:capital ?uri .        OPTIONAL {?uri rdfs:label ?string. FILTER (lang(?string) = 'en') }}"}, "entities": [{"URI": "http://dbpedia.org/resource/United_States", "surface form": "US"}], "relations": [{"URI": "http://dbpedia.org/ontology/capital", "surface form": "capitals"}]}, {"id": "17", "question": [{"language": "en", "string": "Give me all cities in New Jersey with more than 100000 inhabitants."}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX dbp: <http://dbpedia.org/property/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:City ; dbo:isPartOf res:New_Jersey ; dbo:populationTotal ?inhabitants FILTER ( ?inhabitants > 100000 ) }"}, "entities": [{"URI": "http://dbpedia.org/resource/New_Jersey", "surface form": "New Jersey"}, {"URI": "http://dbpedia.org/resource/100000_(disambiguation)", "surface form": "100000 inhabitants"}], "relations": [{"URI": "http://dbpedia.org/ontology/country", "surface form": "cities"}]}, {"id": "7", "question": [{"language": "en", "string": "Which museum exhibits The Scream by Munch?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:The_Scream dbo:museum ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Gallery_(Norway)"}}, "entities": [{"URI": "http://dbpedia.org/resource/The_Scream", "surface form": "The Scream by Munch"}], "relations": [{"URI": "http://dbpedia.org/ontology/museum", "surface form": "museum"}, {"URI": "http://dbpedia.org/ontology/sport", "surface form": "exhibits"}]}, {"id": "19", "question": [{"language": "en", "string": "Is Egypts largest city also its capital?"}], "query": {"sparql": "ASK WHERE { <http://dbpedia.org/resource/Egypt> <http://dbpedia.org/ontology/largestCity> ?large ; <http://dbpedia.org/ontology/capital> ?capital FILTER ( ?large = ?capital ) }"}, "entities": [{"URI": "http://dbpedia.org/resource/Largest_octopus", "surface form": "Egypts largest city"}], "relations": [{"URI": "http://dbpedia.org/ontology/capital", "surface form": "capital"}]}, {"id": "20", "question": [{"language": "en", "string": "What is the revenue of IBM?"}], "query": {"sparql": "PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT ?number WHERE { res:IBM onto:revenue ?number }"}, "entities": [{"URI": "http://dbpedia.org/resource/IBM", "surface form": "IBM"}], "relations": [{"URI": "http://dbpedia.org/ontology/revenue", "surface form": "revenue"}]}, {"id": "21", "question": [{"language": "en", "string": "Which states border Utah?"}], "query": {"sparql": "PREFIX res: &lt;http://dbpedia.org/resource/&gt;PREFIX dbpedia2: &lt;http://dbpedia.org/property/&gt;PREFIX yago: &lt;http://dbpedia.org/class/yago/&gt;SELECT DISTINCT ?uri ?stringWHERE {         {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 . }}"}}, {"id": "8", "question": [{"language": "en", "string": "In which country is the Limerick Lake?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Limerick_Lake dbo:country ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Canada"}}, "entities": [{"URI": "http://dbpedia.org/resource/Limerick_Lake", "surface form": "Limerick Lake"}], "relations": [{"URI": "http://dbpedia.org/ontology/country", "surface form": "country"}]}, {"id": "9", "question": [{"language": "en", "string": "Which television shows were created by Walt Disney?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:TelevisionShow ; dbo:creator res:Walt_Disney }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Disney_anthology_television_series"}}, "entities": [{"URI": "http://dbpedia.org/resource/Walt_Disney", "surface form": "Walt Disney"}], "relations": [{"URI": "http://dbpedia.org/ontology/televisionSeries", "surface form": "television shows"}, {"URI": "http://dbpedia.org/ontology/creator", "surface form": "created"}]}, {"id": "10", "question": [{"language": "en", "string": "Which mountain is the highest after the Annapurna?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {  <http://dbpedia.org/resource/Annapurna> <http://dbpedia.org/ontology/elevation> ?elevation .  ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Mountain> .  ?uri <http://dbpedia.org/ontology/elevation> ?otherelevation .  FILTER (?otherelevation < ?elevation) . } ORDER BY DESC(?otherelevation) OFFSET 0 LIMIT 1 "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gasherbrum_I"}}, "entities": [{"URI": "http://dbpedia.org/resource/Annapurna_I_Middle_Peak", "surface form": "Annapurna"}], "relations": [{"URI": "http://dbpedia.org/ontology/mountainRange", "surface form": "mountain"}, {"URI": "http://dbpedia.org/ontology/elevation", "surface form": "highest"}]}, {"id": "11", "question": [{"language": "en", "string": "In which films directed by Garry Marshall was Julia Roberts starring?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Film> ; <http://dbpedia.org/ontology/starring> <http://dbpedia.org/resource/Julia_Roberts> ; <http://dbpedia.org/ontology/director> <http://dbpedia.org/resource/Garry_Marshall> }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Valentine's_Day_(2010_film)"}}, "entities": [{"URI": "http://dbpedia.org/resource/Garry_Marshall", "surface form": "Garry Marshall was Julia Roberts"}], "relations": [{"URI": "http://dbpedia.org/ontology/numberOfFilms", "surface form": "films"}, {"URI": "http://dbpedia.org/ontology/president", "surface form": "directed"}, {"URI": "http://dbpedia.org/ontology/starring", "surface form": "starring"}]}, {"id": "12", "question": [{"language": "en", "string": "Which bridges are of the same type as the Manhattan Bridge?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX dbr: <http://dbpedia.org/resource/> SELECT DISTINCT ?bridge WHERE { dbr:Manhattan_Bridge dbo:type ?type . ?bridge dbo:type ?type ; rdf:type dbo:Bridge }"}, "answers": {"bridge": {"type": "uri", "value": "http://dbpedia.org/resource/Ambassador_Bridge"}}, "entities": [{"URI": "http://dbpedia.org/resource/Manhattan_Bridge", "surface form": "Manhattan Bridge"}], "relations": [{"URI": "http://dbpedia.org/ontology/abstract", "surface form": "bridges"}, {"URI": "http://dbpedia.org/ontology/type", "surface form": "type"}]}, {"id": "27", "question": [{"language": "en", "string": "Was U.S. president Jackson involved in a war?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> ASK WHERE { res:Andrew_Jackson dbo:battle ?battle }"}, "entities": [{"URI": "http://dbpedia.org/resource/Andrew_Jackson", "surface form": "Jackson"}], "relations": [{"URI": "http://dbpedia.org/ontology/address", "surface form": "involved"}, {"URI": "http://dbpedia.org/ontology/profession", "surface form": "war"}]}, {"id": "28", "question": [{"language": "en", "string": "Which European countries are a constitutional monarchy?"}], "query": {"sparql": "PREFIX onto: &lt;http://dbpedia.org/ontology/&gt;PREFIX yago: &lt;http://dbpedia.org/class/yago/&gt;PREFIX rdf: &lt;http://www.w3.org/1999/02/22-rdf-syntax-ns#&gt;PREFIX rdfs: &lt;http://www.w3.org/2000/01/rdf-schema#&gt;PREFIX res: &lt;http://dbpedia.org/resource/&gt;SELECT DISTINCT ?uri ?stringWHERE {\t?uri rdf:type yago:EuropeanCountries .        ?uri onto:governmentType res:Constitutional_monarchy .        OPTIONAL {?uri rdfs:label ?string. FILTER (lang(?string) = 'en') }}"}, "entities": [{"URI": "http://dbpedia.org/resource/Europe", "surface form": "European countries"}, {"URI": "http://dbpedia.org/resource/List_of_fictional_European_countries", "surface form": "European countries"}, {"URI": "http://dbpedia.org/resource/Constitutional_monarchy", "surface form": "constitutional monarchy"}], "relations": [{"URI": "http://dbpedia.org/ontology/country", "surface form": ""}]}, {"id": "13", "question": [{"language": "en", "string": "Who is the author of WikiLeaks?"}], "query": {"sparql": "PREFIX res: <http://dbpedia.org/resource/> PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT ?uri WHERE { res:WikiLeaks onto:author ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Julian_Assange"}}, "entities": [{"URI": "http://dbpedia.org/resource/WikiLeaks", "surface form": "WikiLeaks"}], "relations": [{"URI": "http://dbpedia.org/ontology/author", "surface form": "author"}]}, {"id": "14", "question": [{"language": "en", "string": "Which state of the United States of America has the highest density?"}], "query": {"sparql": "PREFIX yago: <http://dbpedia.org/class/yago/> PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> PREFIX dbp: <http://dbpedia.org/property/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT ?uri WHERE { ?uri dbp:densityrank ?density } ORDER BY ASC(?density) LIMIT 1"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Prince_Edward_Island"}}, "entities": [{"URI": "http://dbpedia.org/resource/United_States", "surface form": "United States of America"}], "relations": [{"URI": "http://dbpedia.org/ontology/populationDensity", "surface form": "highest density"}]}, {"id": "15", "question": [{"language": "en", "string": "What is the currency of the Czech Republic?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Czech_Republic dbo:currency ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Czech_koruna"}}, "entities": [{"URI": "http://dbpedia.org/resource/Czech_Republic", "surface form": "Czech Republic"}, {"URI": "http://dbpedia.org/resource/Czech_Republic", "surface form": "Czech Republic"}], "relations": [{"URI": "http://dbpedia.org/ontology/currency", "surface form": "currency"}, {"URI": "http://dbpedia.org/ontology/country", "surface form": ""}]}, {"id": "16", "question": [{"language": "en", "string": "Which countries in the European Union adopted the Euro?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Country> { ?uri <http://dbpedia.org/ontology/currency> <http://dbpedia.org/resource/Euro> } UNION { ?uri <http://dbpedia.org/property/currencyCode> \"EUR\"@en } }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Andorra"}}, "entities": [{"URI": "http://dbpedia.org/resource/Countries_of_the_United_Kingdom", "surface form": "countries"}, {"URI": "http://dbpedia.org/resource/Europe", "surface form": "European Union adopted the Euro"}, {"URI": "http://dbpedia.org/resource/The_Adopted", "surface form": "European Union adopted the Euro"}], "relations": [{"URI": "http://dbpedia.org/ontology/country", "surface form": ""}]}, {"id": "17", "question": [{"language": "en", "string": "What is the area code of Berlin?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?string WHERE { res:Berlin dbo:areaCode ?string }"}, "answers": {"string": {"type": "literal", "value": "030"}}, "entities": [{"URI": "http://dbpedia.org/resource/Berlin", "surface form": "Berlin"}], "relations": [{"URI": "http://dbpedia.org/ontology/areaCode", "surface form": "area code"}]}, {"id": "18", "question": [{"language": "en", "string": "Which countries have more than two official languages?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Country> ; <http://dbpedia.org/ontology/officialLanguage> ?language } GROUP BY ?uri HAVING ( COUNT(?language) > 2 )"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Democratic_Federal_Yugoslavia"}}}, {"id": "35", "question": [{"language": "en", "string": "Who is the owner of Universal Studios?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Universal_Studios dbo:owner ?uri }"}, "entities": [{"URI": "http://dbpedia.org/resource/Universal_Studios", "surface form": "Universal Studios"}], "relations": [{"URI": "http://dbpedia.org/property/owner", "surface form": "owner"}]}, {"id": "36", "question": [{"language": "en", "string": "Through which countries does the Yenisei river flow?"}], "query": {"sparql": "PREFIX res: <http://dbpedia.org/resource/> PREFIX dbp: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Yenisei_River <http://dbpedia.org/ontology/country> ?uri }"}, "entities": [{"URI": "http://dbpedia.org/resource/Countries_of_the_United_Kingdom", "surface form": "countries"}, {"URI": "http://dbpedia.org/resource/Yenisei_River", "surface form": "Yenisei river flow"}], "relations": []}, {"id": "37", "question": [{"language": "en", "string": "When did Germany join the EU?"}], "query": {"sparql": "PREFIX res: &lt;http://dbpedia.org/resource/&gt;PREFIX dbpedia2: &lt;http://dbpedia.org/property/&gt;SELECT ?dateWHERE {               res:Germany dbpedia2:accessioneudate ?date .      }"}, "entities": [{"URI": "http://dbpedia.org/resource/Basque_language", "surface form": "EU"}, {"URI": "http://dbpedia.org/resource/Join", "surface form": "Germany join the"}], "relations": [{"URI": "http://dbpedia.org/property/date", "surface form": "when"}]}, {"id": "38", "question": [{"language": "en", "string": "Which monarchs of the United Kingdom were married to a German?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX yago: <http://dbpedia.org/class/yago/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type yago:WikicatMonarchsOfTheUnitedKingdom ; dbo:spouse ?spouse . ?spouse dbo:birthPlace res:Germany }"}}, {"id": "39", "question": [{"language": "en", "string": "When was the Battle of Gettysburg?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/>PREFIX res: <http://dbpedia.org/resource/>SELECT DISTINCT ?date WHERE {        res:Battle_of_Gettysburg dbo:date ?date .}"}, "entities": [{"URI": "http://dbpedia.org/resource/Battle_of_Gettysburg", "surface form": "Battle of Gettysburg"}], "relations": [{"URI": "http://dbpedia.org/property/date", "surface form": "when"}]}, {"id": "19", "question": [{"language": "en", "string": "What is the highest mountain in Germany?"}], "query": {"sparql": "PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT ?uri WHERE { ?uri rdf:type onto:Mountain ; onto:elevation ?elevation ; onto:locatedInArea <http://dbpedia.org/resource/Germany> } ORDER BY DESC(?elevation) LIMIT 1"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Zugspitze"}}, "entities": [{"URI": "http://dbpedia.org/resource/Germany", "surface form": "Germany"}], "relations": [{"URI": "http://dbpedia.org/ontology/elevation", "surface form": "highest mountain"}]}, {"id": "20", "question": [{"language": "en", "string": "Give me all soccer clubs in Spain."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/SoccerClub> { ?uri <http://dbpedia.org/ontology/ground> <http://dbpedia.org/resource/Spain> } UNION { ?uri <http://dbpedia.org/property/ground> ?ground FILTER regex(?ground, \"Spain\") } }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/And\u00e9s_CF"}}, "entities": [{"URI": "http://dbpedia.org/resource/Spain", "surface form": "Spain"}], "relations": [{"URI": "http://dbpedia.org/ontology/clubsRecordGoalscorer", "surface form": "soccer clubs"}]}, {"id": "21", "question": [{"language": "en", "string": "What are the official languages of the Philippines?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Philippines dbo:officialLanguage ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/English_language"}}, "entities": [{"URI": "http://dbpedia.org/resource/Philippines", "surface form": "Philippines"}], "relations": [{"URI": "http://dbpedia.org/ontology/officialLanguage", "surface form": "official languages"}]}, {"id": "43", "question": [{"language": "en", "string": "Who is the mayor of New York City?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:New_York_City dbo:leaderName ?uri }"}}, {"id": "22", "question": [{"language": "en", "string": "Who designed the Brooklyn Bridge?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Brooklyn_Bridge dbo:architect ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/John_A._Roebling"}}, "entities": [{"URI": "http://dbpedia.org/resource/Brooklyn_Bridge", "surface form": "Brooklyn Bridge"}], "relations": [{"URI": "http://dbpedia.org/property/designer", "surface form": "designed"}]}, {"id": "23", "question": [{"language": "en", "string": "Which telecommunications organizations are located in Belgium?"}], "query": {"sparql": "SELECT (COUNT(DISTINCT ?uri) AS ?c) WHERE { ?uri a <http://dbpedia.org/ontology/Organisation> { ?uri <http://dbpedia.org/ontology/industry> <http://dbpedia.org/resource/Telecommunication> } UNION { ?uri <http://dbpedia.org/property/industry> ?industry FILTER regex(?industry, \"Telecommunications\") } { ?uri <http://dbpedia.org/ontology/location> <http://dbpedia.org/resource/Belgium> } UNION { ?uri <http://dbpedia.org/property/locationCountry> \"Belgium\"@en } }"}, "answers": {"c": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "7"}}, "entities": [{"URI": "http://dbpedia.org/resource/Complex_organizations", "surface form": "telecommunications organizations"}, {"URI": "http://dbpedia.org/resource/Belgium", "surface form": "Belgium"}], "relations": [{"URI": "http://dbpedia.org/ontology/place", "surface form": "located"}]}, {"id": "24", "question": [{"language": "en", "string": "What is the profession of Frank Herbert?"}], "query": {"sparql": "PREFIX dbpedia2: <http://dbpedia.org/property/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?string WHERE { res:Frank_Herbert dbpedia2:occupation ?string }"}, "answers": {"string": {"type": "literal", "xml:lang": "en", "value": "Novelist"}}, "entities": [{"URI": "http://dbpedia.org/resource/Frank_Herbert", "surface form": "Frank Herbert"}], "relations": [{"URI": "http://dbpedia.org/ontology/profession", "surface form": "profession"}]}, {"id": "25", "question": [{"language": "en", "string": "What is the highest place of Karakoram?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Karakoram dbp:highest ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/K2"}}, "entities": [{"URI": "http://dbpedia.org/resource/Karakoram", "surface form": "Karakoram"}], "relations": [{"URI": "http://dbpedia.org/ontology/elevation", "surface form": "highest place"}]}, {"id": "26", "question": [{"language": "en", "string": "Give me the homepage of Forbes."}], "query": {"sparql": "PREFIX res: <http://dbpedia.org/resource/> PREFIX foaf: <http://xmlns.com/foaf/0.1/> SELECT DISTINCT ?string WHERE { res:Forbes foaf:homepage ?string }"}, "answers": {"string": {"type": "uri", "value": "https://www.forbes.com/%7Cforbes.com"}}, "entities": [{"URI": "http://dbpedia.org/resource/Forbes", "surface form": "Forbes"}], "relations": []}, {"id": "49", "question": [{"language": "en", "string": "Which companies are in the computer software industry?"}], "query": {"sparql": "PREFIX rdfs: &lt;http://www.w3.org/2000/01/rdf-schema#&gt;PREFIX rdf: &lt;http://www.w3.org/1999/02/22-rdf-syntax-ns#&gt;PREFIX dbpedia2: &lt;http://dbpedia.org/property/&gt;PREFIX onto: &lt;http://dbpedia.org/ontology/&gt;PREFIX res: &lt;http://dbpedia.org/resource/&gt;SELECT DISTINCT ?uri ?stringWHERE{ \t?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') }}"}, "entities": [{"URI": "http://dbpedia.org/resource/Companies_listed_on_the_New_York_Stock_Exchange_(J)", "surface form": "companies"}, {"URI": "http://dbpedia.org/resource/Computer_industry", "surface form": "computer software industry"}], "relations": []}, {"id": "50", "question": [{"language": "en", "string": "What did Bruce Carver die from?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Bruce_Carver dbo:deathCause ?uri }"}}, {"id": "51", "question": [{"language": "en", "string": "Give me all school types."}], "query": {"sparql": "PREFIX yago: <http://dbpedia.org/class/yago/>PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>SELECT DISTINCT ?uri WHERE { \t?uri rdf:type yago:SchoolTypes .}"}, "entities": [], "relations": [{"URI": "http://dbpedia.org/ontology/discipline", "surface form": "school types"}]}, {"id": "27", "question": [{"language": "en", "string": "Which presidents were born in 1945?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/President> ; <http://dbpedia.org/ontology/birthDate> ?date FILTER regex(?date, \"^1945\") }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vladislav_Ardzinba"}}}, {"id": "53", "question": [{"language": "en", "string": "Who are the presidents of the United States?"}], "query": {"sparql": "PREFIX rdf: &lt;http://www.w3.org/1999/02/22-rdf-syntax-ns#&gt;PREFIX yago: &lt;http://dbpedia.org/class/yago/&gt;PREFIX onto: &lt;http://dbpedia.org/ontology/&gt;PREFIX res: &lt;http://dbpedia.org/resource/&gt;PREFIX rdfs: &lt;http://www.w3.org/2000/01/rdf-schema#&gt;PREFIX prop: &lt;http://dbpedia.org/property/&gt;SELECT DISTINCT ?uri ?stringWHERE {        {          ?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') }}"}, "entities": [{"URI": "http://dbpedia.org/resource/United_States", "surface form": "United States"}], "relations": [{"URI": "http://dbpedia.org/ontology/country", "surface form": "presidents"}]}, {"id": "28", "question": [{"language": "en", "string": "Who was the wife of President Lincoln?"}], "query": {"sparql": "PREFIX dbr: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT ?uri ?string WHERE { dbr:Abraham_Lincoln onto:spouse ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mary_Todd_Lincoln"}}, "entities": [{"URI": "http://dbpedia.org/resource/USS_President_Lincoln_(1907)", "surface form": "President Lincoln"}], "relations": [{"URI": "http://dbpedia.org/ontology/spouse", "surface form": "wife"}]}, {"id": "29", "question": [{"language": "en", "string": "Who developed the video game World of Warcraft?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:World_of_Warcraft dbo:developer ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Blizzard_Entertainment"}}, "entities": [{"URI": "http://dbpedia.org/resource/World_of_Warcraft", "surface form": "video game World of Warcraft"}], "relations": [{"URI": "http://dbpedia.org/ontology/developer", "surface form": "developed"}]}, {"id": "56", "question": [{"language": "en", "string": "What is the official website of Tom Hanks?"}], "query": {"sparql": "PREFIX rdfs: &lt;http://www.w3.org/2000/01/rdf-schema#&gt;PREFIX foaf: &lt;http://xmlns.com/foaf/0.1/&gt;SELECT ?uriWHERE{ \t?subject  rdfs:label 'Tom Hanks'@en .        ?subject foaf:homepage ?uri}"}, "entities": [{"URI": "http://dbpedia.org/resource/Tom_Hanks", "surface form": "Tom Hanks"}], "relations": [{"URI": "http://dbpedia.org/ontology/incumbent", "surface form": "official website"}]}, {"id": "57", "question": [{"language": "en", "string": "List all episodes of the first season of the HBO television series The Sopranos!"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { ?uri dbo:series res:The_Sopranos ; dbo:seasonNumber 1 }"}}, {"id": "30", "question": [{"language": "en", "string": "Who produced the most films?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?film <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film> . ?film <http://dbpedia.org/ontology/producer> ?uri . } ORDER BY DESC(COUNT(?film)) OFFSET 0 LIMIT 1"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jesse_L._Lasky"}}, "entities": [], "relations": [{"URI": "http://dbpedia.org/ontology/wineProduced", "surface form": "produced"}, {"URI": "http://dbpedia.org/ontology/numberOfFilms", "surface form": "films"}]}, {"id": "59", "question": [{"language": "en", "string": "Which people have as their given name Jimmy?"}], "query": {"sparql": "PREFIX rdfs: &lt;http://www.w3.org/2000/01/rdf-schema#&gt;PREFIX rdf: &lt;http://www.w3.org/1999/02/22-rdf-syntax-ns#&gt;PREFIX foaf: &lt;http://xmlns.com/foaf/0.1/&gt;SELECT DISTINCT ?uri ?stringWHERE {\t?uri rdf:type foaf:Person.               ?uri foaf:givenName 'Jimmy'@en   .        OPTIONAL {?uri rdfs:label ?string . FILTER (lang(?string) = 'en') }}"}, "entities": [{"URI": "http://dbpedia.org/resource/Jimmy_Jimmy", "surface form": "name Jimmy"}], "relations": []}, {"id": "60", "question": [{"language": "en", "string": "Is there a video game called Battle Chess?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> ASK WHERE { ?uri rdf:type dbo:VideoGame ; rdfs:label \"Battle Chess\"@en }"}, "entities": [{"URI": "http://dbpedia.org/resource/Battle_Chess", "surface form": "Battle Chess"}], "relations": [{"URI": "http://dbpedia.org/property/release", "surface form": "video game"}, {"URI": "http://dbpedia.org/ontology/alias", "surface form": "called"}]}, {"id": "31", "question": [{"language": "en", "string": "Which mountains are higher than the Nanga Parbat?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Nanga_Parbat> <http://dbpedia.org/ontology/elevation> ?elevation . ?uri a <http://dbpedia.org/ontology/Mountain> { ?uri <http://dbpedia.org/ontology/elevation> ?otherelevation } UNION { ?uri <http://dbpedia.org/property/elevationM> ?otherelevation } FILTER ( ?otherelevation > ?elevation ) }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/1974_French_Mount_Everest_expedition"}}, "entities": [{"URI": "http://dbpedia.org/resource/Nanga_Parbat", "surface form": "Nanga Parbat"}], "relations": [{"URI": "http://dbpedia.org/ontology/elevation", "surface form": "mountains"}, {"URI": "http://dbpedia.org/ontology/elevation", "surface form": "higher"}]}, {"id": "62", "question": [{"language": "en", "string": "Who created English Wikipedia?"}], "query": {"sparql": "PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT ?uri WHERE { <http://dbpedia.org/resource/Wikipedia> onto:author ?uri }"}}, {"id": "32", "question": [{"language": "en", "string": "Give me all actors starring in Batman Begins."}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/>PREFIX res: <http://dbpedia.org/resource/>PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>SELECT DISTINCT ?uri ?string WHERE {\tres:Batman_Begins dbo:starring ?uri .\tOPTIONAL { ?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gary_Oldman"}, "string": {"type": "literal", "xml:lang": "en", "value": "Gary Oldman"}}, "entities": [{"URI": "http://dbpedia.org/resource/Batman_Begins", "surface form": "Batman Begins"}], "relations": [{"URI": "http://dbpedia.org/ontology/artist", "surface form": "actors"}, {"URI": "http://dbpedia.org/ontology/starring", "surface form": "starring"}]}, {"id": "64", "question": [{"language": "en", "string": "Which software has been developed by organizations founded in California?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Software> . ?company a <http://dbpedia.org/ontology/Company> . ?uri <http://dbpedia.org/ontology/developer> ?company . ?company <http://dbpedia.org/ontology/foundationPlace> <http://dbpedia.org/resource/California> }"}}, {"id": "65", "question": [{"language": "en", "string": "Which companies work in the aerospace industry as well as on nuclear reactor technology?"}], "query": {"sparql": "PREFIX dbo:  <http://dbpedia.org/ontology/>PREFIX dbp: <http://dbpedia.org/property/>PREFIX res:  <http://dbpedia.org/resource/>PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>SELECT DISTINCT ?uriWHERE { \t?uri rdf:type dbo:Company  .\t?uri dbp:industry res:Aerospace .        ?uri dbp:industry res:Nuclear_reactor_technology .}"}, "entities": [{"URI": "http://dbpedia.org/resource/Companies_listed_on_the_New_York_Stock_Exchange_(J)", "surface form": "companies"}, {"URI": "http://dbpedia.org/resource/Nuclear_reactor", "surface form": "nuclear reactor technology"}], "relations": [{"URI": "http://dbpedia.org/ontology/service", "surface form": "work"}, {"URI": "http://dbpedia.org/property/industry", "surface form": "aerospace industry"}]}, {"id": "66", "question": [{"language": "en", "string": "Is Christian Bale starring in Batman Begins?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> ASK WHERE { res:Batman_Begins dbo:starring res:Christian_Bale }"}, "entities": [{"URI": "http://dbpedia.org/resource/Christian_Bale", "surface form": "Christian Bale"}, {"URI": "http://dbpedia.org/resource/Batman_Begins", "surface form": "Batman Begins"}], "relations": [{"URI": "http://dbpedia.org/ontology/starring", "surface form": "starring"}]}, {"id": "33", "question": [{"language": "en", "string": "Give me the websites of companies with more than 500000 employees."}], "query": {"sparql": "PREFIX foaf: <http://xmlns.com/foaf/0.1/> PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> SELECT distinct ?web WHERE { ?sub dbo:numberOfEmployees ?obj . ?sub foaf:homepage ?web FILTER( xsd:integer(?obj) > 500000 ) . }"}, "answers": {"web": {"type": "uri", "value": "https://www.aus.com/"}}}, {"id": "34", "question": [{"language": "en", "string": "Which actors were born in Germany?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Actor> { ?uri <http://dbpedia.org/ontology/birthPlace> <http://dbpedia.org/resource/Germany> } UNION { ?uri <http://dbpedia.org/ontology/birthPlace> ?place . ?place <http://dbpedia.org/ontology/country> <http://dbpedia.org/resource/Germany> } }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Friederike_Caroline_Neuber"}}, "entities": [{"URI": "http://dbpedia.org/resource/Germany", "surface form": "Germany"}], "relations": [{"URI": "http://dbpedia.org/ontology/award", "surface form": "actors"}, {"URI": "http://dbpedia.org/ontology/birthPlace", "surface form": "born"}]}, {"id": "69", "question": [{"language": "en", "string": "Which country does the Airedale Terrier come from?"}], "query": {"sparql": "PREFIX rdfs: &lt;http://www.w3.org/2000/01/rdf-schema#&gt;PREFIX prop: &lt;http://dbpedia.org/property/&gt;SELECT ?stringWHERE {\t?dog rdfs:label 'Airedale Terrier'@en .        ?dog prop:country ?string      }"}, "entities": [{"URI": "http://dbpedia.org/resource/Airedale_Terrier", "surface form": "Airedale Terrier"}], "relations": [{"URI": "http://dbpedia.org/ontology/country", "surface form": "country"}]}, {"id": "70", "question": [{"language": "en", "string": "Which birds are there in the United States?"}], "query": {"sparql": "PREFIX yago: &lt;http://dbpedia.org/class/yago/&gt;PREFIX rdfs: &lt;http://www.w3.org/2000/01/rdf-schema#&gt;PREFIX rdf: &lt;http://www.w3.org/1999/02/22-rdf-syntax-ns#&gt;SELECT DISTINCT ?uri ?stringWHERE {\t?uri rdf:type yago:BirdsOfTheUnitedStates.        OPTIONAL {?uri rdfs:label ?string . FILTER (lang(?string) = 'en') }}"}}, {"id": "71", "question": [{"language": "en", "string": "Give me all European Capitals!"}], "query": {"sparql": "PREFIX yago: &lt;http://dbpedia.org/class/yago/&gt;PREFIX rdfs: &lt;http://www.w3.org/2000/01/rdf-schema#&gt;PREFIX rdf: &lt;http://www.w3.org/1999/02/22-rdf-syntax-ns#&gt;SELECT ?uri ?stringWHERE { \t?uri rdf:type yago:CapitalsInEurope.\tOPTIONAL {?uri rdfs:label ?string . FILTER (lang(?string) = 'en') }}"}, "entities": [{"URI": "http://dbpedia.org/resource/Europe", "surface form": "European Capitals"}, {"URI": "http://dbpedia.org/resource/Washington_Capitals", "surface form": "European Capitals"}], "relations": [{"URI": "http://dbpedia.org/ontology/country", "surface form": ""}]}, {"id": "72", "question": [{"language": "en", "string": "Which cities have more than 2 million inhabitants?"}], "query": {"sparql": "PREFIX rdfs: &lt;http://www.w3.org/2000/01/rdf-schema#&gt;PREFIX rdf: &lt;http://www.w3.org/1999/02/22-rdf-syntax-ns#&gt;PREFIX prop: &lt;http://dbpedia.org/property/&gt;PREFIX xsd: &lt;http://www.w3.org/2001/XMLSchema#&gt;PREFIX onto: &lt;http://dbpedia.org/ontology/&gt;SELECT DISTINCT ?uri ?stringWHERE { \t?uri rdf:type onto:City.      { ?uri prop:population ?population. }         UNION       { ?uri prop:populationUrban ?population. }\tFILTER (xsd:integer(?population) &gt; 2000000) .\tOPTIONAL {?uri rdfs:label ?string . FILTER (lang(?string) = 'en') }}"}, "entities": [], "relations": [{"URI": "http://dbpedia.org/ontology/city", "surface form": "cities"}, {"URI": "http://dbpedia.org/ontology/iso6392Code", "surface form": "2"}, {"URI": "http://dbpedia.org/ontology/country", "surface form": "inhabitants"}]}, {"id": "35", "question": [{"language": "en", "string": "Who was Tom Hanks married to?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> SELECT DISTINCT ?uri WHERE { dbr:Tom_Hanks dbo:spouse ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rita_Wilson"}}, "entities": [{"URI": "http://dbpedia.org/resource/Tom_Hanks", "surface form": "Tom Hanks"}], "relations": [{"URI": "http://dbpedia.org/property/spouse", "surface form": "married"}]}, {"id": "74", "question": [{"language": "en", "string": "When was DBpedia released?"}], "query": {"sparql": "PREFIX onto: &lt;http://dbpedia.org/ontology/&gt;PREFIX rdf: &lt;http://www.w3.org/1999/02/22-rdf-syntax-ns#&gt;PREFIX rdfs: &lt;http://www.w3.org/2000/01/rdf-schema#&gt;SELECT ?dateWHERE {\t?website rdf:type onto:Software .        ?website onto:releaseDate ?date .        ?website rdfs:label 'DBpedia'@en   }"}, "entities": [{"URI": "http://dbpedia.org/resource/DBpedia", "surface form": "DBpedia"}], "relations": [{"URI": "http://dbpedia.org/ontology/discharge", "surface form": "released"}]}, {"id": "36", "question": [{"language": "en", "string": "Which people were born in Heraklion?"}], "query": {"sparql": "PREFIX yago: <http://dbpedia.org/class/yago/> PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Person ; onto:birthPlace <http://dbpedia.org/resource/Heraklion>. }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Anastasios_Triantafyllou"}}}, {"id": "37", "question": [{"language": "en", "string": "Which caves have more than 3 entrances?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Cave> ; <http://dbpedia.org/property/entranceCount> ?entrance FILTER ( ?entrance > 3 ) }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Amat\u00e9rsk\u00e1_Cave"}}, "entities": [{"URI": "http://dbpedia.org/resource/Caves_of_Aggtelek_Karst_and_Slovak_Karst", "surface form": "caves"}], "relations": [{"URI": "http://dbpedia.org/ontology/iso6393Code", "surface form": "3 entrances"}]}, {"id": "38", "question": [{"language": "en", "string": "Give me all films produced by Hal Roach."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Film> ; <http://dbpedia.org/ontology/producer> <http://dbpedia.org/resource/Hal_Roach> }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/All_Aboard_(1917_film)"}}, "entities": [{"URI": "http://dbpedia.org/resource/Hal_Roach", "surface form": "Hal Roach"}], "relations": [{"URI": "http://dbpedia.org/ontology/numberOfFilms", "surface form": "films"}, {"URI": "http://dbpedia.org/ontology/wineProduced", "surface form": "produced"}]}, {"id": "39", "question": [{"language": "en", "string": "Which software has been published by Mean Hamster Software?"}], "query": {"sparql": "PREFIX res: <http://dbpedia.org/resource/> PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Software { ?uri prop:publisher \"Mean Hamster Software\"@en } UNION { ?uri onto:publisher res:Mean_Hamster_Software } }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Riven"}}, "entities": [{"URI": "http://dbpedia.org/resource/Software", "surface form": "software"}, {"URI": "http://dbpedia.org/resource/Mean_Hamster_Software", "surface form": "Mean Hamster Software"}], "relations": [{"URI": "http://dbpedia.org/ontology/publisher", "surface form": "published"}]}, {"id": "79", "question": [{"language": "en", "string": "What languages are spoken in Estonia?"}], "query": {"sparql": "PREFIX rdfs: &lt;http://www.w3.org/2000/01/rdf-schema#&gt;PREFIX rdf: &lt;http://www.w3.org/1999/02/22-rdf-syntax-ns#&gt;PREFIX onto: &lt;http://dbpedia.org/ontology/&gt;SELECT DISTINCT ?uri ?stringWHERE {       ?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') }}"}, "entities": [{"URI": "http://dbpedia.org/resource/Estonia", "surface form": "Estonia"}], "relations": [{"URI": "http://dbpedia.org/ontology/language", "surface form": "languages"}, {"URI": "http://dbpedia.org/ontology/spokenIn", "surface form": "spoken"}]}, {"id": "40", "question": [{"language": "en", "string": "Who owns Aldi?"}], "query": {"sparql": "PREFIX res: <http://dbpedia.org/resource/> PREFIX dbp: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Aldi dbp:founders ?uri }"}, "answers": {"uri": {"type": "literal", "xml:lang": "en", "value": "Karl and Theo Albrecht"}}, "entities": [{"URI": "http://dbpedia.org/resource/Aldi", "surface form": "Aldi"}], "relations": [{"URI": "http://dbpedia.org/ontology/family", "surface form": "owns"}]}, {"id": "81", "question": [{"language": "en", "string": "Which capitals in Europe were host cities of the summer olympic games?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {  ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/class/yago/CapitalsInEurope> .  ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/class/yago/HostCitiesOfTheSummerOlympicGames> . } "}, "entities": [{"URI": "http://dbpedia.org/resource/Europe", "surface form": "Europe"}, {"URI": "http://dbpedia.org/resource/Summer_Olympic_Games", "surface form": "summer olympic games"}], "relations": [{"URI": "http://dbpedia.org/ontology/capital", "surface form": "capitals"}, {"URI": "http://dbpedia.org/ontology/city", "surface form": "host cities"}]}, {"id": "82", "question": [{"language": "en", "string": "Who has been the 5th president of the United States of America?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/>SELECT DISTINCT ?uri WHERE {\t?uri dbo:orderInOffice '5th President of the United States'@en .}"}, "entities": [{"URI": "http://dbpedia.org/resource/United_States", "surface form": "United States of America"}], "relations": [{"URI": "http://dbpedia.org/ontology/leader", "surface form": "5th president"}]}, {"id": "83", "question": [{"language": "en", "string": "Who is called Dana?"}], "query": {"sparql": "PREFIX rdf: &lt;http://www.w3.org/1999/02/22-rdf-syntax-ns#&gt;PREFIX rdfs: &lt;http://www.w3.org/2000/01/rdf-schema#&gt;PREFIX foaf: &lt;http://xmlns.com/foaf/0.1/&gt;PREFIX prop: &lt;http://dbpedia.org/property/&gt;SELECT DISTINCT ?uri ?stringWHERE {      { ?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') }       }"}, "entities": [{"URI": "http://dbpedia.org/resource/Dana", "surface form": "Dana"}], "relations": [{"URI": "http://dbpedia.org/ontology/alias", "surface form": "called"}]}, {"id": "41", "question": [{"language": "en", "string": "Which music albums contain the song Last Christmas?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?single <http://dbpedia.org/ontology/album> ?uri ; <http://www.w3.org/2000/01/rdf-schema#label> \"Last Christmas\"@en }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Music_from_the_Edge_of_Heaven"}}, "entities": [{"URI": "http://dbpedia.org/resource/The_Last_Song_(film)", "surface form": "song Last Christmas"}], "relations": [{"URI": "http://dbpedia.org/ontology/musicComposer", "surface form": "music albums"}]}, {"id": "42", "question": [{"language": "en", "string": "Which books were written by Danielle Steel?"}], "query": {"sparql": "PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX foaf: <http://xmlns.com/foaf/0.1/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT ?uri WHERE { ?uri rdf:type onto:Book ; onto:author <http://dbpedia.org/resource/Danielle_Steel> }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Amazing_Grace_(novel)"}}, "entities": [{"URI": "http://dbpedia.org/resource/Danielle_Steel", "surface form": "Danielle Steel"}], "relations": [{"URI": "http://dbpedia.org/ontology/volume", "surface form": "books"}, {"URI": "http://dbpedia.org/ontology/writer", "surface form": "written"}]}, {"id": "86", "question": [{"language": "en", "string": "Which companies are located in California, USA?"}], "query": {"sparql": "PREFIX rdfs: &lt;http://www.w3.org/2000/01/rdf-schema#&gt;PREFIX onto: &lt;http://dbpedia.org/ontology/&gt;PREFIX res: &lt;http://dbpedia.org/resource/&gt;SELECT DISTINCT ?uri ?stringWHERE{ \t?uri rdf:type onto:Organisation .        ?uri onto:location res:California .        OPTIONAL {?uri rdfs:label ?string . FILTER (lang(?string) = 'en') }}"}, "entities": [{"URI": "http://dbpedia.org/resource/Companies_listed_on_the_New_York_Stock_Exchange_(J)", "surface form": "companies"}, {"URI": "http://dbpedia.org/resource/United_States", "surface form": "USA"}, {"URI": "http://dbpedia.org/resource/California,_Cincinnati", "surface form": "California,"}], "relations": [{"URI": "http://dbpedia.org/ontology/locatedInArea", "surface form": "located"}]}, {"id": "87", "question": [{"language": "en", "string": "Which genre does DBpedia belong to?"}], "query": {"sparql": "PREFIX prop: &lt;http://dbpedia.org/property/&gt;PREFIX onto: &lt;http://dbpedia.org/ontology/&gt;PREFIX rdf: &lt;http://www.w3.org/1999/02/22-rdf-syntax-ns#&gt;PREFIX rdfs: &lt;http://www.w3.org/2000/01/rdf-schema#&gt;SELECT ?uri ?stringWHERE {\t?dbpedia rdf:type onto:Software .        ?dbpedia onto:genre ?uri .        ?dbpedia rdfs:label 'DBpedia'@en .        OPTIONAL {?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } }"}}, {"id": "43", "question": [{"language": "en", "string": "Which country has the most official languages?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Country> . ?uri <http://dbpedia.org/property/officialLanguages> ?language . } ORDER BY DESC(COUNT(?language)) OFFSET 0 LIMIT 1"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/South_Africa"}}, "entities": [], "relations": [{"URI": "http://dbpedia.org/ontology/country", "surface form": "country"}, {"URI": "http://dbpedia.org/ontology/incumbent", "surface form": "official languages"}]}, {"id": "44", "question": [{"language": "en", "string": "In which programming language is GIMP written?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:GIMP dbo:programmingLanguage ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/C_(programming_language)"}}, "entities": [{"URI": "http://dbpedia.org/resource/GIMP", "surface form": "GIMP"}], "relations": [{"URI": "http://dbpedia.org/ontology/programmingLanguage", "surface form": "programming language"}, {"URI": "http://dbpedia.org/ontology/writer", "surface form": "written"}]}, {"id": "45", "question": [{"language": "en", "string": "Who produced films starring Natalie Portman?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?film a <http://dbpedia.org/ontology/Film> ; <http://dbpedia.org/ontology/starring> <http://dbpedia.org/resource/Natalie_Portman> ; <http://dbpedia.org/ontology/producer> ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Wachowskis"}}, "entities": [{"URI": "http://dbpedia.org/resource/Natalie_Portman", "surface form": "produced films films starring Natalie Portman"}], "relations": [{"URI": "http://dbpedia.org/ontology/wineProduced", "surface form": "produced"}]}, {"id": "91", "question": [{"language": "en", "string": "Give me all movies with Tom Cruise!"}], "query": {"sparql": "PREFIX rdfs: &lt;http://www.w3.org/2000/01/rdf-schema#&gt;PREFIX onto: &lt;http://dbpedia.org/ontology/&gt;PREFIX res: &lt;http://dbpedia.org/resource/&gt;PREFIX rdf: &lt;http://www.w3.org/1999/02/22-rdf-syntax-ns#&gt;PREFIX prop: &lt;http://dbpedia.org/property/&gt;SELECT DISTINCT ?uri ?stringWHERE {\t?uri rdf:type onto:Film.\t{ ?uri prop:starring res:Tom_Cruise . }        UNION        { ?uri onto:starring res:Tom_Cruise . }\tOPTIONAL {?uri rdfs:label ?string . FILTER (lang(?string) = 'en') }}"}, "entities": [{"URI": "http://dbpedia.org/resource/Tom_Cruise", "surface form": "Tom Cruise"}], "relations": [{"URI": "http://dbpedia.org/ontology/film", "surface form": "movies"}]}, {"id": "46", "question": [{"language": "en", "string": "In which films did Julia Roberts as well as Richard Gere play?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Film ; dbo:starring res:Julia_Roberts ; dbo:starring res:Richard_Gere }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pretty_Woman"}}, "entities": [{"URI": "http://dbpedia.org/resource/Julia_Roberts", "surface form": "Julia Roberts"}, {"URI": "http://dbpedia.org/resource/Richard_Gere", "surface form": "Richard Gere"}], "relations": [{"URI": "http://dbpedia.org/ontology/numberOfFilms", "surface form": "films"}, {"URI": "http://dbpedia.org/ontology/starring", "surface form": "play"}]}, {"id": "93", "question": [{"language": "en", "string": "Give me all female German chancellors!"}], "query": {"sparql": "PREFIX rdf: &lt;http://www.w3.org/1999/02/22-rdf-syntax-ns#&gt;PREFIX rdfs: &lt;http://www.w3.org/2000/01/rdf-schema#&gt;PREFIX yago: &lt;http://dbpedia.org/class/yago/&gt;PREFIX prop: &lt;http://dbpedia.org/property/&gt;SELECT ?uri ?stringWHERE {\t?uri rdf:type yago:FemaleHeadsOfGovernment.        ?uri prop:office ?office .        FILTER regex(?office, 'Chancellor of Germany').                OPTIONAL {?uri rdfs:label ?string . FILTER (lang(?string) = 'en') }}"}, "entities": [{"URI": "http://dbpedia.org/resource/List_of_German_female_artists", "surface form": "female German chancellors"}], "relations": []}, {"id": "47", "question": [{"language": "en", "string": "Who wrote the book The pillars of the Earth?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> SELECT DISTINCT ?uri WHERE { res:The_Pillars_of_the_Earth dbo:author ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ken_Follett"}}, "entities": [{"URI": "http://dbpedia.org/resource/The_Pillars_of_the_Earth", "surface form": "The Pillars of the Earth"}], "relations": [{"URI": "http://dbpedia.org/ontology/author", "surface form": "wrote"}]}, {"id": "48", "question": [{"language": "en", "string": "How many films did Leonardo DiCaprio star in?"}], "query": {"sparql": "SELECT (COUNT(DISTINCT ?uri) AS ?c) WHERE { ?uri a <http://dbpedia.org/ontology/Film> ; <http://dbpedia.org/ontology/starring> <http://dbpedia.org/resource/Leonardo_DiCaprio> }"}, "answers": {"c": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "33"}}, "entities": [{"URI": "http://dbpedia.org/resource/Leonardo_DiCaprio", "surface form": "Leonardo DiCaprio star"}], "relations": [{"URI": "http://dbpedia.org/ontology/numberOfFilms", "surface form": "films"}]}, {"id": "49", "question": [{"language": "en", "string": "Give me all soccer clubs in the Premier League."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/SoccerClub> ; <http://dbpedia.org/ontology/league> <http://dbpedia.org/resource/Premier_League> }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/2010\u201311_Tottenham_Hotspur_F.C._season"}}, "entities": [{"URI": "http://dbpedia.org/resource/Premier_League", "surface form": "Premier League"}], "relations": [{"URI": "http://dbpedia.org/ontology/clubsRecordGoalscorer", "surface form": "soccer clubs"}]}, {"id": "50", "question": [{"language": "en", "string": "When was Capcom founded?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/>PREFIX res: <http://dbpedia.org/resource/>SELECT DISTINCT ?date WHERE { res:Capcom dbo:foundingDate ?date .}"}, "answers": {"date": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#date", "value": "1979-05-30"}}, "entities": [{"URI": "http://dbpedia.org/resource/Capcom", "surface form": "Capcom"}], "relations": [{"URI": "http://dbpedia.org/ontology/foundingYear", "surface form": "founded"}]}, {"id": "51", "question": [{"language": "en", "string": "Which organizations were founded in 1950?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbp: <http://dbpedia.org/property/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> 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\") }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Danish_Defence_Intelligence_Service"}}, "entities": [{"URI": "http://dbpedia.org/resource/1950", "surface form": "1950"}], "relations": [{"URI": "http://dbpedia.org/ontology/company", "surface form": "organizations"}, {"URI": "http://dbpedia.org/ontology/author", "surface form": "founded"}]}, {"id": "52", "question": [{"language": "en", "string": "What is the highest mountain?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Mountain> ; <http://dbpedia.org/ontology/elevation> ?elevation } ORDER BY DESC(?elevation) OFFSET 0 LIMIT 1"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pico_Alto"}}, "entities": [], "relations": [{"URI": "http://dbpedia.org/ontology/highestMountain", "surface form": "highest mountain"}]}, {"id": "100", "question": [{"language": "en", "string": "Is Natalie Portman an actress?"}], "query": {"sparql": "PREFIX rdfs: &lt;http://www.w3.org/2000/01/rdf-schema#&gt;PREFIX rdf: &lt;http://www.w3.org/1999/02/22-rdf-syntax-ns#&gt;PREFIX onto: &lt;http://dbpedia.org/ontology/&gt;ASKWHERE { \t?subject rdf:type onto:Actor.      \t?subject rdfs:label 'Natalie Portman'@en.}"}, "entities": [{"URI": "http://dbpedia.org/resource/Natalie_Portman", "surface form": "Natalie Portman"}], "relations": [{"URI": "http://dbpedia.org/ontology/artist", "surface form": "actress"}]}, {"id": "53", "question": [{"language": "en", "string": "Which German cities have more than 250000 inhabitants?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { { ?uri a <http://dbpedia.org/ontology/City> } UNION { ?uri a <http://dbpedia.org/ontology/Town> } ?uri <http://dbpedia.org/ontology/country> <http://dbpedia.org/resource/Germany> ; <http://dbpedia.org/ontology/populationTotal> ?population FILTER ( ?population > 250000 ) }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Berlin"}}, "entities": [{"URI": "http://dbpedia.org/resource/Germany", "surface form": "German cities"}, {"URI": "http://dbpedia.org/resource/German", "surface form": "German cities"}, {"URI": "http://dbpedia.org/resource/Population", "surface form": "250000 inhabitants"}], "relations": [{"URI": "http://dbpedia.org/ontology/country", "surface form": ""}, {"URI": "http://dbpedia.org/ontology/country", "surface form": ""}]}, {"id": "102", "question": [{"language": "en", "string": "Who was the successor of John F. Kennedy?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:John_F._Kennedy dbo:successor ?uri }"}, "entities": [{"URI": "http://dbpedia.org/resource/F", "surface form": "F"}, {"URI": "http://dbpedia.org/resource/John_F._Kennedy", "surface form": "John  Kennedy"}], "relations": [{"URI": "http://dbpedia.org/ontology/successor", "surface form": "successor"}]}, {"id": "103", "question": [{"language": "en", "string": "Who is the mayor of Berlin?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Berlin dbp:leader ?uri }"}, "entities": [{"URI": "http://dbpedia.org/resource/Berlin", "surface form": "Berlin"}], "relations": [{"URI": "http://dbpedia.org/ontology/mayor", "surface form": "mayor"}]}, {"id": "104", "question": [{"language": "en", "string": "How many students does the Free University in Amsterdam have?"}], "query": {"sparql": "SELECT DISTINCT ?num WHERE {  <http://dbpedia.org/resource/VU_University_Amsterdam> <http://dbpedia.org/ontology/numberOfStudents> ?num . } "}, "entities": [{"URI": "http://dbpedia.org/resource/Vrije_Universiteit_Amsterdam", "surface form": "Free University in Amsterdam"}], "relations": [{"URI": "http://dbpedia.org/ontology/numberOfStudents", "surface form": "students"}]}, {"id": "54", "question": [{"language": "en", "string": "What is the second highest mountain on Earth?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Mountain> ; <http://dbpedia.org/ontology/elevation> ?elevation } ORDER BY DESC(?elevation) OFFSET 1 LIMIT 1"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alpide_belt"}}, "entities": [{"URI": "http://dbpedia.org/resource/Earth", "surface form": "Earth"}], "relations": [{"URI": "http://dbpedia.org/ontology/elevation", "surface form": "highest mountain"}]}, {"id": "106", "question": [{"language": "en", "string": "Give me all professional skateboarders from Sweden."}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbp: <http://dbpedia.org/property/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { ?uri dbo:occupation dbr:Skateboarder { ?uri dbo:birthPlace dbr:Sweden } UNION { ?uri dbo:birthPlace ?place . ?place dbo:country dbr:Sweden } }"}, "entities": [{"URI": "http://dbpedia.org/resource/Sweden", "surface form": "Sweden"}], "relations": [{"URI": "http://dbpedia.org/ontology/occupation", "surface form": "professional skateboarders"}]}, {"id": "55", "question": [{"language": "en", "string": "When was Alberta admitted as province?"}], "query": {"sparql": "SELECT DISTINCT ?date WHERE { <http://dbpedia.org/resource/Alberta> <http://dbpedia.org/property/admittancedate> ?date }"}, "answers": {"date": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#date", "value": "1905-09-01"}}, "entities": [{"URI": "http://dbpedia.org/resource/Alberta", "surface form": "Alberta"}], "relations": [{"URI": "http://dbpedia.org/property/known", "surface form": "admitted"}, {"URI": "http://dbpedia.org/ontology/province", "surface form": "province"}]}, {"id": "56", "question": [{"language": "en", "string": "To which countries does the Himalayan mountain system extend?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Himalayas> <http://dbpedia.org/ontology/country> ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kashmir"}}, "entities": [{"URI": "http://dbpedia.org/resource/Countries_of_the_United_Kingdom", "surface form": "countries"}, {"URI": "http://dbpedia.org/resource/Himalayan", "surface form": "Himalayan mountain"}], "relations": [{"URI": "http://dbpedia.org/ontology/border", "surface form": "extend"}]}, {"id": "57", "question": [{"language": "en", "string": "Give me a list of all trumpet players that were bandleaders."}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { ?uri dbo:occupation res:Bandleader ; dbo:instrument res:Trumpet }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Danny_Davis_(country_musician)"}}, "entities": [{"URI": "http://dbpedia.org/resource/Trumpet", "surface form": "trumpet players"}, {"URI": "http://dbpedia.org/resource/List_of_American_big_band_bandleaders", "surface form": "bandleaders"}], "relations": []}, {"id": "58", "question": [{"language": "en", "string": "What is the total amount of men and women serving in the FDNY?"}], "query": {"sparql": "SELECT DISTINCT ?num WHERE { <http://dbpedia.org/resource/New_York_City_Fire_Department> <http://dbpedia.org/property/employees> ?num }"}, "answers": {"num": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "17321"}}, "entities": [{"URI": "http://dbpedia.org/resource/FDNY_Racing", "surface form": "FDNY"}], "relations": [{"URI": "http://dbpedia.org/ontology/populationTotal", "surface form": "total"}, {"URI": "http://dbpedia.org/ontology/authority", "surface form": "men"}, {"URI": "http://dbpedia.org/ontology/person", "surface form": "women"}, {"URI": "http://dbpedia.org/ontology/service", "surface form": "serving"}]}, {"id": "59", "question": [{"language": "en", "string": "Who is the Formula 1 race driver with the most races?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:FormulaOneRacer ; dbo:races ?x } ORDER BY DESC(?x) OFFSET 0 LIMIT 1"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jenson_Button"}}, "entities": [{"URI": "http://dbpedia.org/resource/Race_Driver:_Create_&_Race", "surface form": "Formula 1 race driver"}], "relations": [{"URI": "http://dbpedia.org/ontology/races", "surface form": "races"}]}, {"id": "60", "question": [{"language": "en", "string": "Give me all world heritage sites designated within the past five years."}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/>PREFIX dbp: <http://dbpedia.org/property/>PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>SELECT DISTINCT ?uri WHERE {\t?uri rdf:type dbo:WorldHeritageSite .\t?uri dbp:year ?x .\tFILTER ( ?x >= \"2008\"^^xsd:integer)}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Amami-\u014cshima_Island,_Tokunoshima_Island,_northern_part_of_Okinawa_Island,_and_Iriomote_Island"}}, "entities": [], "relations": [{"URI": "http://dbpedia.org/ontology/fate", "surface form": "heritage sites"}, {"URI": "http://dbpedia.org/ontology/class", "surface form": "designated"}]}, {"id": "61", "question": [{"language": "en", "string": "Who is the youngest player in the Premier League?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { ?uri dbo:team ?team . ?league dbo:league res:Premier_League . ?league dbo:team ?team . ?uri dbo:birthDate ?date } ORDER BY DESC(?date) LIMIT 1"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ben_Doak"}}, "entities": [{"URI": "http://dbpedia.org/resource/Premier_League", "surface form": "Premier League"}], "relations": [{"URI": "http://dbpedia.org/ontology/participant", "surface form": "player"}]}, {"id": "62", "question": [{"language": "en", "string": "Give me all members of Prodigy."}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:The_Prodigy dbo:bandMember ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Maxim_(musician)"}}, "entities": [{"URI": "http://dbpedia.org/resource/The_Prodigy", "surface form": "Prodigy"}], "relations": [{"URI": "http://dbpedia.org/ontology/bandMember", "surface form": "members"}]}, {"id": "63", "question": [{"language": "en", "string": "What is the longest river?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/River> { ?uri <http://dbpedia.org/ontology/length> ?l } UNION { ?uri <http://dbpedia.org/property/length> ?l } } ORDER BY DESC(?l) OFFSET 0 LIMIT 1"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Indian_Ocean"}}, "entities": [], "relations": [{"URI": "http://dbpedia.org/ontology/river", "surface form": "river"}]}, {"id": "116", "question": [{"language": "en", "string": "Does the new Battlestar Galactica series have more episodes than the old one?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> ASK WHERE { <http://dbpedia.org/resource/Battlestar_Galactica_%281978_TV_series%29> dbo:numberOfEpisodes ?x . <http://dbpedia.org/resource/Battlestar_Galactica_%282004_TV_series%29> dbo:numberOfEpisodes ?y FILTER ( ?y > ?x ) }"}, "entities": [{"URI": "http://dbpedia.org/resource/Diana,_Princess_of_Wales", "surface form": "princess Diana"}], "relations": [{"URI": "http://dbpedia.org/ontology/episodeNumber", "surface form": "episodes"}]}, {"id": "64", "question": [{"language": "en", "string": "Give me all cars that are produced in Germany."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Automobile> { ?uri <http://dbpedia.org/ontology/assembly> <http://dbpedia.org/resource/Germany> } UNION { ?uri <http://dbpedia.org/property/assembly> <http://dbpedia.org/resource/Germany> } UNION { { ?uri <http://dbpedia.org/ontology/manufacturer> ?x } UNION { ?uri <http://dbpedia.org/property/manufacturer> ?x } { ?x <http://dbpedia.org/ontology/locationCountry> <http://dbpedia.org/resource/Germany> } UNION { ?x <http://dbpedia.org/ontology/location> <http://dbpedia.org/resource/Germany> } } }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Wanderer_W24"}}, "entities": [{"URI": "http://dbpedia.org/resource/Germany", "surface form": "Germany"}], "relations": [{"URI": "http://dbpedia.org/ontology/management", "surface form": "cars"}, {"URI": "http://dbpedia.org/ontology/author", "surface form": "produced"}]}, {"id": "65", "question": [{"language": "en", "string": "Give me all people that were born in Vienna and died in Berlin."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/birthPlace> <http://dbpedia.org/resource/Vienna> ; <http://dbpedia.org/ontology/deathPlace> <http://dbpedia.org/resource/Berlin> }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hans_Fidesser"}}}, {"id": "66", "question": [{"language": "en", "string": "How tall is Michael Jordan?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?num WHERE { res:Michael_Jordan dbo:height ?num }"}, "answers": {"num": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#double", "value": "1.9812"}}, "entities": [{"URI": "http://dbpedia.org/resource/Michael_Jordan", "surface form": "Michael Jordan"}], "relations": [{"URI": "http://dbpedia.org/ontology/height", "surface form": "tall"}]}, {"id": "67", "question": [{"language": "en", "string": "What is the capital of Canada?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Canada dbo:capital ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ottawa"}}, "entities": [{"URI": "http://dbpedia.org/resource/Canada", "surface form": "Canada"}], "relations": [{"URI": "http://dbpedia.org/ontology/capital", "surface form": "capital"}]}, {"id": "68", "question": [{"language": "en", "string": "Who is the governor of Texas?"}], "query": {"sparql": "PREFIX res: <http://dbpedia.org/resource/> PREFIX dbp: <http://dbpedia.org/property/> SELECT DISTINCT ?string WHERE { res:Texas dbp:governor ?string }"}, "answers": {"string": {"type": "uri", "value": "http://dbpedia.org/resource/Greg_Abbott"}}, "entities": [{"URI": "http://dbpedia.org/resource/Texas", "surface form": "Texas"}], "relations": [{"URI": "http://dbpedia.org/ontology/governor", "surface form": "governor"}]}, {"id": "122", "question": [{"language": "en", "string": "Do Harry and William, Princes of Wales, have the same mother?"}], "query": {"sparql": "PREFIX dbp: <http://dbpedia.org/property/>ASK WHERE {               <http://dbpedia.org/resource/Prince_William,_Duke_of_Cambridge> dbp:mother ?x .  \t<http://dbpedia.org/resource/Prince_Harry_of_Wales> dbp:mother ?y . \tFILTER (?x = ?y)}"}, "entities": [{"URI": "http://dbpedia.org/resource/Harry", "surface form": "Harry"}, {"URI": "http://dbpedia.org/resource/William_Wales", "surface form": "William, Princes of Wales,"}], "relations": [{"URI": "http://dbpedia.org/ontology/creator", "surface form": "mother"}]}, {"id": "123", "question": [{"language": "en", "string": "Who was the father of Queen Elizabeth II?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT * WHERE { res:Elizabeth_II dbo:parent ?uri . ?uri <http://xmlns.com/foaf/0.1/gender> \"male\"@en }"}, "entities": [{"URI": "http://dbpedia.org/resource/Elizabeth_II", "surface form": "Queen Elizabeth II"}], "relations": [{"URI": "http://dbpedia.org/ontology/parent", "surface form": "father"}]}, {"id": "69", "question": [{"language": "en", "string": "Which U.S. state has been admitted latest?"}], "query": {"sparql": "PREFIX dbc: <http://dbpedia.org/resource/Category:> PREFIX dct: <http://purl.org/dc/terms/> SELECT DISTINCT ?uri WHERE { ?uri dct:subject dbc:States_of_the_United_States ; <http://dbpedia.org/property/admittancedate> ?x } ORDER BY DESC(?x) LIMIT 1"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hawaii"}}, "entities": [{"URI": "http://dbpedia.org/resource/United_States", "surface form": "US"}], "relations": [{"URI": "http://dbpedia.org/property/known", "surface form": "admitted"}]}, {"id": "70", "question": [{"language": "en", "string": "How many official languages are spoken on the Seychelles?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/>PREFIX res: <http://dbpedia.org/resource/>SELECT COUNT(DISTINCT ?x) WHERE {        res:Seychelles dbo:officialLanguage ?x .}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "3"}}}, {"id": "126", "question": [{"language": "en", "string": "Sean Parnell is the governor of which U.S. state?"}], "query": {"sparql": " PREFIX yago: <http://dbpedia.org/clas/yago/> PREFIX dbp: <http://dbpedia.org/property/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type yago:StatesOfTheUnitedStates . ?uri dbp:governor res:Sean_Parnel . } "}, "entities": [{"URI": "http://dbpedia.org/resource/Sean_Parnell", "surface form": "Sean parnell"}, {"URI": "http://dbpedia.org/resource/United_States", "surface form": "US"}], "relations": [{"URI": "http://dbpedia.org/ontology/governor", "surface form": "governor"}]}, {"id": "71", "question": [{"language": "en", "string": "Give me all movies directed by Francis Ford Coppola."}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Film ; dbo:director res:Francis_Ford_Coppola }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dementia_13"}}, "entities": [{"URI": "http://dbpedia.org/resource/Francis_Ford_Coppola", "surface form": "Francis Ford Coppola"}], "relations": [{"URI": "http://dbpedia.org/ontology/film", "surface form": "movies"}, {"URI": "http://dbpedia.org/ontology/president", "surface form": "directed"}]}, {"id": "72", "question": [{"language": "en", "string": "Give me all actors starring in movies directed by and starring William Shatner."}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX dbp: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { ?x dbo:director res:William_Shatner ; dbo:starring res:William_Shatner { ?x dbo:starring ?uri } UNION { ?x dbp:starring ?uri } }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/DeForest_Kelley"}}, "entities": [{"URI": "http://dbpedia.org/resource/William_Shatner", "surface form": "William Shatner"}], "relations": [{"URI": "http://dbpedia.org/ontology/artist", "surface form": "actors"}, {"URI": "http://dbpedia.org/ontology/starring", "surface form": "starring"}, {"URI": "http://dbpedia.org/ontology/film", "surface form": "movies"}, {"URI": "http://dbpedia.org/property/directedby", "surface form": "directed"}, {"URI": "http://dbpedia.org/ontology/starring", "surface form": "starring"}]}, {"id": "73", "question": [{"language": "en", "string": "What is the birth name of Angela Merkel?"}], "query": {"sparql": "SELECT DISTINCT ?string WHERE { <http://dbpedia.org/resource/Angela_Merkel> <http://dbpedia.org/property/birthName> ?string }"}, "answers": {"string": {"type": "literal", "xml:lang": "en", "value": "Angela Dorothea Kasner"}}, "entities": [{"URI": "http://dbpedia.org/resource/Angela_Merkel", "surface form": "Angela Merkel"}], "relations": [{"URI": "http://dbpedia.org/property/birthName", "surface form": "birth name"}]}, {"id": "130", "question": [{"language": "en", "string": "Give me all current Methodist national leaders."}], "query": {"sparql": "PREFIX dbp: <http://dbpedia.org/property/>PREFIX res: <http://dbpedia.org/resource/>PREFIX yago: <http://dbpedia.org/class/yago/>PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>SELECT DISTINCT ?uri WHERE {\t?uri rdf:type yago:CurrentNationalLeaders .\t?uri dbp:religion res:Methodism .}"}, "entities": [{"URI": "http://dbpedia.org/resource/Current_leaders_of_Seattle", "surface form": "current Methodist national leaders"}], "relations": []}, {"id": "74", "question": [{"language": "en", "string": "How often did Nicole Kidman marry?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/>PREFIX res: <http://dbpedia.org/resource/>SELECT COUNT(DISTINCT ?x) WHERE {               res:Nicole_Kidman dbo:spouse ?x .}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "2"}}, "entities": [{"URI": "http://dbpedia.org/resource/Nicole_Kidman", "surface form": "Nicole Kidman"}], "relations": [{"URI": "http://dbpedia.org/ontology/spouse", "surface form": "marry"}]}, {"id": "75", "question": [{"language": "en", "string": "Give me all Australian nonprofit organizations."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/type> <http://dbpedia.org/resource/Nonprofit_organization> { ?uri <http://dbpedia.org/ontology/locationCountry> <http://dbpedia.org/resource/Australia> } UNION { ?uri <http://dbpedia.org/ontology/location> ?x . ?x <http://dbpedia.org/ontology/country> <http://dbpedia.org/resource/Australia> } }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/YourView"}}, "entities": [{"URI": "http://dbpedia.org/resource/Australia", "surface form": "Australian nonprofit organizations"}, {"URI": "http://dbpedia.org/resource/Master_of_Nonprofit_Organizations", "surface form": "Australian nonprofit organizations"}], "relations": [{"URI": "http://dbpedia.org/ontology/country", "surface form": ""}]}, {"id": "76", "question": [{"language": "en", "string": "In which military conflicts did Lawrence of Arabia participate?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:T._E._Lawrence dbo:battle ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Battle_of_Megiddo_(1918)"}}, "entities": [{"URI": "http://dbpedia.org/resource/T._E._Lawrence", "surface form": "Lawrence of Arabia"}], "relations": [{"URI": "http://dbpedia.org/ontology/militaryBranch", "surface form": "military conflicts"}, {"URI": "http://dbpedia.org/ontology/participant", "surface form": "participate"}]}, {"id": "77", "question": [{"language": "en", "string": "Who developed Skype?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> SELECT DISTINCT ?uri WHERE { res:Skype dbo:developer ?uri. }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Skype_Technologies"}}, "entities": [{"URI": "http://dbpedia.org/resource/Skype", "surface form": "Skype"}], "relations": [{"URI": "http://dbpedia.org/ontology/developer", "surface form": "developed"}]}, {"id": "135", "question": [{"language": "en", "string": "How many inhabitants does Maribor have?"}], "query": {"sparql": "SELECT DISTINCT ?num WHERE { <http://dbpedia.org/resource/Maribor> <http://dbpedia.org/ontology/populationTotal> ?num }"}}, {"id": "78", "question": [{"language": "en", "string": "Give me all companies in Munich."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Company> { ?uri <http://dbpedia.org/ontology/location> <http://dbpedia.org/resource/Munich> } UNION { ?uri <http://dbpedia.org/ontology/headquarter> <http://dbpedia.org/resource/Munich> } UNION { ?uri <http://dbpedia.org/ontology/locationCity> <http://dbpedia.org/resource/Munich> } }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Allianz"}}, "entities": [{"URI": "http://dbpedia.org/resource/Companies_listed_on_the_New_York_Stock_Exchange_(J)", "surface form": "companies"}, {"URI": "http://dbpedia.org/resource/Munich", "surface form": "Munich"}], "relations": []}, {"id": "79", "question": [{"language": "en", "string": "List all boardgames by GMT."}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> SELECT ?uri WHERE { ?uri dbo:publisher res:GMT_Games }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Fields_of_Fire_(game)"}}, "entities": [{"URI": "http://dbpedia.org/resource/Generic_Mapping_Tools", "surface form": "GMT"}, {"URI": "http://dbpedia.org/resource/Belarus", "surface form": "Boardgames by"}], "relations": []}, {"id": "138", "question": [{"language": "en", "string": "Who founded Intel?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Intel> <http://dbpedia.org/property/founders> ?uri }"}, "entities": [{"URI": "http://dbpedia.org/resource/Intel", "surface form": "Intel"}], "relations": [{"URI": "http://dbpedia.org/ontology/foundingYear", "surface form": "founded"}]}, {"id": "139", "question": [{"language": "en", "string": "Who is the husband of Amanda Palmer?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/spouse> <http://dbpedia.org/resource/Amanda_Palmer> }"}, "entities": [{"URI": "http://dbpedia.org/resource/Amanda_Palmer", "surface form": "Amanda Palmer"}], "relations": [{"URI": "http://dbpedia.org/ontology/spouse", "surface form": "husband"}]}, {"id": "80", "question": [{"language": "en", "string": "Give me all breeds of the German Shepherd dog."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/breed> <http://dbpedia.org/resource/German_Shepherd> }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mancs_(dog)"}}}, {"id": "141", "question": [{"language": "en", "string": "Which cities does the Weser flow through?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Weser dbo:city ?uri }"}, "entities": [{"URI": "http://dbpedia.org/resource/Weser", "surface form": "Weser"}], "relations": [{"URI": "http://dbpedia.org/ontology/country", "surface form": "cities"}, {"URI": "http://dbpedia.org/ontology/discharge", "surface form": "flow"}]}, {"id": "142", "question": [{"language": "en", "string": "Which countries are connected by the Rhine?"}], "query": {"sparql": "PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> PREFIX dbp: <http://dbpedia.org/property/> PREFIX dbo: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { {<http://dbpedia.org/resource/Rhine> dbo:country ?uri } UNION {dbr:Rhine dbp:country ?uri} }"}, "entities": [{"URI": "http://dbpedia.org/resource/Countries_of_the_United_Kingdom", "surface form": "countries"}, {"URI": "http://dbpedia.org/resource/Rhine", "surface form": "Rhine"}], "relations": [{"URI": "http://dbpedia.org/ontology/related", "surface form": "connected"}]}, {"id": "143", "question": [{"language": "en", "string": "Which professional surfers were born on the Philippines?"}], "query": {"sparql": "PREFIX dbr: <http://dbpedia.org/resource/> PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { ?uri dbo:occupation dbr:Surfer ; dbo:birthPlace res:Philippines }"}, "entities": [{"URI": "http://dbpedia.org/resource/Philippines", "surface form": "Philippines"}], "relations": [{"URI": "http://dbpedia.org/property/authority", "surface form": "professional surfers"}, {"URI": "http://dbpedia.org/ontology/birthPlace", "surface form": "born"}]}, {"id": "144", "question": [{"language": "en", "string": "In which UK city are the headquarters of the MI6?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { res:Secret_Intelligence_Service dbo:headquarter ?uri . ?uri dbo:country res:United_Kingdom }"}, "entities": [{"URI": "http://dbpedia.org/resource/United_Kingdom", "surface form": "UK"}, {"URI": "http://dbpedia.org/resource/Secret_Intelligence_Service", "surface form": "MI6"}], "relations": [{"URI": "http://dbpedia.org/ontology/city", "surface form": "city"}, {"URI": "http://dbpedia.org/ontology/headquarter", "surface form": "headquarters"}]}, {"id": "145", "question": [{"language": "en", "string": "Which other weapons did the designer of the Uzi develop?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX dbp: <http://dbpedia.org/property/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Weapon ; dbp:designer ?x . res:Uzi dbp:designer ?x FILTER ( ?uri != res:Uzi ) }"}, "entities": [{"URI": "http://dbpedia.org/resource/Uzi", "surface form": "Uzi"}], "relations": [{"URI": "http://dbpedia.org/property/weapons", "surface form": "weapons"}, {"URI": "http://dbpedia.org/ontology/designer", "surface form": "designer"}, {"URI": "http://dbpedia.org/ontology/result", "surface form": "develop"}]}, {"id": "146", "question": [{"language": "en", "string": "Was the Cuban Missile Crisis earlier than the Bay of Pigs Invasion?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> ASK WHERE { res:Cuban_Missile_Crisis dbo:date ?x . res:Bay_of_Pigs_Invasion dbo:date ?y FILTER ( ?x < ?y ) }"}}, {"id": "81", "question": [{"language": "en", "string": "Give me all Frisian islands that belong to the Netherlands."}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX yago: <http://dbpedia.org/class/yago/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type yago:WikicatFrisianIslands ; dbo:country res:Netherlands }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Frisian_Islands"}}, "entities": [{"URI": "http://dbpedia.org/resource/Frisian_Islands", "surface form": "Frisian islands"}, {"URI": "http://dbpedia.org/resource/Netherlands_Antilles_at_the_2007_Pan_American_Games", "surface form": "Netherlands"}], "relations": [{"URI": "http://dbpedia.org/property/rank", "surface form": "belong"}]}, {"id": "148", "question": [{"language": "en", "string": "What is the ruling party in Lisbon?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Lisbon> <http://dbpedia.org/property/leaderParty> ?uri }"}, "entities": [{"URI": "http://dbpedia.org/resource/Lisbon", "surface form": "Lisbon"}], "relations": [{"URI": "http://dbpedia.org/ontology/principal", "surface form": "ruling"}, {"URI": "http://dbpedia.org/ontology/party", "surface form": "party"}]}, {"id": "82", "question": [{"language": "en", "string": "What are the nicknames of San Francisco?"}], "query": {"sparql": "PREFIX res: <http://dbpedia.org/resource/> PREFIX dbp: <http://dbpedia.org/property/> PREFIX foaf:<http://xmlns.com/foaf/0.1/> SELECT DISTINCT ?string WHERE { res:San_Francisco foaf:nick ?string }"}, "answers": {"string": {"type": "literal", "xml:lang": "en", "value": "SeeList of nicknames for San Francisco"}}, "entities": [{"URI": "http://dbpedia.org/resource/San_Francisco", "surface form": "San Francisco"}], "relations": [{"URI": "http://dbpedia.org/ontology/mascot", "surface form": "nicknames"}]}, {"id": "150", "question": [{"language": "en", "string": "Which Greek goddesses dwelt on Mount Olympus?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {  ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/class/yago/GreekGoddesses> .  ?uri <http://dbpedia.org/property/abode> <http://dbpedia.org/resource/Mount_Olympus> . } "}}, {"id": "151", "question": [{"language": "en", "string": "When were the Hells Angels founded?"}], "query": {"sparql": "SELECT DISTINCT ?date WHERE { <http://dbpedia.org/resource/Hells_Angels> <http://dbpedia.org/property/founded> ?date }"}, "entities": [{"URI": "http://dbpedia.org/resource/Hells_Angels", "surface form": "Hells Angels"}], "relations": [{"URI": "http://dbpedia.org/property/founded", "surface form": "founded"}]}, {"id": "83", "question": [{"language": "en", "string": "Give me the Apollo 14 astronauts."}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { ?uri dbo:mission res:Apollo_14 }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alan_Shepard"}}, "entities": [{"URI": "http://dbpedia.org/resource/Apollo_14", "surface form": "Apollo 14 astronauts"}], "relations": []}, {"id": "84", "question": [{"language": "en", "string": "What is the time zone of Salt Lake City?"}], "query": {"sparql": "PREFIX res: <http://dbpedia.org/resource/> PREFIX dbp: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Salt_Lake_City <http://dbpedia.org/ontology/timeZone> ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mountain_Time_Zone"}}, "entities": [{"URI": "http://dbpedia.org/resource/Salt_Lake_City", "surface form": "Salt Lake City"}], "relations": [{"URI": "http://dbpedia.org/ontology/timeZone", "surface form": "time zone"}]}, {"id": "85", "question": [{"language": "en", "string": "Which U.S. states are in the same timezone as Utah?"}], "query": {"sparql": "PREFIX yago: <http://dbpedia.org/class/yago/> PREFIX res: <http://dbpedia.org/resource/> PREFIX dbp: <http://dbpedia.org/property/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { res:Utah dbp:timezone ?x . ?uri rdf:type yago:WikicatStatesOfTheUnitedStates ; dbp:timezone ?x FILTER ( ?uri != res:Utah ) }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Montana"}}}, {"id": "86", "question": [{"language": "en", "string": "Give me a list of all lakes in Denmark."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { { ?uri a <http://dbpedia.org/ontology/Lake> ; <http://dbpedia.org/ontology/country> <http://dbpedia.org/resource/Denmark> } UNION { ?uri a <http://dbpedia.org/class/yago/LakesOfDenmark> } }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Fures\u00f8_(lake)"}}, "entities": [{"URI": "http://dbpedia.org/resource/Denmark", "surface form": "Denmark"}], "relations": [{"URI": "http://dbpedia.org/ontology/lake", "surface form": "lakes"}]}, {"id": "87", "question": [{"language": "en", "string": "How many space missions have there been?"}], "query": {"sparql": " PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT COUNT(DISTINCT ?uri) WHERE {         ?uri rdf:type dbo:SpaceMission . } "}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "3433"}}, "entities": [], "relations": [{"URI": "http://dbpedia.org/ontology/missions", "surface form": "space missions"}]}, {"id": "157", "question": [{"language": "en", "string": "Did Socrates influence Aristotle?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> ASK WHERE { res:Aristotle dbo:influencedBy res:Socrates }"}, "entities": [{"URI": "http://dbpedia.org/resource/Socrates", "surface form": "Socrates"}, {"URI": "http://dbpedia.org/resource/Aristotle", "surface form": "Aristotle"}], "relations": [{"URI": "http://dbpedia.org/ontology/influencedBy", "surface form": "influence"}]}, {"id": "88", "question": [{"language": "en", "string": "Give me all Argentine films."}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX yago: <http://dbpedia.org/class/yago/> PREFIX res: <http://dbpedia.org/resource/> PREFIX dbp: <http://dbpedia.org/property/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> 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 } } }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/All\u00e1_en_el_Norte"}}, "entities": [{"URI": "http://dbpedia.org/resource/Argentina", "surface form": "Argentine films"}, {"URI": "http://dbpedia.org/resource/Lists_of_Argentine_films", "surface form": "Argentine films"}], "relations": [{"URI": "http://dbpedia.org/ontology/country", "surface form": ""}]}, {"id": "89", "question": [{"language": "en", "string": "Give me all launch pads operated by NASA."}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:LaunchPad ; dbo:operator res:NASA }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Wallops_Flight_Facility_Launch_Area_3"}}, "entities": [{"URI": "http://dbpedia.org/resource/NASA", "surface form": "NASA"}], "relations": [{"URI": "http://dbpedia.org/ontology/institution", "surface form": "launch"}, {"URI": "http://dbpedia.org/ontology/operatedBy", "surface form": "pads operated"}]}, {"id": "160", "question": [{"language": "en", "string": "Which instruments did John Lennon play?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/>PREFIX res: <http://dbpedia.org/resource/>SELECT DISTINCT ?uri WHERE {        res:John_Lennon dbo:instrument ?uri .}"}, "entities": [{"URI": "http://dbpedia.org/resource/John_Lennon", "surface form": "John Lennon"}], "relations": [{"URI": "http://dbpedia.org/property/instruments", "surface form": "instruments"}, {"URI": "http://dbpedia.org/ontology/starring", "surface form": "play"}]}, {"id": "90", "question": [{"language": "en", "string": "Which ships were called after Benjamin Franklin?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/shipNamesake> <http://dbpedia.org/resource/Benjamin_Franklin> }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ben_Franklin_(PX-15)"}}, "entities": [{"URI": "http://dbpedia.org/resource/Benjamin_Franklin", "surface form": "Benjamin Franklin"}], "relations": [{"URI": "http://dbpedia.org/ontology/shipBeam", "surface form": "ships"}, {"URI": "http://dbpedia.org/property/nickname", "surface form": "called"}]}, {"id": "162", "question": [{"language": "en", "string": "Who are the parents of the wife of Juan Carlos I?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Juan_Carlos_I_of_Spain dbo:spouse ?x . ?x dbo:parent ?uri }"}, "entities": [{"URI": "http://dbpedia.org/resource/I", "surface form": "I"}, {"URI": "http://dbpedia.org/resource/Juan_Carlos_I_of_Spain", "surface form": "Juan Carlos"}], "relations": [{"URI": "http://dbpedia.org/ontology/parent", "surface form": "parents"}, {"URI": "http://dbpedia.org/ontology/spouse", "surface form": "wife"}]}, {"id": "163", "question": [{"language": "en", "string": "How many employees does Google have?"}], "query": {"sparql": "SELECT DISTINCT ?num WHERE { <http://dbpedia.org/resource/Google> <http://dbpedia.org/ontology/numberOfEmployees> ?num }"}, "entities": [{"URI": "http://dbpedia.org/resource/Google", "surface form": "Google"}], "relations": [{"URI": "http://dbpedia.org/ontology/numberOfEmployees", "surface form": "employees"}]}, {"id": "164", "question": [{"language": "en", "string": "Did Tesla win a nobel prize in physics?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> ASK WHERE { res:Nikola_Tesla dbo:award res:Nobel_Prize_in_Physics }"}, "entities": [{"URI": "http://dbpedia.org/resource/Nikola_Tesla", "surface form": "Tesla"}, {"URI": "http://dbpedia.org/resource/Nobel_Prize_in_Physics", "surface form": "nobel prize"}], "relations": [{"URI": "http://dbpedia.org/ontology/award", "surface form": "win"}, {"URI": "http://dbpedia.org/property/title", "surface form": "nobel prize"}, {"URI": "http://dbpedia.org/ontology/animal", "surface form": "physics"}]}, {"id": "165", "question": [{"language": "en", "string": "Is Michelle Obama the wife of Barack Obama?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> ASK WHERE { res:Barack_Obama dbo:spouse res:Michelle_Obama }"}, "entities": [{"URI": "http://dbpedia.org/resource/Michelle_Obama", "surface form": "Michelle Obama"}, {"URI": "http://dbpedia.org/resource/Barack_Obama", "surface form": "Barack Obama"}], "relations": [{"URI": "http://dbpedia.org/ontology/spouse", "surface form": "wife"}]}, {"id": "91", "question": [{"language": "en", "string": "When was the Statue of Liberty built?"}], "query": {"sparql": "SELECT DISTINCT ?date WHERE { <http://dbpedia.org/resource/Statue_of_Liberty> <http://dbpedia.org/property/beginningDate> ?date }"}, "answers": {"date": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#date", "value": "1886-10-28"}}, "entities": [{"URI": "http://dbpedia.org/resource/Statue_of_Liberty", "surface form": "Statue of Liberty"}], "relations": [{"URI": "http://dbpedia.org/ontology/numberBuilt", "surface form": "built"}]}, {"id": "167", "question": [{"language": "en", "string": "In which U.S. state is Area 51 located?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> SELECT DISTINCT ?uri WHERE { res:Area_51 dbo:location ?uri . ?uri dbo:country res:United_States. }"}, "entities": [{"URI": "http://dbpedia.org/resource/United_States", "surface form": "US"}, {"URI": "http://dbpedia.org/resource/Area_51", "surface form": "Area 51"}], "relations": [{"URI": "http://dbpedia.org/ontology/gross", "surface form": "located"}]}, {"id": "92", "question": [{"language": "en", "string": "How many children did Benjamin Franklin have?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT (COUNT(DISTINCT ?uri) AS ?c) WHERE { res:Benjamin_Franklin dbo:child ?uri }"}, "answers": {"c": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "3"}}, "entities": [{"URI": "http://dbpedia.org/resource/Benjamin_Franklin", "surface form": "Benjamin Franklin"}], "relations": [{"URI": "http://dbpedia.org/property/children", "surface form": "children"}]}, {"id": "93", "question": [{"language": "en", "string": "When did Michael Jackson die?"}], "query": {"sparql": "SELECT DISTINCT ?date WHERE { <http://dbpedia.org/resource/Michael_Jackson> <http://dbpedia.org/ontology/deathDate> ?date }"}, "answers": {"date": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#date", "value": "2009-06-25"}}, "entities": [{"URI": "http://dbpedia.org/resource/Michael_Jackson", "surface form": "Michael Jackson"}], "relations": [{"URI": "http://dbpedia.org/ontology/deathDate", "surface form": "die"}]}, {"id": "170", "question": [{"language": "en", "string": "Which daughters of British earls died in the same place they were born in?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/>PREFIX yago: <http://dbpedia.org/class/yago/>PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>SELECT DISTINCT ?uri WHERE {\t?uri rdf:type yago:DaughtersOfBritishEarls .\t?uri dbo:birthPlace ?x .\t?uri dbo:deathPlace ?y .\tFILTER (?x != ?y) .}"}, "entities": [{"URI": "http://dbpedia.org/resource/Daughters_of_the_Dust", "surface form": "daughters"}, {"URI": "http://dbpedia.org/resource/United_Kingdom", "surface form": "British earls"}, {"URI": "http://dbpedia.org/resource/Earls_Barton", "surface form": "British earls"}], "relations": [{"URI": "http://dbpedia.org/property/deathPlace", "surface form": "died"}, {"URI": "http://dbpedia.org/ontology/place", "surface form": "place"}, {"URI": "http://dbpedia.org/ontology/birthPlace", "surface form": "born"}, {"URI": "http://dbpedia.org/ontology/country", "surface form": ""}]}, {"id": "94", "question": [{"language": "en", "string": "List the children of Margaret Thatcher."}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Margaret_Thatcher dbo:child ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mark_Thatcher"}}, "entities": [{"URI": "http://dbpedia.org/resource/Margaret_Thatcher", "surface form": "Margaret Thatcher"}], "relations": [{"URI": "http://dbpedia.org/ontology/child", "surface form": "children"}]}, {"id": "95", "question": [{"language": "en", "string": "Who was called Scarface?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> SELECT ?uri WHERE { ?uri dbo:alias ?alias FILTER contains(lcase(?alias), \"scarface\") }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/%22Scarface%22_John_Williams"}}, "entities": [{"URI": "http://dbpedia.org/resource/Scarface", "surface form": "Scarface"}], "relations": [{"URI": "http://dbpedia.org/ontology/alias", "surface form": "called"}]}, {"id": "173", "question": [{"language": "en", "string": "Was Margaret Thatcher a chemist?"}], "query": {"sparql": "ASK WHERE { <http://dbpedia.org/resource/Margaret_Thatcher> <http://dbpedia.org/ontology/profession> <http://dbpedia.org/resource/Chemist> }"}, "entities": [{"URI": "http://dbpedia.org/resource/Margaret_Thatcher", "surface form": "Margaret Thatcher"}, {"URI": "http://dbpedia.org/resource/Chemist", "surface form": "chemist"}], "relations": []}, {"id": "174", "question": [{"language": "en", "string": "Was Dutch Schultz a jew?"}], "query": {"sparql": "PREFIX dbp: <http://dbpedia.org/property/>PREFIX res: <http://dbpedia.org/resource/>ASK WHERE {\tres:Dutch_Schultz dbp:ethnicity 'Jewish'@en .}"}, "entities": [{"URI": "http://dbpedia.org/resource/Cura\u00e7ao", "surface form": "Dutch Schultz"}, {"URI": "http://dbpedia.org/resource/Dutch_Schultz", "surface form": "Dutch Schultz"}], "relations": [{"URI": "http://dbpedia.org/ontology/outflow", "surface form": "jew"}, {"URI": "http://dbpedia.org/ontology/country", "surface form": ""}]}, {"id": "96", "question": [{"language": "en", "string": "Give me all books by William Goldman with more than 300 pages."}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Book ; dbo:author res:William_Goldman ; dbo:numberOfPages ?x FILTER ( ?x > 300 ) }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Boys_and_Girls_Together"}}, "entities": [{"URI": "http://dbpedia.org/resource/William_Goldman", "surface form": "William Goldman"}, {"URI": "http://dbpedia.org/resource/300", "surface form": "300"}], "relations": [{"URI": "http://dbpedia.org/ontology/volume", "surface form": "books"}]}, {"id": "97", "question": [{"language": "en", "string": "Which books by Kerouac were published by Viking Press?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Book ; dbo:publisher res:Viking_Press ; dbo:author res:Jack_Kerouac }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Atop_an_Underwood"}}, "entities": [{"URI": "http://dbpedia.org/resource/Jack_Kerouac", "surface form": "Kerouac"}, {"URI": "http://dbpedia.org/resource/Viking_Press", "surface form": "Viking Press"}], "relations": [{"URI": "http://dbpedia.org/ontology/title", "surface form": "books"}, {"URI": "http://dbpedia.org/ontology/publisher", "surface form": "published"}]}, {"id": "177", "question": [{"language": "en", "string": "Give me a list of all American inventions."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {  ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/class/yago/AmericanInventions> . } "}, "entities": [{"URI": "http://dbpedia.org/resource/Organization_of_American_States", "surface form": "American inventions"}, {"URI": "http://dbpedia.org/resource/Inventions_(album)", "surface form": "American inventions"}], "relations": [{"URI": "http://dbpedia.org/ontology/country", "surface form": ""}]}, {"id": "178", "question": [{"language": "en", "string": "How high is the Mount Everest?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/>PREFIX res: <http://dbpedia.org/resource/>SELECT DISTINCT ?num WHERE {\tres:Mount_Everest dbo:elevation ?num.}"}, "entities": [{"URI": "http://dbpedia.org/resource/Mount_Everest", "surface form": "Mount Everest"}], "relations": [{"URI": "http://dbpedia.org/ontology/elevation", "surface form": "high"}]}, {"id": "98", "question": [{"language": "en", "string": "Who created the comic Captain America?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Captain_America dbo:creator ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jack_Kirby"}}, "entities": [{"URI": "http://dbpedia.org/resource/Captain_Comic", "surface form": "comic Captain America"}], "relations": [{"URI": "http://dbpedia.org/ontology/creator", "surface form": "created"}]}, {"id": "99", "question": [{"language": "en", "string": "How many people live in the capital of Australia?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?num WHERE { res:Australia dbo:capital ?x . ?x dbo:populationTotal ?num }"}, "answers": {"num": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#nonNegativeInteger", "value": "453558"}}, "entities": [{"URI": "http://dbpedia.org/resource/Australia", "surface form": "Australia"}], "relations": [{"URI": "http://dbpedia.org/ontology/populationTotal", "surface form": "live"}, {"URI": "http://dbpedia.org/ontology/capital", "surface form": "capital"}]}, {"id": "100", "question": [{"language": "en", "string": "What is the largest city in Australia?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Australia dbo:largestCity ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sydney"}}, "entities": [{"URI": "http://dbpedia.org/resource/Australia", "surface form": "Australia"}], "relations": [{"URI": "http://dbpedia.org/ontology/largestCity", "surface form": "largest city"}]}, {"id": "182", "question": [{"language": "en", "string": "Who composed the music for Harold and Maude?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Harold_and_Maude dbo:musicComposer ?uri }"}, "entities": [{"URI": "http://dbpedia.org/resource/Harold_and_Maude", "surface form": "Harold and Maude"}], "relations": [{"URI": "http://dbpedia.org/ontology/musicComposer", "surface form": "composed"}, {"URI": "http://dbpedia.org/ontology/musicComposer", "surface form": "music"}]}, {"id": "101", "question": [{"language": "en", "string": "Which films starring Clint Eastwood did he direct himself?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/director> <http://dbpedia.org/resource/Clint_Eastwood> ; <http://dbpedia.org/ontology/starring> <http://dbpedia.org/resource/Clint_Eastwood> }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dirty_Harry_(film_series)"}}, "entities": [{"URI": "http://dbpedia.org/resource/Clint_Eastwood", "surface form": "Clint Eastwood"}], "relations": [{"URI": "http://dbpedia.org/ontology/numberOfFilms", "surface form": "films"}, {"URI": "http://dbpedia.org/ontology/starring", "surface form": "starring"}, {"URI": "http://dbpedia.org/ontology/director", "surface form": "direct"}]}, {"id": "184", "question": [{"language": "en", "string": "In which city was the former Dutch queen Juliana buried?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Juliana_of_the_Netherlands> <http://dbpedia.org/property/burialPlace> ?uri . ?uri a <http://dbpedia.org/ontology/Settlement> }"}, "entities": [{"URI": "http://dbpedia.org/resource/Juliana_Maria_of_Brunswick-Wolfenb\u00fcttel", "surface form": "former Dutch queen Juliana"}], "relations": [{"URI": "http://dbpedia.org/ontology/city", "surface form": "city"}, {"URI": "http://dbpedia.org/ontology/flag", "surface form": "buried"}]}, {"id": "102", "question": [{"language": "en", "string": "Where is the residence of the prime minister of Spain?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Prime_Minister_of_Spain> <http://dbpedia.org/property/residence> ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Palacio_de_la_Moncloa"}}, "entities": [{"URI": "http://dbpedia.org/resource/Spain", "surface form": "Spain"}], "relations": [{"URI": "http://dbpedia.org/ontology/residence", "surface form": "residence"}, {"URI": "http://dbpedia.org/ontology/primeMinister", "surface form": "prime minister"}]}, {"id": "186", "question": [{"language": "en", "string": "Which U.S. State has the abbreviation MN?"}], "query": {"sparql": "PREFIX dbp: <http://dbpedia.org/property/>PREFIX res: <http://dbpedia.org/resource/>PREFIX yago: <http://dbpedia.org/class/yago/>PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>SELECT ?uri ?string WHERE {\t?uri rdf:type yago:StatesOfTheUnitedStates .        ?uri dbp:postalabbreviation 'MN'@en .\tOPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') }}"}, "entities": [{"URI": "http://dbpedia.org/resource/United_States", "surface form": "US"}, {"URI": "http://dbpedia.org/resource/Abbreviation", "surface form": "State has the abbreviation MN"}, {"URI": "http://dbpedia.org/resource/MN", "surface form": "MN"}, {"URI": "http://dbpedia.org/resource/Abbreviation", "surface form": "US State has the abbreviation"}], "relations": []}, {"id": "103", "question": [{"language": "en", "string": "Show me all songs from Bruce Springsteen released between 1980 and 1990."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Song> . ?uri <http://dbpedia.org/ontology/artist> <http://dbpedia.org/resource/Bruce_Springsteen> . ?uri <http://dbpedia.org/ontology/releaseDate> ?date . FILTER (?date >= '1980-01-01'^^xsd:date && ?date <= '1990-12-31'^^xsd:date) }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Johnny_99_(song)"}}, "entities": [{"URI": "http://dbpedia.org/resource/Bruce_Springsteen", "surface form": "Bruce Springsteen"}, {"URI": "http://dbpedia.org/resource/1980", "surface form": "1980"}, {"URI": "http://dbpedia.org/resource/1990", "surface form": "1990"}], "relations": [{"URI": "http://dbpedia.org/ontology/show", "surface form": "show"}, {"URI": "http://dbpedia.org/ontology/anthem", "surface form": "songs"}, {"URI": "http://dbpedia.org/property/released", "surface form": "released"}]}, {"id": "188", "question": [{"language": "en", "string": "Which movies did Sam Raimi direct after Army of Darkness?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/>PREFIX dbp: <http://dbpedia.org/property/>PREFIX res: <http://dbpedia.org/resource/>PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>SELECT DISTINCT ?uri ?string WHERE{\t?uri rdf:type dbo:Film .\t?uri dbo:director res:Sam_Raimi .\t{ ?uri dbo:releaseDate ?x . } UNION { ?uri dbp:released ?x . }\tres:Army_of_Darkness dbo:releaseDate ?y .\tFILTER (?x > ?y)\tOPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') }}"}, "entities": [{"URI": "http://dbpedia.org/resource/Sam_Raimi", "surface form": "Sam Raimi direct "}, {"URI": "http://dbpedia.org/resource/Army_of_Darkness", "surface form": " Army of Darkness"}], "relations": [{"URI": "http://dbpedia.org/ontology/film", "surface form": "movies"}, {"URI": "http://dbpedia.org/ontology/date", "surface form": "when"}]}, {"id": "189", "question": [{"language": "en", "string": "What is the founding year of the brewery that produces Pilsner Urquell?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> SELECT DISTINCT xsd:date(?num) WHERE { <http://dbpedia.org/resource/Pilsner_Urquell> <http://dbpedia.org/property/brewery> ?uri . ?uri dbo:foundingYear ?num }"}, "entities": [{"URI": "http://dbpedia.org/resource/Pilsner_Urquell", "surface form": "Pilsner Urquell"}], "relations": [{"URI": "http://dbpedia.org/ontology/foundingYear", "surface form": "founding"}, {"URI": "http://dbpedia.org/ontology/manufacturer", "surface form": "brewery"}, {"URI": "http://dbpedia.org/ontology/manufacturer", "surface form": "produces"}]}, {"id": "104", "question": [{"language": "en", "string": "Who wrote the lyrics for the Polish national anthem?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {  <http://dbpedia.org/resource/Poland> <http://dbpedia.org/ontology/anthem> ?x .  ?x <http://dbpedia.org/property/author> ?uri . } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/J\u00f3zef_Wybicki"}}, "entities": [{"URI": "http://dbpedia.org/resource/Poland", "surface form": "Polish national anthem"}, {"URI": "http://dbpedia.org/resource/Afghan_National_Anthem", "surface form": "Polish national anthem"}], "relations": [{"URI": "http://dbpedia.org/property/author", "surface form": "wrote"}, {"URI": "http://dbpedia.org/ontology/lyrics", "surface form": "lyrics"}, {"URI": "http://dbpedia.org/ontology/country", "surface form": ""}]}, {"id": "191", "question": [{"language": "en", "string": "Give me all B-sides of the Ramones. "}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/>PREFIX dbp: <http://dbpedia.org/property/>PREFIX res: <http://dbpedia.org/resource/>SELECT DISTINCT ?string WHERE {\t?x dbo:musicalArtist res:Ramones .        ?x dbp:bSide ?string . }"}, "entities": [{"URI": "http://dbpedia.org/resource/The_B-Sides", "surface form": "B-sides of the Ramones"}], "relations": []}, {"id": "105", "question": [{"language": "en", "string": "Who painted The Storm on the Sea of Galilee?"}], "query": {"sparql": "PREFIX res: <http://dbpedia.org/resource/> PREFIX dbp: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:The_Storm_on_the_Sea_of_Galilee dbo:author ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rembrandt"}}, "entities": [{"URI": "http://dbpedia.org/resource/The_Storm_on_the_Sea_of_Galilee", "surface form": "The Storm on the Sea of Galilee"}], "relations": [{"URI": "http://dbpedia.org/property/artist", "surface form": "painted"}]}, {"id": "193", "question": [{"language": "en", "string": "Which country does the creator of Miffy come from?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Miffy dbo:creator ?x . ?x dbo:nationality ?uri }"}, "entities": [{"URI": "http://dbpedia.org/resource/Miffy", "surface form": "Miffy"}], "relations": [{"URI": "http://dbpedia.org/ontology/country", "surface form": "country"}, {"URI": "http://dbpedia.org/ontology/creator", "surface form": "creator"}]}, {"id": "106", "question": [{"language": "en", "string": "For which label did Elvis record his first album?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?x rdf:type dbo:Album ; dbo:artist res:Elvis_Presley ; dbo:releaseDate ?y ; dbo:recordLabel ?uri } ORDER BY ASC(?y) OFFSET 0 LIMIT 1"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/RCA_Records"}}, "entities": [{"URI": "http://dbpedia.org/resource/Elvis_(1973_album)", "surface form": "Elvis"}], "relations": [{"URI": "http://dbpedia.org/property/label", "surface form": "label"}, {"URI": "http://dbpedia.org/ontology/recordLabel", "surface form": "record"}, {"URI": "http://dbpedia.org/ontology/album", "surface form": "album"}]}, {"id": "195", "question": [{"language": "en", "string": "Who produces Orangina?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {  ?uri <http://dbpedia.org/ontology/product> <http://dbpedia.org/resource/Orangina> . } "}, "entities": [{"URI": "http://dbpedia.org/resource/Orangina", "surface form": "Orangina"}], "relations": [{"URI": "http://dbpedia.org/ontology/author", "surface form": "produces"}]}, {"id": "196", "question": [{"language": "en", "string": "Give me all female Russian astronauts."}], "query": {"sparql": "PREFIX yago: <http://dbpedia.org/class/yago/>PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>SELECT DISTINCT ?uriWHERE {\t?uri rdf:type yago:RussianCosmonauts .        ?uri rdf:type yago:FemaleAstronauts .}"}, "entities": [{"URI": "http://dbpedia.org/resource/List_of_female_astronauts", "surface form": "female Russian astronauts"}], "relations": []}, {"id": "107", "question": [{"language": "en", "string": "Give me the birthdays of all actors of the television show Charmed."}], "query": {"sparql": "SELECT DISTINCT ?date WHERE { <http://dbpedia.org/resource/Charmed> <http://dbpedia.org/ontology/starring> ?actor . ?actor <http://dbpedia.org/ontology/birthDate> ?date }"}, "answers": {"date": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#date", "value": "1972-12-19"}}, "entities": [{"URI": "http://dbpedia.org/resource/Charmed", "surface form": "television show Charmed"}], "relations": [{"URI": "http://dbpedia.org/ontology/birthDate", "surface form": "birthdays"}, {"URI": "http://dbpedia.org/ontology/background", "surface form": "actors"}]}, {"id": "198", "question": [{"language": "en", "string": "Is the wife of president Obama called Michelle?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> ASK WHERE { res:Barack_Obama dbo:spouse ?spouse . ?spouse rdfs:label ?name FILTER regex(?name, \"Michelle\") }"}, "entities": [{"URI": "http://dbpedia.org/resource/Barack_Obama", "surface form": "Obama"}], "relations": [{"URI": "http://dbpedia.org/property/spouse", "surface form": "wife"}, {"URI": "http://dbpedia.org/ontology/guest", "surface form": "called"}]}, {"id": "108", "question": [{"language": "en", "string": "Which countries have places with more than two caves?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?cave rdf:type dbo:Cave ; dbo:location ?uri . ?uri rdf:type dbo:Country } GROUP BY ?uri HAVING ( COUNT(?cave) > 2 )"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Georgia_(country)"}}, "entities": [{"URI": "http://dbpedia.org/resource/Countries_of_the_United_Kingdom", "surface form": "countries"}, {"URI": "http://dbpedia.org/resource/Caves_of_Aggtelek_Karst_and_Slovak_Karst", "surface form": "caves"}], "relations": [{"URI": "http://dbpedia.org/ontology/place", "surface form": "places"}]}, {"id": "109", "question": [{"language": "en", "string": "Give me the capitals of all countries in Africa."}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbc: <http://dbpedia.org/resource/Category:> PREFIX dct: <http://purl.org/dc/terms/> SELECT DISTINCT ?uri WHERE { ?country dct:subject dbc:Countries_in_Africa ; dbo:capital ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Buea"}}, "entities": [{"URI": "http://dbpedia.org/resource/Countries_of_the_United_Kingdom", "surface form": "countries"}, {"URI": "http://dbpedia.org/resource/Africa", "surface form": "Africa"}], "relations": [{"URI": "http://dbpedia.org/ontology/principal", "surface form": "capitals"}]}, {"id": "110", "question": [{"language": "en", "string": "How many employees does IBM have?"}], "query": {"sparql": "SELECT DISTINCT ?number WHERE { <http://dbpedia.org/resource/IBM> <http://dbpedia.org/ontology/numberOfEmployees> ?number }"}, "answers": {"number": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#nonNegativeInteger", "value": "282100"}}, "entities": [{"URI": "http://dbpedia.org/resource/IBM", "surface form": "IBM"}], "relations": [{"URI": "http://dbpedia.org/ontology/numberOfEmployees", "surface form": "employees"}]}, {"id": "111", "question": [{"language": "en", "string": "Which states border Illinois?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Illinois> <http://dbpedia.org/property/borderingstates> ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kentucky"}}, "entities": [{"URI": "http://dbpedia.org/resource/Illinois", "surface form": "Illinois"}], "relations": [{"URI": "http://dbpedia.org/ontology/border", "surface form": "border"}]}, {"id": "112", "question": [{"language": "en", "string": "Which European countries have a constitutional monarchy?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dct: <http://purl.org/dc/terms/> PREFIX dbc: <http://dbpedia.org/resource/Category:> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?uri WHERE { ?uri dct:subject dbc:Countries_in_Europe ; dbo:governmentType dbr:Constitutional_monarchy }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Andorra"}}, "entities": [{"URI": "http://dbpedia.org/resource/Europe", "surface form": "European countries"}, {"URI": "http://dbpedia.org/resource/List_of_fictional_European_countries", "surface form": "European countries"}, {"URI": "http://dbpedia.org/resource/Constitutional_monarchy", "surface form": "constitutional monarchy"}], "relations": [{"URI": "http://dbpedia.org/ontology/country", "surface form": ""}]}, {"id": "204", "question": [{"language": "en", "string": "Which awards did WikiLeaks win?"}], "query": {"sparql": "PREFIX res: <http://dbpedia.org/resource/>PREFIX dbp: <http://dbpedia.org/property/>SELECT DISTINCT ?uriWHERE {        res:WikiLeaks dbp:awards ?uri .}"}, "entities": [{"URI": "http://dbpedia.org/resource/WikiLeaks", "surface form": "WikiLeaks"}], "relations": [{"URI": "http://dbpedia.org/ontology/budget", "surface form": "awards"}, {"URI": "http://dbpedia.org/ontology/award", "surface form": "win"}]}, {"id": "205", "question": [{"language": "en", "string": "Which state of the USA has the highest population density?"}], "query": {"sparql": "PREFIX yago: <http://dbpedia.org/class/yago/> PREFIX dbp: <http://dbpedia.org/property/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type yago:WikicatStatesOfTheUnitedStates ; dbp:densityrank ?rank } ORDER BY ASC(?rank) LIMIT 1"}, "entities": [{"URI": "http://dbpedia.org/resource/Usa_District,_\u014cita", "surface form": "USA"}, {"URI": "http://dbpedia.org/resource/Population_density", "surface form": "highest population density"}], "relations": []}, {"id": "206", "question": [{"language": "en", "string": "When did Finland join the EU?"}], "query": {"sparql": "PREFIX res: <http://dbpedia.org/resource/> PREFIX dbp: <http://dbpedia.org/property/> SELECT DISTINCT ?date WHERE { res:Finland dbp:accessioneudate ?date }"}, "entities": [{"URI": "http://dbpedia.org/resource/Basque_language", "surface form": "EU"}, {"URI": "http://dbpedia.org/resource/Join", "surface form": "Finland join the"}], "relations": [{"URI": "http://dbpedia.org/property/date", "surface form": "when"}]}, {"id": "113", "question": [{"language": "en", "string": "What is the highest mountain in Australia?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Mountain ; dbo:locatedInArea res:Australia ; dbo:elevation ?elevation } ORDER BY DESC(?elevation) LIMIT 1"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mawson_Peak"}}, "entities": [{"URI": "http://dbpedia.org/resource/Australia", "surface form": "Australia"}], "relations": [{"URI": "http://dbpedia.org/property/elevation", "surface form": "highest mountain"}]}, {"id": "208", "question": [{"language": "en", "string": "Is Frank Herbert still alive?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> ASK WHERE { OPTIONAL { res:Frank_Herbert dbo:deathDate ?date } FILTER ( ! bound(?date) ) }"}, "entities": [{"URI": "http://dbpedia.org/resource/Frank_Herbert", "surface form": "Frank Herbert"}], "relations": [{"URI": "http://dbpedia.org/ontology/deathDate", "surface form": "alive"}]}, {"id": "114", "question": [{"language": "en", "string": "Give me all companies in the advertising industry."}], "query": {"sparql": "SELECT (COUNT(DISTINCT ?uri) AS ?c) WHERE { ?uri a <http://dbpedia.org/ontology/Company> { ?uri <http://dbpedia.org/ontology/industry> <http://dbpedia.org/resource/Advertising> } UNION { ?uri <http://dbpedia.org/ontology/industry> ?industry FILTER regex(?industry, \"advertising\", \"i\") } }"}, "answers": {"c": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "361"}}, "entities": [{"URI": "http://dbpedia.org/resource/Companies_listed_on_the_New_York_Stock_Exchange_(J)", "surface form": "companies"}], "relations": [{"URI": "http://dbpedia.org/property/industry", "surface form": "advertising industry"}]}, {"id": "210", "question": [{"language": "en", "string": "Give me all presidents of the United States."}], "query": {"sparql": "PREFIX yago: <http://dbpedia.org/class/yago/>PREFIX dbo: <http://dbpedia.org/ontology/>PREFIX dbp: <http://dbpedia.org/property/>PREFIX res: <http://dbpedia.org/resource/>PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>SELECT DISTINCT ?uriWHERE {        ?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. }}"}, "entities": [{"URI": "http://dbpedia.org/resource/United_States", "surface form": "United States"}], "relations": [{"URI": "http://dbpedia.org/ontology/country", "surface form": "presidents"}]}, {"id": "115", "question": [{"language": "en", "string": "Who was the wife of U.S. president Lincoln?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Abraham_Lincoln dbo:spouse ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mary_Todd_Lincoln"}}, "entities": [{"URI": "http://dbpedia.org/resource/Abraham_Lincoln", "surface form": "Lincoln"}], "relations": [{"URI": "http://dbpedia.org/ontology/spouse", "surface form": "wife"}]}, {"id": "212", "question": [{"language": "en", "string": "What is the official website of Tom Cruise?"}], "query": {"sparql": "SELECT DISTINCT ?string WHERE {  <http://dbpedia.org/resource/Tom_Cruise> <http://dbpedia.org/property/website> ?string . } "}, "entities": [{"URI": "http://dbpedia.org/resource/Tom_Cruise", "surface form": "Tom Cruise"}], "relations": [{"URI": "http://dbpedia.org/ontology/incumbent", "surface form": "official website"}]}, {"id": "213", "question": [{"language": "en", "string": "Give me all people with first name Jimmy."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {  ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> foaf:Person .  ?uri foaf:givenName 'Jimmy'@en . } "}, "entities": [{"URI": "http://dbpedia.org/resource/Jimmy_Jimmy", "surface form": "name Jimmy"}], "relations": []}, {"id": "214", "question": [{"language": "en", "string": "Who created Wikipedia?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Wikipedia dbo:author ?uri }"}, "entities": [{"URI": "http://dbpedia.org/resource/Wikipedia", "surface form": "Wikipedia"}], "relations": [{"URI": "http://dbpedia.org/ontology/author", "surface form": "created"}]}, {"id": "116", "question": [{"language": "en", "string": "Give me all video games published by Mean Hamster Software."}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:VideoGame ; dbo:publisher res:Mean_Hamster_Software }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Riven"}}, "entities": [{"URI": "http://dbpedia.org/resource/Mean_Hamster_Software", "surface form": "Mean Hamster Software"}], "relations": [{"URI": "http://dbpedia.org/ontology/film", "surface form": "video games"}, {"URI": "http://dbpedia.org/ontology/publisher", "surface form": "published"}]}, {"id": "117", "question": [{"language": "en", "string": "Which languages are spoken in Estonia?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/spokenIn> <http://dbpedia.org/resource/Estonia> }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/V\u00f5ro_language"}}, "entities": [{"URI": "http://dbpedia.org/resource/Estonia", "surface form": "Estonia"}], "relations": [{"URI": "http://dbpedia.org/ontology/language", "surface form": "languages"}, {"URI": "http://dbpedia.org/ontology/spokenIn", "surface form": "spoken"}]}, {"id": "118", "question": [{"language": "en", "string": "How many films did Hal Roach produce?"}], "query": {"sparql": "SELECT (COUNT(DISTINCT ?uri) AS ?c) WHERE { ?uri <http://dbpedia.org/ontology/producer> <http://dbpedia.org/resource/Hal_Roach> }"}, "answers": {"c": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "539"}}, "entities": [{"URI": "http://dbpedia.org/resource/Hal_Roach", "surface form": "Hal Roach"}], "relations": [{"URI": "http://dbpedia.org/ontology/numberOfFilms", "surface form": "films"}, {"URI": "http://dbpedia.org/ontology/producer", "surface form": "produce"}]}, {"id": "119", "question": [{"language": "en", "string": "Give me all books written by Danielle Steel."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Book> ; <http://dbpedia.org/ontology/author> <http://dbpedia.org/resource/Danielle_Steel> }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Amazing_Grace_(novel)"}}, "entities": [{"URI": "http://dbpedia.org/resource/Danielle_Steel", "surface form": "Danielle Steel"}], "relations": [{"URI": "http://dbpedia.org/ontology/volume", "surface form": "books"}, {"URI": "http://dbpedia.org/ontology/writer", "surface form": "written"}]}, {"id": "120", "question": [{"language": "en", "string": "Which airports are located in California, USA?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Airport> { ?uri <http://dbpedia.org/ontology/location> <http://dbpedia.org/resource/California> } UNION { ?uri <http://dbpedia.org/ontology/city> <http://dbpedia.org/resource/California> } UNION { ?uri <http://dbpedia.org/ontology/city> ?city . ?city <http://dbpedia.org/ontology/isPartOf> <http://dbpedia.org/resource/California> } UNION { ?uri <http://dbpedia.org/ontology/operator> <http://dbpedia.org/resource/California> } }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Amboy_Airfield"}}, "entities": [{"URI": "http://dbpedia.org/resource/United_States", "surface form": "USA"}, {"URI": "http://dbpedia.org/resource/California,_Cincinnati", "surface form": "California,"}], "relations": [{"URI": "http://dbpedia.org/ontology/targetAirport", "surface form": "airports"}, {"URI": "http://dbpedia.org/ontology/place", "surface form": "located"}]}, {"id": "121", "question": [{"language": "en", "string": "Give me all Canadian Grunge record labels."}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:RecordLabel ; dbo:genre res:Grunge ; dbo:country res:Canada }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Murderecords"}}, "entities": [{"URI": "http://dbpedia.org/resource/Canada", "surface form": "Canadian Grunge record labels"}, {"URI": "http://dbpedia.org/resource/Canadian_independent_record_labels", "surface form": "Canadian Grunge record labels"}], "relations": [{"URI": "http://dbpedia.org/ontology/country", "surface form": ""}]}, {"id": "122", "question": [{"language": "en", "string": "Give me all movies with Tom Cruise."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Film> ; <http://dbpedia.org/ontology/starring> <http://dbpedia.org/resource/Tom_Cruise> }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/All_the_Right_Moves_(film)"}}, "entities": [{"URI": "http://dbpedia.org/resource/Tom_Cruise", "surface form": "Tom Cruise"}], "relations": [{"URI": "http://dbpedia.org/ontology/film", "surface form": "movies"}]}, {"id": "123", "question": [{"language": "en", "string": "Give me all female German chancellors."}], "query": {"sparql": "PREFIX res: <http://dbpedia.org/resource/> PREFIX dbp: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Chancellor_of_Germany dbp:incumbent ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Olaf_Scholz"}}, "entities": [{"URI": "http://dbpedia.org/resource/List_of_German_female_artists", "surface form": "female German chancellors"}], "relations": []}, {"id": "223", "question": [{"language": "en", "string": "Was Natalie Portman born in the United States?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> ASK WHERE { res:Natalie_Portman dbo:birthPlace ?city . ?city dbo:country res:United_States }"}, "entities": [{"URI": "http://dbpedia.org/resource/Natalie_Portman", "surface form": "Natalie Portman"}, {"URI": "http://dbpedia.org/resource/United_States", "surface form": "United States"}], "relations": [{"URI": "http://dbpedia.org/ontology/birthPlace", "surface form": "born"}]}, {"id": "124", "question": [{"language": "en", "string": "Who is the governor of Wyoming?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Wyoming> <http://dbpedia.org/property/governor> ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mark_Gordon"}}, "entities": [{"URI": "http://dbpedia.org/resource/Wyoming", "surface form": "Wyoming"}], "relations": [{"URI": "http://dbpedia.org/ontology/governor", "surface form": "governor"}]}, {"id": "225", "question": [{"language": "en", "string": "Do Prince Harry and Prince William have the same mother?"}], "query": {"sparql": " PREFIX dbp: <http://dbpedia.org/property/> ASK WHERE {         <http://dbpedia.org/resource/Prince_William,_Duke_of_Cambridge> dbp:mother ?x .         <http://dbpedia.org/resource/Prince_Harry_of_Wales> dbp:mother ?y .         FILTER (?x = ?y) } "}, "entities": [{"URI": "http://dbpedia.org/resource/Prince_Harry", "surface form": "Prince Harry"}, {"URI": "http://dbpedia.org/resource/Prince_William,_Duke_of_Cambridge", "surface form": "Prince William"}], "relations": [{"URI": "http://dbpedia.org/ontology/parent", "surface form": "mother"}]}, {"id": "125", "question": [{"language": "en", "string": "Who developed Minecraft?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Minecraft> <http://dbpedia.org/ontology/developer> ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mojang_Studios"}}, "entities": [{"URI": "http://dbpedia.org/resource/Minecraft", "surface form": "Minecraft"}], "relations": [{"URI": "http://dbpedia.org/ontology/developer", "surface form": "developed"}]}, {"id": "126", "question": [{"language": "en", "string": "List all games by GMT."}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { ?uri dbo:publisher res:GMT_Games }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Fields_of_Fire_(game)"}}, "entities": [{"URI": "http://dbpedia.org/resource/Generic_Mapping_Tools", "surface form": "GMT"}], "relations": [{"URI": "http://dbpedia.org/ontology/games", "surface form": "games"}]}, {"id": "127", "question": [{"language": "en", "string": "In which U.S. state is Fort Knox located?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX dbp: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Fort_Knox dbo:location ?uri . ?uri dbo:country res:United_States }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kentucky"}}, "entities": [{"URI": "http://dbpedia.org/resource/United_States", "surface form": "U.S."}, {"URI": "http://dbpedia.org/resource/Fort_Knox", "surface form": "Fort Knox"}], "relations": [{"URI": "http://dbpedia.org/property/location", "surface form": "located"}, {"URI": "http://dbpedia.org/ontology/country", "surface form": "state"}]}, {"id": "229", "question": [{"language": "en", "string": "Which U.S. state has the abbreviation MN?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a yago:WikicatStatesOfTheUnitedStates ; <http://dbpedia.org/property/postalabbreviation> \"MN\"^^<http://www.w3.org/1999/02/22-rdf-syntax-ns#langString> }"}, "entities": [{"URI": "http://dbpedia.org/resource/United_States", "surface form": "US"}, {"URI": "http://dbpedia.org/resource/MN", "surface form": "MN"}], "relations": [{"URI": "http://dbpedia.org/ontology/abbreviation", "surface form": "abbreviation"}]}, {"id": "230", "question": [{"language": "en", "string": "Which movies did Kurosawa direct after Rashomon?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/>PREFIX dbp: <http://dbpedia.org/property/>PREFIX res: <http://dbpedia.org/resource/>PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>SELECT DISTINCT ?uriWHERE {        ?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)}"}, "entities": [{"URI": "http://dbpedia.org/resource/Kinko_Kurosawa", "surface form": "Kurosawa direct "}, {"URI": "http://dbpedia.org/resource/Rashomon", "surface form": " Rashomon"}], "relations": [{"URI": "http://dbpedia.org/ontology/film", "surface form": "movies"}, {"URI": "http://dbpedia.org/property/date", "surface form": "when"}]}, {"id": "231", "question": [{"language": "en", "string": "Who is the daughter of Ingrid Bergman married to?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Ingrid_Bergman dbo:child ?child . ?child <http://dbpedia.org/property/spouse> ?uri }"}, "entities": [{"URI": "http://dbpedia.org/resource/Ingrid_Bergman", "surface form": "Ingrid Bergman"}], "relations": [{"URI": "http://dbpedia.org/ontology/child", "surface form": "daughter"}, {"URI": "http://dbpedia.org/property/spouse", "surface form": "married"}]}, {"id": "128", "question": [{"language": "en", "string": "In which city did John F. Kennedy die?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { res:John_F._Kennedy dbo:deathPlace ?uri . ?uri rdf:type dbo:City }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dallas"}}, "entities": [{"URI": "http://dbpedia.org/resource/John_F._Kennedy", "surface form": "John F. Kennedy"}], "relations": [{"URI": "http://dbpedia.org/ontology/deathPlace", "surface form": "die"}]}, {"id": "233", "question": [{"language": "en", "string": "Which classis do tree frogs belong to?"}], "query": {"sparql": "PREFIX dbp: <http://dbpedia.org/property/>PREFIX res: <http://dbpedia.org/resource/>SELECT DISTINCT ?uriWHERE {       res:Hylidae dbp:classis ?uri .}"}, "entities": [], "relations": [{"URI": "http://dbpedia.org/ontology/classes", "surface form": "classis"}, {"URI": "http://dbpedia.org/ontology/family", "surface form": "tree frogs"}, {"URI": "http://dbpedia.org/ontology/date", "surface form": "belong"}]}, {"id": "234", "question": [{"language": "en", "string": "When did Latvia join the EU?"}], "query": {"sparql": "SELECT DISTINCT ?date WHERE { <http://dbpedia.org/resource/Latvia> <http://dbpedia.org/property/accessioneudate> ?date }"}, "entities": [{"URI": "http://dbpedia.org/resource/Basque_language", "surface form": "EU"}, {"URI": "http://dbpedia.org/resource/Join", "surface form": "Latvia join the"}], "relations": [{"URI": "http://dbpedia.org/property/date", "surface form": "when"}]}, {"id": "129", "question": [{"language": "en", "string": "Give me all actors starring in Last Action Hero."}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Last_Action_Hero dbo:starring ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Art_Carney"}}, "entities": [{"URI": "http://dbpedia.org/resource/Last_Action_Hero", "surface form": "Last Action Hero"}], "relations": [{"URI": "http://dbpedia.org/ontology/starring", "surface form": "starring"}]}, {"id": "130", "question": [{"language": "en", "string": "Who wrote the book Les Piliers de la terre?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:The_Pillars_of_the_Earth dbo:author ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ken_Follett"}}, "entities": [{"URI": "http://dbpedia.org/resource/La_Terre", "surface form": "book Les Piliers de la terre"}], "relations": [{"URI": "http://dbpedia.org/ontology/author", "surface form": "wrote"}]}, {"id": "131", "question": [{"language": "en", "string": "Give me all taikonauts."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { { ?uri a <http://dbpedia.org/ontology/Astronaut> ; <http://dbpedia.org/ontology/nationality> <http://dbpedia.org/resource/People's_Republic_of_China> } UNION { ?uri a <http://dbpedia.org/ontology/Astronaut> ; <http://dbpedia.org/ontology/nationality> <http://dbpedia.org/resource/China> } }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tang_Hongbo"}}, "entities": [{"URI": "http://dbpedia.org/resource/Astronaut", "surface form": "Taikonauts"}], "relations": []}, {"id": "132", "question": [{"language": "en", "string": "How many languages are spoken in Colombia?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT (COUNT(DISTINCT ?uri) AS ?c) WHERE { ?uri rdf:type dbo:Language . res:Colombia dbo:language ?uri }"}, "answers": {"c": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "0"}}, "entities": [{"URI": "http://dbpedia.org/resource/Colombia", "surface form": "Colombia"}], "relations": [{"URI": "http://dbpedia.org/ontology/language", "surface form": "languages"}, {"URI": "http://dbpedia.org/ontology/spokenIn", "surface form": "spoken"}]}, {"id": "133", "question": [{"language": "en", "string": "Which poet wrote the most books?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/occupation> <http://dbpedia.org/resource/Poet> . ?x <http://dbpedia.org/ontology/author> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Book> . } ORDER BY DESC(COUNT(?x)) OFFSET 0 LIMIT 1"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jules_Verne"}}, "entities": [], "relations": [{"URI": "http://dbpedia.org/ontology/author", "surface form": "poet"}, {"URI": "http://dbpedia.org/ontology/composer", "surface form": "wrote"}, {"URI": "http://dbpedia.org/ontology/volume", "surface form": "books"}]}, {"id": "134", "question": [{"language": "en", "string": "How many programming languages are there?"}], "query": {"sparql": "SELECT (COUNT(DISTINCT ?uri) AS ?c) WHERE { ?uri a <http://dbpedia.org/ontology/ProgrammingLanguage> }"}, "answers": {"c": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "3328"}}, "entities": [], "relations": [{"URI": "http://dbpedia.org/ontology/programmingLanguage", "surface form": "programming languages"}]}, {"id": "135", "question": [{"language": "en", "string": "Give me all Dutch parties."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/PoliticalParty> ; <http://dbpedia.org/ontology/country> <http://dbpedia.org/resource/Netherlands> }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Democratic_Political_Turning_Point"}}, "entities": [{"URI": "http://dbpedia.org/resource/Cura\u00e7ao", "surface form": "Dutch parties"}, {"URI": "http://dbpedia.org/resource/Dutch", "surface form": "Dutch parties"}], "relations": [{"URI": "http://dbpedia.org/ontology/country", "surface form": ""}, {"URI": "http://dbpedia.org/ontology/country", "surface form": ""}]}, {"id": "136", "question": [{"language": "en", "string": "When was Carlo Giuliani shot?"}], "query": {"sparql": "PREFIX res: <http://dbpedia.org/resource/> PREFIX dbp: <http://dbpedia.org/property/> SELECT DISTINCT xsd:date(?date) WHERE { res:Death_of_Carlo_Giuliani dbo:deathDate ?date }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#date", "value": "2001-07-20"}}, "entities": [{"URI": "http://dbpedia.org/resource/Carlo_Giuliani,_Boy", "surface form": "Carlo Giuliani"}], "relations": [{"URI": "http://dbpedia.org/ontology/discharge", "surface form": "shot"}]}, {"id": "243", "question": [{"language": "en", "string": "Does the Isar flow into a lake?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> ASK WHERE { ?x dbo:inflow res:Isar ; rdf:type dbo:Lake }"}, "entities": [{"URI": "http://dbpedia.org/resource/Isar", "surface form": "Isar"}], "relations": [{"URI": "http://dbpedia.org/property/float", "surface form": "flow"}, {"URI": "http://dbpedia.org/ontology/lake", "surface form": "lake"}]}, {"id": "137", "question": [{"language": "en", "string": "Which rivers flow into a German lake?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/River> . ?x <http://dbpedia.org/ontology/inflow> ?uri ; a <http://dbpedia.org/ontology/Lake> ; <http://dbpedia.org/ontology/country> <http://dbpedia.org/resource/Germany> }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alster"}}, "entities": [{"URI": "http://dbpedia.org/resource/Germany", "surface form": "German lake"}, {"URI": "http://dbpedia.org/resource/German_Lake", "surface form": "German lake"}], "relations": [{"URI": "http://dbpedia.org/ontology/operator", "surface form": "rivers"}, {"URI": "http://dbpedia.org/property/float", "surface form": "flow"}, {"URI": "http://dbpedia.org/ontology/country", "surface form": ""}]}, {"id": "245", "question": [{"language": "en", "string": "How heavy is Jupiter's lightest moon?"}], "query": {"sparql": "SELECT DISTINCT ?n WHERE { ?uri <http://dbpedia.org/property/satelliteOf> <http://dbpedia.org/resource/Jupiter> ; <http://dbpedia.org/ontology/mass> ?n } ORDER BY ASC(?n) OFFSET 0 LIMIT 1"}, "entities": [{"URI": "http://dbpedia.org/resource/Jupiter", "surface form": "Jupiter"}, {"URI": "http://dbpedia.org/resource/Lightest_Supersymmetric_Particle", "surface form": " lightest moon"}], "relations": [{"URI": "http://dbpedia.org/ontology/fat", "surface form": "heavy"}]}, {"id": "138", "question": [{"language": "en", "string": "Who is the youngest Darts player?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:DartsPlayer ; dbo:birthDate ?date } ORDER BY DESC(?date) OFFSET 0 LIMIT 1"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Aurora_Fochesato"}}, "entities": [{"URI": "http://dbpedia.org/resource/Andrew_Gilding", "surface form": "Darts player"}], "relations": []}, {"id": "139", "question": [{"language": "en", "string": "Give me all animals that are extinct."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Animal> ; <http://dbpedia.org/ontology/conservationStatus> \"EX\" }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Advena_campbelli"}}, "entities": [], "relations": [{"URI": "http://dbpedia.org/ontology/animal", "surface form": "animals"}, {"URI": "http://dbpedia.org/ontology/quote", "surface form": "extinct"}]}, {"id": "140", "question": [{"language": "en", "string": "How many pages does War and Peace have?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?n WHERE { res:War_and_Peace dbo:numberOfPages ?n }"}, "answers": {"n": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#positiveInteger", "value": "1225"}}, "entities": [{"URI": "http://dbpedia.org/resource/War_and_Peace", "surface form": "War and Peace"}], "relations": []}, {"id": "141", "question": [{"language": "en", "string": "Which ingredients do I need for carrot cake?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Carrot_cake dbo:ingredient ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Carrot"}}, "entities": [{"URI": "http://dbpedia.org/resource/I", "surface form": "I"}, {"URI": "http://dbpedia.org/resource/Carrot_cake", "surface form": "carrot cake"}], "relations": [{"URI": "http://dbpedia.org/ontology/ingredient", "surface form": "ingredients"}]}, {"id": "142", "question": [{"language": "en", "string": "What is the most frequent death cause?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/>SELECT DISTINCT ?xWHERE {        ?uri dbo:deathCause ?x . }ORDER BY DESC(COUNT(DISTINCT ?uri)) OFFSET 0 LIMIT 1"}, "answers": {}, "entities": [], "relations": [{"URI": "http://dbpedia.org/ontology/fate", "surface form": "frequent death"}]}, {"id": "143", "question": [{"language": "en", "string": "Who has Tom Cruise been married to?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/spouse> <http://dbpedia.org/resource/Tom_Cruise> }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Katie_Holmes"}}, "entities": [{"URI": "http://dbpedia.org/resource/Tom_Cruise", "surface form": "Tom Cruise"}], "relations": [{"URI": "http://dbpedia.org/ontology/spouse", "surface form": "married"}]}, {"id": "252", "question": [{"language": "en", "string": "Who is the tallest player of the Atlanta Falcons?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/team> <http://dbpedia.org/resource/Atlanta_Falcons> ; <http://dbpedia.org/ontology/height> ?h } ORDER BY DESC(?h) OFFSET 0 LIMIT 1"}, "entities": [{"URI": "http://dbpedia.org/resource/Atlanta_Falcons", "surface form": "Atlanta Falcons"}], "relations": [{"URI": "http://dbpedia.org/ontology/coach", "surface form": "tallest player"}]}, {"id": "144", "question": [{"language": "en", "string": "What is the bridge with the longest span?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Bridge ; dbo:mainspan ?s } ORDER BY DESC(?s) OFFSET 0 LIMIT 1"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/C\u1ea7n_Gi\u1edd_Bridge"}}, "entities": [], "relations": [{"URI": "http://dbpedia.org/ontology/discipline", "surface form": "bridge"}, {"URI": "http://dbpedia.org/ontology/mainspan", "surface form": "span"}]}, {"id": "145", "question": [{"language": "en", "string": "Give me all films produced by Steven Spielberg with a budget of at least $80 million."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film> . ?uri <http://dbpedia.org/ontology/director> <http://dbpedia.org/resource/Steven_Spielberg> . ?uri <http://dbpedia.org/ontology/budget> ?b . FILTER( xsd:double(?b) >= 8.0E7 ) }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/War_of_the_Worlds_(2005_film)"}}, "entities": [{"URI": "http://dbpedia.org/resource/Steven_Spielberg", "surface form": "Steven Spielberg"}, {"URI": "http://dbpedia.org/resource/Boeing_80", "surface form": "$80"}], "relations": [{"URI": "http://dbpedia.org/ontology/production", "surface form": "films"}, {"URI": "http://dbpedia.org/ontology/manufacturer", "surface form": "produced"}, {"URI": "http://dbpedia.org/ontology/budget", "surface form": "budget"}]}, {"id": "255", "question": [{"language": "en", "string": "Is Cola a beverage?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> ASK WHERE { res:Cola rdf:type dbo:Beverage }"}, "entities": [{"URI": "http://dbpedia.org/resource/Cola", "surface form": "Cola"}], "relations": [{"URI": "http://dbpedia.org/ontology/strength", "surface form": "beverage"}]}, {"id": "146", "question": [{"language": "en", "string": "Which actor was casted in the most movies?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Actor> . ?f <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film> . ?f <http://dbpedia.org/ontology/starring> ?uri . } ORDER BY DESC(COUNT(DISTINCT(?f))) OFFSET 0 LIMIT 1"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Amitabh_Bachchan"}}, "entities": [], "relations": [{"URI": "http://dbpedia.org/ontology/artist", "surface form": "actor"}, {"URI": "http://dbpedia.org/ontology/class", "surface form": "casted"}, {"URI": "http://dbpedia.org/ontology/film", "surface form": "movies"}]}, {"id": "147", "question": [{"language": "en", "string": "Where was Bach born?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Johann_Sebastian_Bach dbo:birthPlace ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Eisenach"}}, "entities": [{"URI": "http://dbpedia.org/resource/Johann_Sebastian_Bach", "surface form": "Bach"}], "relations": [{"URI": "http://dbpedia.org/ontology/birthPlace", "surface form": "born"}]}, {"id": "148", "question": [{"language": "en", "string": "Which of Tim Burton's films had the highest budget?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { ?uri dbo:director res:Tim_Burton ; dbo:budget ?b } ORDER BY ?b OFFSET 0 LIMIT 1"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Big_Eyes"}}, "entities": [{"URI": "http://dbpedia.org/resource/Tim_Burton", "surface form": "Tim Burton"}], "relations": [{"URI": "http://dbpedia.org/ontology/numberOfFilms", "surface form": " films"}, {"URI": "http://dbpedia.org/ontology/elevation", "surface form": "highest budget"}]}, {"id": "259", "question": [{"language": "en", "string": "Does Abraham Lincoln's death place have a website?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> ASK WHERE { res:Abraham_Lincoln dbo:deathPlace ?p . ?p dbo:website ?w }"}, "entities": [{"URI": "http://dbpedia.org/resource/Abraham_Lincoln", "surface form": "Abraham Lincoln"}, {"URI": "http://dbpedia.org/resource/This_Place_Is_Death", "surface form": " death place"}, {"URI": "http://dbpedia.org/resource/Website", "surface form": "website"}], "relations": []}, {"id": "149", "question": [{"language": "en", "string": "Who are the four youngest MVP basketball players?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/BasketballPlayer> ; <http://dbpedia.org/ontology/birthDate> ?date ; <http://dbpedia.org/property/highlights> ?h FILTER regex(?h, \"MVP\") } ORDER BY DESC(?date) OFFSET 0 LIMIT 4"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Robert_Dillingham"}}, "entities": [{"URI": "http://dbpedia.org/resource/NBA_Most_Valuable_Player_Award", "surface form": "MVP"}, {"URI": "http://dbpedia.org/resource/National_Basketball_Players_Association", "surface form": "basketball players"}], "relations": []}, {"id": "150", "question": [{"language": "en", "string": "What are the top-10 action role-playing video games according to IGN?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://purl.org/dc/terms/subject> <http://dbpedia.org/resource/Category:Action_role-playing_video_games> ; <http://dbpedia.org/property/ign> ?score } ORDER BY DESC(?score) LIMIT 10"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Battleheart_Legacy"}}, "entities": [{"URI": "http://dbpedia.org/resource/Action_role-playing_games", "surface form": "top-10 action role-playing video games"}, {"URI": "http://dbpedia.org/resource/IGN", "surface form": "IGN"}], "relations": []}, {"id": "151", "question": [{"language": "en", "string": "Give me all actors who were born in Berlin."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Actor> ; <http://dbpedia.org/ontology/birthPlace> <http://dbpedia.org/resource/Berlin> }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Walter_Bluhm"}}, "entities": [{"URI": "http://dbpedia.org/resource/Berlin", "surface form": "Berlin"}], "relations": [{"URI": "http://dbpedia.org/ontology/award", "surface form": "actors"}, {"URI": "http://dbpedia.org/ontology/birthPlace", "surface form": "born"}]}, {"id": "152", "question": [{"language": "en", "string": "Give me all actors who were born in Paris after 1950."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Actor> . ?uri <http://dbpedia.org/ontology/birthPlace> <http://dbpedia.org/resource/Paris> . ?uri <http://dbpedia.org/ontology/birthDate> ?date . FILTER ( ?date >= xsd:dateTime('1950-12-31T00:00:00Z')) }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Fran\u00e7ois_Hadji-Lazaro"}}, "entities": [{"URI": "http://dbpedia.org/resource/Paris", "surface form": "Paris"}, {"URI": "http://dbpedia.org/resource/1950", "surface form": "1950"}], "relations": [{"URI": "http://dbpedia.org/ontology/artist", "surface form": "actors"}, {"URI": "http://dbpedia.org/ontology/birthPlace", "surface form": "born"}]}, {"id": "153", "question": [{"language": "en", "string": "What was Brazil's lowest rank in the FIFA World Ranking?"}], "query": {"sparql": "SELECT DISTINCT ?n WHERE { <http://dbpedia.org/resource/Brazil_national_football_team> <http://dbpedia.org/property/fifaMin> ?n }"}, "answers": {"n": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "22"}}, "entities": [{"URI": "http://dbpedia.org/resource/Brazil", "surface form": "Brazil"}, {"URI": "http://dbpedia.org/resource/RANK", "surface form": " lowest rank"}, {"URI": "http://dbpedia.org/resource/FIFA", "surface form": "FIFA"}, {"URI": "http://dbpedia.org/resource/WBSC_World_Rankings", "surface form": "World Ranking"}], "relations": []}, {"id": "154", "question": [{"language": "en", "string": "Give me all Australian metalcore bands."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Band> ; <http://dbpedia.org/ontology/genre> <http://dbpedia.org/resource/Metalcore> { ?uri <http://dbpedia.org/ontology/hometown> <http://dbpedia.org/resource/Australia> } UNION { ?uri <http://dbpedia.org/ontology/hometown> ?h . ?h <http://dbpedia.org/ontology/country> <http://dbpedia.org/resource/Australia> } }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dream_On,_Dreamer"}}, "entities": [{"URI": "http://dbpedia.org/resource/Australia", "surface form": "Australian metalcore bands"}, {"URI": "http://dbpedia.org/resource/List_of_metalcore_bands", "surface form": "Australian metalcore bands"}], "relations": [{"URI": "http://dbpedia.org/ontology/country", "surface form": ""}]}, {"id": "155", "question": [{"language": "en", "string": "When is Halloween?"}], "query": {"sparql": "SELECT DISTINCT ?date WHERE {  <http://dbpedia.org/resource/Halloween> <http://dbpedia.org/property/date> ?date . } "}, "answers": {"date": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#gMonthDay", "value": "--10-31"}}, "entities": [{"URI": "http://dbpedia.org/resource/Halloween", "surface form": "Halloween"}], "relations": [{"URI": "http://dbpedia.org/property/date", "surface form": "when"}]}, {"id": "156", "question": [{"language": "en", "string": "How many inhabitants does the largest city in Canada have?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?num WHERE { res:Canada dbo:largestCity ?city . ?city dbo:populationTotal ?num }"}, "answers": {"num": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#nonNegativeInteger", "value": "2794356"}}, "entities": [{"URI": "http://dbpedia.org/resource/Canada", "surface form": "Canada"}], "relations": [{"URI": "http://dbpedia.org/property/country", "surface form": "inhabitants"}, {"URI": "http://dbpedia.org/ontology/largestCity", "surface form": "largest city"}]}, {"id": "157", "question": [{"language": "en", "string": "In which countries can you pay using the West African CFA franc?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/currency> <http://dbpedia.org/resource/West_African_CFA_franc> }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Benin"}}, "entities": [{"URI": "http://dbpedia.org/resource/Countries_of_the_United_Kingdom", "surface form": "countries"}, {"URI": "http://dbpedia.org/resource/CFA", "surface form": "CFA"}, {"URI": "http://dbpedia.org/resource/West_African_CFA_franc", "surface form": "West African  franc"}], "relations": [{"URI": "http://dbpedia.org/ontology/currency", "surface form": "pay"}]}, {"id": "158", "question": [{"language": "en", "string": "Give me the capitals of all countries that the Himalayas run through."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Himalayas> <http://dbpedia.org/ontology/country> ?country . ?country <http://dbpedia.org/ontology/capital> ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/New_Delhi"}}, "entities": [{"URI": "http://dbpedia.org/resource/Countries_of_the_United_Kingdom", "surface form": "countries"}, {"URI": "http://dbpedia.org/resource/Himalayas", "surface form": "Himalayas"}], "relations": [{"URI": "http://dbpedia.org/ontology/capital", "surface form": "capitals"}, {"URI": "http://dbpedia.org/property/work", "surface form": "run"}]}, {"id": "159", "question": [{"language": "en", "string": "Who was the first to climb Mount Everest?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Mount_Everest dbo:firstAscentPerson ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tenzing_Norgay"}}, "entities": [{"URI": "http://dbpedia.org/resource/Mount_Everest", "surface form": "Mount Everest"}], "relations": [{"URI": "http://dbpedia.org/ontology/board", "surface form": "climb"}]}, {"id": "160", "question": [{"language": "en", "string": "To which artistic movement did the painter of The Three Dancers belong?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:The_Three_Dancers dbo:author ?person . ?person dbo:movement ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cubism"}}, "entities": [{"URI": "http://dbpedia.org/resource/The_Three_Dancers", "surface form": "The Three Dancers"}], "relations": [{"URI": "http://dbpedia.org/ontology/movement", "surface form": "artistic movement"}, {"URI": "http://dbpedia.org/ontology/painter", "surface form": "painter"}, {"URI": "http://dbpedia.org/ontology/date", "surface form": "belong"}]}, {"id": "161", "question": [{"language": "en", "string": "Which pope succeeded John Paul II?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Pope_John_Paul_II> <http://dbpedia.org/property/successor> ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pope_Benedict_XVI"}}, "entities": [{"URI": "http://dbpedia.org/resource/Ii", "surface form": "II"}, {"URI": "http://dbpedia.org/resource/John_Paul", "surface form": "John Paul"}], "relations": [{"URI": "http://dbpedia.org/property/popeElected", "surface form": "pope"}, {"URI": "http://dbpedia.org/ontology/successor", "surface form": "succeeded"}]}, {"id": "162", "question": [{"language": "en", "string": "What was the last movie with Alec Guinness?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Film ; dbo:starring res:Alec_Guinness ; dbo:releaseDate ?date } ORDER BY DESC(?date) LIMIT 1"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Star_Wars_original_trilogy"}}, "entities": [{"URI": "http://dbpedia.org/resource/Alec_Guinness", "surface form": "Alec Guinness"}], "relations": [{"URI": "http://dbpedia.org/ontology/picture", "surface form": "movie"}]}, {"id": "163", "question": [{"language": "en", "string": "How many James Bond movies are there?"}], "query": {"sparql": "SELECT (COUNT(DISTINCT ?uri) as ?c) WHERE {  ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/class/yago/JamesBondFilms> . } "}, "answers": {"c": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "0"}}, "entities": [{"URI": "http://dbpedia.org/resource/James_Bond", "surface form": "James Bond movies"}], "relations": []}, {"id": "164", "question": [{"language": "en", "string": "Which actor played Chewbacca?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Chewbacca> <http://dbpedia.org/ontology/portrayer> ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Joonas_Suotamo"}}, "entities": [{"URI": "http://dbpedia.org/resource/Chewbacca", "surface form": "Chewbacca"}], "relations": [{"URI": "http://dbpedia.org/ontology/artist", "surface form": "actor"}, {"URI": "http://dbpedia.org/ontology/portrayer", "surface form": "played"}]}, {"id": "165", "question": [{"language": "en", "string": "Give me the grandchildren of Bruce Lee."}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Bruce_Lee dbo:child ?child . ?child <http://dbpedia.org/property/children> ?uri }"}, "answers": {"uri": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "1"}}, "entities": [{"URI": "http://dbpedia.org/resource/Bruce_Lee", "surface form": "Bruce Lee"}], "relations": [{"URI": "http://dbpedia.org/ontology/child", "surface form": "grandchildren"}]}, {"id": "166", "question": [{"language": "en", "string": "Give me all writers that won the Nobel Prize in literature."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Writer> ; <http://dbpedia.org/ontology/award> <http://dbpedia.org/resource/Nobel_Prize_in_Literature> }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Aleksandr_Solzhenitsyn"}}, "entities": [{"URI": "http://dbpedia.org/resource/Nobel_Prize", "surface form": "Nobel Prize"}, {"URI": "http://dbpedia.org/resource/Literature", "surface form": "literature"}], "relations": [{"URI": "http://dbpedia.org/ontology/writer", "surface form": "writers"}, {"URI": "http://dbpedia.org/ontology/award", "surface form": "won"}]}, {"id": "167", "question": [{"language": "en", "string": "What is the official color of the University of Oxford?"}], "query": {"sparql": "SELECT DISTINCT ?string WHERE { <http://dbpedia.org/resource/University_of_Oxford> <http://dbpedia.org/ontology/officialSchoolColour> ?string }"}, "answers": {"string": {"type": "literal", "value": ""}}, "entities": [{"URI": "http://dbpedia.org/resource/University_of_Oxford", "surface form": "University of Oxford"}], "relations": [{"URI": "http://dbpedia.org/ontology/incumbent", "surface form": "official color"}]}, {"id": "279", "question": [{"language": "en", "string": "Give me all Swedish oceanographers."}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { ?uri dbo:field res:Oceanography ; dbo:birthPlace res:Sweden }"}, "entities": [{"URI": "http://dbpedia.org/resource/Sweden", "surface form": "Swedish oceanographers"}, {"URI": "http://dbpedia.org/resource/Swedish", "surface form": "Swedish oceanographers"}], "relations": [{"URI": "http://dbpedia.org/ontology/country", "surface form": ""}, {"URI": "http://dbpedia.org/ontology/country", "surface form": ""}]}, {"id": "168", "question": [{"language": "en", "string": "How deep is Lake Placid?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> SELECT DISTINCT ?n WHERE { <http://dbpedia.org/resource/Lake_Placid_(Texas)> dbo:maximumDepth ?n }"}, "answers": {"n": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#double", "value": "12.192"}}, "entities": [{"URI": "http://dbpedia.org/resource/Lake_Placid", "surface form": "Lake Placid"}], "relations": [{"URI": "http://dbpedia.org/ontology/capital", "surface form": "deep"}]}, {"id": "281", "question": [{"language": "en", "string": "Is James Bond married?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> ASK WHERE { res:James_Bond dbo:spouse ?uri }"}, "entities": [{"URI": "http://dbpedia.org/resource/James_Bond", "surface form": "James Bond"}], "relations": [{"URI": "http://dbpedia.org/ontology/spouse", "surface form": "married"}]}, {"id": "169", "question": [{"language": "en", "string": "Which spaceflights were launched from Baikonur?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/launchPad> res:Baikonur_Cosmodrome }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Salyut_1"}}, "entities": [{"URI": "http://dbpedia.org/resource/Baikonur_Cosmodrome_Site_110", "surface form": "Baikonur"}], "relations": [{"URI": "http://dbpedia.org/ontology/countryWithFirstSpaceflight", "surface form": "spaceflights"}, {"URI": "http://dbpedia.org/ontology/totalLaunches", "surface form": "launched"}]}, {"id": "283", "question": [{"language": "en", "string": "Give me all actors called Baldwin."}], "query": {"sparql": "PREFIX foaf:<http://xmlns.com/foaf/0.1/> SELECT DISTINCT ?uri WHERE { ?uri foaf:surname 'Baldwin'@en . { ?uri <http://dbpedia.org/ontology/occupation> <http://dbpedia.org/resource/Actor> . } UNION { ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Actor> . } }"}, "entities": [{"URI": "http://dbpedia.org/resource/Baldwin", "surface form": "Baldwin"}], "relations": [{"URI": "http://dbpedia.org/ontology/background", "surface form": "actors"}, {"URI": "http://dbpedia.org/property/nickname", "surface form": "called"}]}, {"id": "284", "question": [{"language": "en", "string": "What does CPU stand for?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/>PREFIX res: <http://dbpedia.org/resource/>SELECT DISTINCT ?uriWHERE {        ?uri dbo:abbreviation \"CPU\"@en .} "}, "entities": [{"URI": "http://dbpedia.org/resource/Central_processing_unit", "surface form": "CPU"}], "relations": [{"URI": "http://dbpedia.org/ontology/position", "surface form": "stand"}]}, {"id": "170", "question": [{"language": "en", "string": "Give me all cosmonauts."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Astronaut> { ?uri <http://dbpedia.org/ontology/nationality> <http://dbpedia.org/resource/Russia> } UNION { ?uri <http://dbpedia.org/ontology/nationality> <http://dbpedia.org/resource/Soviet_Union> } }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Valery_Kubasov"}}, "entities": [{"URI": "http://dbpedia.org/resource/Cosmonauts_Alley", "surface form": "Cosmonauts"}], "relations": []}, {"id": "286", "question": [{"language": "en", "string": "Who was John F. Kennedy's vice president?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:John_F._Kennedy dbo:vicePresident ?uri }"}, "entities": [{"URI": "http://dbpedia.org/resource/John_F._Kennedy", "surface form": "John F. Kennedy"}], "relations": [{"URI": "http://dbpedia.org/ontology/vicePresident", "surface form": "vice president"}]}, {"id": "171", "question": [{"language": "en", "string": "Give me a list of all bandleaders that play trumpet."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/occupation> <http://dbpedia.org/resource/Bandleader> ; <http://dbpedia.org/ontology/instrument> <http://dbpedia.org/resource/Trumpet> }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Danny_Davis_(country_musician)"}}, "entities": [{"URI": "http://dbpedia.org/resource/Geraldo_(bandleader)", "surface form": "bandleaders"}], "relations": [{"URI": "http://dbpedia.org/ontology/starring", "surface form": "play"}, {"URI": "http://dbpedia.org/ontology/head", "surface form": "trumpet"}]}, {"id": "172", "question": [{"language": "en", "string": "Which countries have more than ten caves?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Country> . ?cave a <http://dbpedia.org/ontology/Cave> { ?cave <http://dbpedia.org/ontology/location> ?uri } UNION { ?cave <http://dbpedia.org/ontology/location> ?loc . ?loc <http://dbpedia.org/ontology/country> ?uri } } GROUP BY ?uri HAVING ( COUNT(?cave) > 10 )"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jamaica"}}, "entities": [{"URI": "http://dbpedia.org/resource/Countries_of_the_United_Kingdom", "surface form": "countries"}, {"URI": "http://dbpedia.org/resource/Caves_of_Aggtelek_Karst_and_Slovak_Karst", "surface form": "caves"}], "relations": []}, {"id": "173", "question": [{"language": "en", "string": "Give me all world heritage sites designated within the past two years."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/WorldHeritageSite> . { ?uri <http://dbpedia.org/property/year> '2013'^^xsd:integer . } UNION { ?uri <http://dbpedia.org/property/year> '2014'^^xsd:integer . } }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Descent_of_the_Holy_Spirit_Church"}}, "entities": [], "relations": [{"URI": "http://dbpedia.org/ontology/fate", "surface form": "heritage sites"}, {"URI": "http://dbpedia.org/ontology/class", "surface form": "designated"}]}, {"id": "290", "question": [{"language": "en", "string": "Does Breaking Bad have more episodes than Game of Thrones?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> ASK WHERE { res:Breaking_Bad dbo:numberOfEpisodes ?x . res:Game_of_Thrones dbo:numberOfEpisodes ?y FILTER ( ?y > ?x ) }"}, "entities": [{"URI": "http://dbpedia.org/resource/Breaking_Bad", "surface form": "Breaking Bad"}, {"URI": "http://dbpedia.org/resource/Game_of_Thrones", "surface form": "Game of Thrones"}], "relations": [{"URI": "http://dbpedia.org/ontology/episodeNumber", "surface form": "episodes"}]}, {"id": "174", "question": [{"language": "en", "string": "How many languages are spoken in Turkmenistan?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT (COUNT(DISTINCT ?x) AS ?c) WHERE { res:Turkmenistan dbo:language ?x }"}, "answers": {"c": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "0"}}, "entities": [{"URI": "http://dbpedia.org/resource/Turkmenistan", "surface form": "Turkmenistan"}], "relations": [{"URI": "http://dbpedia.org/ontology/language", "surface form": "languages"}, {"URI": "http://dbpedia.org/ontology/spokenIn", "surface form": "spoken"}]}, {"id": "175", "question": [{"language": "en", "string": "Give me all actors starring in movies directed by William Shatner."}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { ?x dbo:director res:William_Shatner ; dbo:starring ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/DeForest_Kelley"}}, "entities": [{"URI": "http://dbpedia.org/resource/William_Shatner", "surface form": "William Shatner"}], "relations": [{"URI": "http://dbpedia.org/ontology/artist", "surface form": "actors"}, {"URI": "http://dbpedia.org/ontology/starring", "surface form": "starring"}, {"URI": "http://dbpedia.org/ontology/film", "surface form": "movies"}, {"URI": "http://dbpedia.org/property/directedby", "surface form": "directed"}]}, {"id": "293", "question": [{"language": "en", "string": "Are tree frogs a type of amphibian?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> ASK WHERE { res:Hylidae dbo:class res:Amphibian }"}, "entities": [{"URI": "http://dbpedia.org/resource/Amphibian", "surface form": "amphibian"}], "relations": [{"URI": "http://dbpedia.org/ontology/family", "surface form": "tree"}, {"URI": "http://dbpedia.org/property/gross", "surface form": "frogs"}, {"URI": "http://dbpedia.org/ontology/type", "surface form": "type"}]}, {"id": "176", "question": [{"language": "en", "string": "Give me all Methodist politicians."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Politician> ; <http://dbpedia.org/ontology/religion> <http://dbpedia.org/resource/Methodism> }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bourke_B._Hickenlooper"}}, "entities": [{"URI": "http://dbpedia.org/resource/Chicago_Politicians", "surface form": "Methodist politicians"}], "relations": []}, {"id": "177", "question": [{"language": "en", "string": "How often did Jane Fonda marry?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT (COUNT(DISTINCT ?uri) AS ?c) WHERE { res:Jane_Fonda dbo:spouse ?uri }"}, "answers": {"c": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "3"}}, "entities": [{"URI": "http://dbpedia.org/resource/Jane_Fonda", "surface form": "Jane Fonda"}], "relations": [{"URI": "http://dbpedia.org/ontology/spouse", "surface form": "marry"}]}, {"id": "296", "question": [{"language": "en", "string": "Which professional surfers were born in Australia?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { { ?uri dbo:occupation res:Surfer ; dbo:birthPlace res:Australia } UNION { ?uri dbo:occupation res:Surfer ; dbo:birthPlace ?place . ?place dbo:country res:Australia } }"}, "entities": [{"URI": "http://dbpedia.org/resource/Australia", "surface form": "Australia"}], "relations": [{"URI": "http://dbpedia.org/ontology/specialist", "surface form": "professional surfers"}, {"URI": "http://dbpedia.org/ontology/birthPlace", "surface form": "born"}]}, {"id": "178", "question": [{"language": "en", "string": "Give me all islands that belong to Japan."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Island> ; <http://dbpedia.org/ontology/country> <http://dbpedia.org/resource/Japan> }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Amami_Islands"}}, "entities": [{"URI": "http://dbpedia.org/resource/Japan", "surface form": "Japan"}], "relations": [{"URI": "http://dbpedia.org/ontology/numberOfIslands", "surface form": "islands"}, {"URI": "http://dbpedia.org/ontology/date", "surface form": "belong"}]}, {"id": "179", "question": [{"language": "en", "string": "Give me all Apollo 14 astronauts."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/mission> <http://dbpedia.org/resource/Apollo_14> }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alan_Shepard"}}, "entities": [{"URI": "http://dbpedia.org/resource/Apollo_14", "surface form": "Apollo 14 astronauts"}], "relations": []}, {"id": "180", "question": [{"language": "en", "string": "Which U.S. states are in the same time zone as Utah?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Utah> <http://dbpedia.org/property/timezone> ?x . ?uri a <http://dbpedia.org/class/yago/WikicatStatesOfTheUnitedStates> ; <http://dbpedia.org/property/timezone> ?x FILTER ( ?uri != <http://dbpedia.org/resource/Utah> ) }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Montana"}}, "entities": [{"URI": "http://dbpedia.org/resource/Usk,_Washington", "surface form": "US"}, {"URI": "http://dbpedia.org/resource/Utah", "surface form": "Utah"}], "relations": [{"URI": "http://dbpedia.org/property/timezone", "surface form": "time zone"}]}, {"id": "181", "question": [{"language": "en", "string": "Give me all Danish films."}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Film ; dbo:country res:Denmark }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/De_Udstillede"}}, "entities": [{"URI": "http://dbpedia.org/resource/Denmark", "surface form": "Danish films"}, {"URI": "http://dbpedia.org/resource/List_of_Danish_films", "surface form": "Danish films"}], "relations": [{"URI": "http://dbpedia.org/ontology/country", "surface form": ""}]}, {"id": "301", "question": [{"language": "en", "string": "Which instruments does Cat Stevens play?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Cat_Stevens> <http://dbpedia.org/ontology/instrument> ?uri }"}, "entities": [{"URI": "http://dbpedia.org/resource/Cat_Stevens", "surface form": "Cat Stevens"}], "relations": [{"URI": "http://dbpedia.org/property/instrument", "surface form": "instruments"}, {"URI": "http://dbpedia.org/ontology/starring", "surface form": "play"}]}, {"id": "182", "question": [{"language": "en", "string": "Which Chess players died in the same place they were born in?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/ChessPlayer> ; <http://dbpedia.org/ontology/birthPlace> ?x ; <http://dbpedia.org/ontology/deathPlace> ?y FILTER ( ?x = ?y ) }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bertus_Enklaar"}}, "entities": [{"URI": "http://dbpedia.org/resource/The_Chess_Players_(film)", "surface form": "Chess players"}], "relations": [{"URI": "http://dbpedia.org/ontology/deathDate", "surface form": "died"}, {"URI": "http://dbpedia.org/ontology/place", "surface form": "place"}, {"URI": "http://dbpedia.org/ontology/birthPlace", "surface form": "born"}]}, {"id": "303", "question": [{"language": "en", "string": "Was Marc Chagall a jew?"}], "query": {"sparql": "ASK WHERE { <http://dbpedia.org/resource/Marc_Chagall> <http://dbpedia.org/property/ethnicity> \"Jewish\"@en }"}, "entities": [{"URI": "http://dbpedia.org/resource/Marc_Chagall", "surface form": "Marc Chagall"}], "relations": [{"URI": "http://dbpedia.org/ontology/outflow", "surface form": "jew"}]}, {"id": "304", "question": [{"language": "en", "string": "Give me all B-sides of the Ramones."}], "query": {"sparql": "SELECT DISTINCT ?string WHERE { ?x <http://dbpedia.org/ontology/musicalArtist> <http://dbpedia.org/resource/Ramones> ; <http://dbpedia.org/ontology/bSide> ?string }"}, "entities": [{"URI": "http://dbpedia.org/resource/The_B-Sides", "surface form": "B-sides of the Ramones"}], "relations": []}, {"id": "305", "question": [{"language": "en", "string": "Give me all communist countries."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {  ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Country> . ?uri <http://dbpedia.org/property/ideology> <http://dbpedia.org/resource/Communism> . }"}, "entities": [{"URI": "http://dbpedia.org/resource/Post-communist_countries", "surface form": "communist countries"}], "relations": []}, {"id": "306", "question": [{"language": "en", "string": "Which U.S. state has the highest population density?"}], "query": {"sparql": "SELECT ?uri WHERE { ?uri <http://dbpedia.org/ontology/country> <http://dbpedia.org/resource/United_States> . ?uri <http://dbpedia.org/ontology/capital> ?capital . ?uri <http://dbpedia.org/property/densityrank> ?density . OPTIONAL {?uri <http://www.w3.org/2000/01/rdf-schema#label> ?string. FILTER (lang(?string) = 'en') } } ORDER BY ASC(?density) LIMIT 1"}, "entities": [{"URI": "http://dbpedia.org/resource/United_States", "surface form": "US"}, {"URI": "http://dbpedia.org/resource/Population_density", "surface form": "highest population density"}], "relations": []}, {"id": "183", "question": [{"language": "en", "string": "Which countries adopted the Euro?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Country> { ?uri <http://dbpedia.org/ontology/currency> <http://dbpedia.org/resource/Euro> } UNION { ?uri <http://dbpedia.org/property/currencyCode> \"EUR\"@en } }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Andorra"}}, "entities": [{"URI": "http://dbpedia.org/resource/Countries_of_the_United_Kingdom", "surface form": "countries"}, {"URI": "http://dbpedia.org/resource/Euro", "surface form": "Euro"}], "relations": []}, {"id": "308", "question": [{"language": "en", "string": "Which monarchs were married to a German?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Monarch ; dbo:spouse ?spouse { ?spouse dbo:birthPlace res:Germany } UNION { ?spouse dbo:birthPlace ?p . ?p dbo:country res:Germany } }"}, "entities": [{"URI": "http://dbpedia.org/resource/Germany", "surface form": "German"}, {"URI": "http://dbpedia.org/resource/German", "surface form": "German"}], "relations": [{"URI": "http://dbpedia.org/ontology/leader", "surface form": "monarchs"}, {"URI": "http://dbpedia.org/ontology/spouse", "surface form": "married"}, {"URI": "http://dbpedia.org/ontology/country", "surface form": ""}, {"URI": "http://dbpedia.org/ontology/country", "surface form": ""}]}, {"id": "184", "question": [{"language": "en", "string": "What is the official language of Suriname?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Suriname dbo:officialLanguage ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Surinamese_Dutch"}}, "entities": [{"URI": "http://dbpedia.org/resource/Suriname", "surface form": "Suriname"}], "relations": [{"URI": "http://dbpedia.org/ontology/officialLanguage", "surface form": "official language"}]}, {"id": "310", "question": [{"language": "en", "string": "Who is the mayor of Tel Aviv?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Tel_Aviv dbo:leaderName ?uri }"}, "entities": [{"URI": "http://dbpedia.org/resource/Tel_Aviv", "surface form": "Tel Aviv"}], "relations": [{"URI": "http://dbpedia.org/ontology/mayor", "surface form": "mayor"}]}, {"id": "185", "question": [{"language": "en", "string": "What is the highest place of the Urals?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Ural_Mountains> <http://dbpedia.org/property/highest> ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mount_Narodnaya"}}, "entities": [{"URI": "http://dbpedia.org/resource/Urals_Mussorgsky_State_Conservatoire", "surface form": "Urals"}], "relations": [{"URI": "http://dbpedia.org/ontology/highestPlace", "surface form": "highest place"}]}, {"id": "312", "question": [{"language": "en", "string": "Who is the editor of Forbes?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Forbes dbo:editor ?uri }"}, "entities": [{"URI": "http://dbpedia.org/resource/Forbes", "surface form": "Forbes"}], "relations": [{"URI": "http://dbpedia.org/ontology/editor", "surface form": "editor"}]}, {"id": "186", "question": [{"language": "en", "string": "How many countries are there in Europe?"}], "query": {"sparql": "SELECT (COUNT(DISTINCT ?uri) as ?c) WHERE {  ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/class/yago/EuropeanCountries> . } "}, "answers": {"c": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "0"}}, "entities": [{"URI": "http://dbpedia.org/resource/Countries_of_the_United_Kingdom", "surface form": "countries"}, {"URI": "http://dbpedia.org/resource/Europe", "surface form": "Europe"}], "relations": []}, {"id": "187", "question": [{"language": "en", "string": "Give me all libraries established earlier than 1400."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Library> ; <http://dbpedia.org/property/established> ?year FILTER ( ?year < 1400 ) }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Library_of_Pergamum"}}, "entities": [{"URI": "http://dbpedia.org/resource/Libraries_in_Brighton_and_Hove", "surface form": "libraries"}, {"URI": "http://dbpedia.org/resource/1400", "surface form": "1400"}], "relations": [{"URI": "http://dbpedia.org/ontology/established", "surface form": "established"}, {"URI": "http://dbpedia.org/ontology/date", "surface form": "when"}]}, {"id": "188", "question": [{"language": "en", "string": "Give me all federal chancellors of Germany."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Person> { ?uri <http://dbpedia.org/ontology/office> \"Chancellor of Germany\" } UNION { ?uri <http://dbpedia.org/property/office> <http://dbpedia.org/resource/Chancellor_of_Germany> } }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Franz_von_Papen"}}, "entities": [{"URI": "http://dbpedia.org/resource/Germany", "surface form": "Germany"}], "relations": [{"URI": "http://dbpedia.org/ontology/federalState", "surface form": "federal chancellors"}]}, {"id": "316", "question": [{"language": "en", "string": "List all episodes of the first season of the HBO television series The Sopranos."}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { ?uri dbo:series res:The_Sopranos ; dbo:seasonNumber 1 }"}, "entities": [{"URI": "http://dbpedia.org/resource/HBO", "surface form": "HBO"}, {"URI": "http://dbpedia.org/resource/The_Sopranos_(episode)", "surface form": "television series The Sopranos"}], "relations": [{"URI": "http://dbpedia.org/ontology/episodeNumber", "surface form": "episodes"}, {"URI": "http://dbpedia.org/ontology/seasonNumber", "surface form": "season"}]}, {"id": "317", "question": [{"language": "en", "string": "Which companies work in the aerospace industry as well as in medicine?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { ?uri a dbo:Company ; dbo:industry dbr:Aerospace ; dbo:industry dbr:Medical }"}, "entities": [{"URI": "http://dbpedia.org/resource/Companies_listed_on_the_New_York_Stock_Exchange_(J)", "surface form": "companies"}, {"URI": "http://dbpedia.org/resource/Medicine", "surface form": "medicine"}], "relations": [{"URI": "http://dbpedia.org/ontology/service", "surface form": "work"}, {"URI": "http://dbpedia.org/property/industry", "surface form": "aerospace industry"}]}, {"id": "318", "question": [{"language": "en", "string": "Is Christian Bale starring in Velvet Goldmine?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> ASK WHERE { res:Velvet_Goldmine dbo:starring res:Christian_Bale }"}, "entities": [{"URI": "http://dbpedia.org/resource/Christian_Bale", "surface form": "Christian Bale"}, {"URI": "http://dbpedia.org/resource/Velvet_Goldmine", "surface form": "Velvet Goldmine"}], "relations": [{"URI": "http://dbpedia.org/ontology/starring", "surface form": "starring"}]}, {"id": "189", "question": [{"language": "en", "string": "How many Aldi stores are there?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?number WHERE { res:Aldi dbo:numberOfLocations ?number }"}, "answers": {"number": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#nonNegativeInteger", "value": "11235"}}, "entities": [{"URI": "http://dbpedia.org/resource/Aldi", "surface form": "Aldi stores"}], "relations": []}, {"id": "320", "question": [{"language": "en", "string": "Who was the first president of the United States?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/>PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>SELECT DISTINCT ?uriWHERE {         ?uri rdf:type dbo:Person .         ?uri dbo:office '1st President of the United States'@en .}"}, "entities": [{"URI": "http://dbpedia.org/resource/United_States", "surface form": "United States"}], "relations": [{"URI": "http://dbpedia.org/ontology/president", "surface form": "president"}]}, {"id": "190", "question": [{"language": "en", "string": "Give me all female given names."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {  ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/GivenName> .  ?uri <http://dbpedia.org/ontology/gender> <http://dbpedia.org/resource/Female> . } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Amy"}}, "entities": [], "relations": [{"URI": "http://dbpedia.org/ontology/championInSingleFemale", "surface form": "female"}, {"URI": "http://dbpedia.org/ontology/athletics", "surface form": "names"}]}, {"id": "191", "question": [{"language": "en", "string": "Who wrote the book The Pillars of the Earth?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:The_Pillars_of_the_Earth dbo:author ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ken_Follett"}}, "entities": [{"URI": "http://dbpedia.org/resource/The_Pillars_of_the_Earth", "surface form": "The Pillars of the Earth"}], "relations": [{"URI": "http://dbpedia.org/ontology/author", "surface form": "wrote"}]}, {"id": "192", "question": [{"language": "en", "string": "In which U.S. state is Mount McKinley located?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Mount_McKinley> dbo:wikiPageRedirects ?x . ?x <http://dbpedia.org/ontology/locatedInArea> ?uri. ?uri rdf:type yago:WikicatStatesOfTheUnitedStates }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alaska"}}, "entities": [{"URI": "http://dbpedia.org/resource/United_States", "surface form": "US"}, {"URI": "http://dbpedia.org/resource/Denali", "surface form": "Mount McKinley"}], "relations": [{"URI": "http://dbpedia.org/ontology/locatedInArea", "surface form": "located"}]}, {"id": "193", "question": [{"language": "en", "string": "Which organizations were founded in 1930?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Organisation> { ?uri <http://dbpedia.org/ontology/formationYear> ?date } UNION { ?uri <http://dbpedia.org/ontology/foundingYear> ?date } FILTER regex(?date, \"^1930\") }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/American_Popular_Revolutionary_Alliance"}}, "entities": [{"URI": "http://dbpedia.org/resource/1930", "surface form": "1930"}], "relations": [{"URI": "http://dbpedia.org/ontology/company", "surface form": "organizations"}, {"URI": "http://dbpedia.org/ontology/foundingYear", "surface form": "founded"}]}, {"id": "194", "question": [{"language": "en", "string": "Give me all ESA astronauts."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Astronaut> ; <http://dbpedia.org/property/type> <http://dbpedia.org/resource/European_Space_Agency> }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dirk_Frimout"}}, "entities": [{"URI": "http://dbpedia.org/resource/European_Free_Trade_Association_Surveillance_Authority", "surface form": "ESA"}], "relations": [{"URI": "http://dbpedia.org/ontology/countryWithFirstAstronaut", "surface form": "astronauts"}]}, {"id": "195", "question": [{"language": "en", "string": "Give me all Swedish holidays."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Holiday> ; <http://dbpedia.org/ontology/country> <http://dbpedia.org/resource/Sweden> }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Saint_Knut's_Day"}}, "entities": [{"URI": "http://dbpedia.org/resource/Sweden", "surface form": "Swedish holidays"}, {"URI": "http://dbpedia.org/resource/Swedish", "surface form": "Swedish holidays"}], "relations": [{"URI": "http://dbpedia.org/ontology/country", "surface form": ""}, {"URI": "http://dbpedia.org/ontology/country", "surface form": ""}]}, {"id": "196", "question": [{"language": "en", "string": "Who is the youngest Pulitzer Prize winner?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {  ?uri <http://dbpedia.org/ontology/award> <http://dbpedia.org/resource/Pulitzer_Prize> .  ?uri <http://dbpedia.org/ontology/birthDate> ?d . } ORDER BY DESC(?d) OFFSET 0 LIMIT 1 "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mohammad_Ponir_Hossain"}}, "entities": [{"URI": "http://dbpedia.org/resource/Pulitzer-Prize", "surface form": "Pulitzer Prize winner"}], "relations": []}, {"id": "197", "question": [{"language": "en", "string": "Which animals are critically endangered?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Animal> ; <http://dbpedia.org/ontology/conservationStatus> \"CR\" }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Africallagma_cuneistigma"}}}, {"id": "198", "question": [{"language": "en", "string": "Which soccer players were born on Malta?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/SoccerPlayer> ; <http://dbpedia.org/ontology/birthPlace> <http://dbpedia.org/resource/Malta> }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Andrei_Agius"}}}, {"id": "330", "question": [{"language": "en", "string": "Did Arnold Schwarzenegger attend a university?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> ASK WHERE { res:Arnold_Schwarzenegger dbo:almaMater ?x . ?x rdf:type dbo:University }"}}, {"id": "199", "question": [{"language": "en", "string": "Which programming languages were influenced by Perl?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/ProgrammingLanguage> { ?uri <http://dbpedia.org/ontology/influencedBy> <http://dbpedia.org/resource/Perl> } UNION { <http://dbpedia.org/resource/Perl> <http://dbpedia.org/ontology/influenced> ?uri } }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/BeanShell"}}}, {"id": "332", "question": [{"language": "en", "string": "Is Barack Obama a democrat?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> ASK WHERE { res:Barack_Obama dbo:party <http://dbpedia.org/resource/Democratic_Party_(United_States)> }"}}, {"id": "200", "question": [{"language": "en", "string": "How many children does Eddie Murphy have?"}], "query": {"sparql": "SELECT DISTINCT ?n WHERE { <http://dbpedia.org/resource/Eddie_Murphy> <http://dbpedia.org/property/children> ?n }"}, "answers": {"n": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "10"}}}, {"id": "334", "question": [{"language": "en", "string": "Who is the oldest child of Meryl Streep?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Meryl_Streep dbo:child ?uri . ?uri dbo:birthDate ?d } ORDER BY ASC(?d) OFFSET 0 LIMIT 1"}}, {"id": "335", "question": [{"language": "en", "string": "Who killed John Lennon?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Person> ; <http://dbpedia.org/property/conviction> <http://dbpedia.org/resource/Death_of_John_Lennon> }"}}, {"id": "201", "question": [{"language": "en", "string": "Which frequent flyer program has the most airlines?"}], "query": {"sparql": "SELECT ?uri WHERE { ?airline <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Airline> . ?airline <http://dbpedia.org/property/frequentFlyer> ?uri. } GROUP BY ?uri ORDER BY DESC(COUNT(DISTINCT ?airline)) OFFSET 0 LIMIT 1"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Miles_&_More"}}, "entities": [{"URI": "http://dbpedia.org/resource/Frequent-flyer_program", "surface form": "frequent flyer program"}], "relations": [{"URI": "http://dbpedia.org/ontology/icaoAirlineCode", "surface form": "airlines"}]}, {"id": "202", "question": [{"language": "en", "string": "In which city is Air China headquartered?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {  <http://dbpedia.org/resource/Air_China> <http://dbpedia.org/ontology/headquarter> ?uri .  ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/class/yago/City108524735> . } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Beijing"}}}, {"id": "203", "question": [{"language": "en", "string": "Which artists were born on the same date as Rachel Stevens?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { ?uri a dbo:Artist . dbr:Rachel_Stevens dbo:birthDate ?birthdate . ?uri dbo:birthDate ?birthdate }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vesna_Pisarovi\u0107"}}}, {"id": "204", "question": [{"language": "en", "string": "How many scientists graduated from an Ivy League university?"}], "query": {"sparql": "SELECT (COUNT(DISTINCT ?uri) AS ?c) WHERE { ?uri a <http://dbpedia.org/ontology/Scientist> ; <http://dbpedia.org/ontology/almaMater> ?university . ?university <http://dbpedia.org/ontology/affiliation> <http://dbpedia.org/resource/Ivy_League> ; a <http://dbpedia.org/ontology/University> }"}, "answers": {"c": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "0"}}}, {"id": "205", "question": [{"language": "en", "string": "Which types of grapes grow in Oregon?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Oregon_wine dbo:growingGrape ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dolcetto"}}}, {"id": "206", "question": [{"language": "en", "string": "Who is starring in Spanish movies produced by Benicio del Toro?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?film rdf:type dbo:Film ; dbo:country res:Spain ; dbo:producer res:Benicio_del_Toro ; dbo:starring ?uri . ?uri rdf:type dbo:Person }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Benicio_del_Toro"}}}, {"id": "342", "question": [{"language": "en", "string": "Who is the manager of Real Madrid?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Real_Madrid_C.F.> <http://dbpedia.org/ontology/manager> ?uri }"}}, {"id": "207", "question": [{"language": "en", "string": "Give me the currency of China."}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:China dbo:currency ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Renminbi"}}}, {"id": "208", "question": [{"language": "en", "string": "Which movies starring Brad Pitt were directed by Guy Ritchie?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Film ; dbo:starring res:Brad_Pitt ; dbo:director res:Guy_Ritchie }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Snatch_(film)__Snatch__1"}}}, {"id": "209", "question": [{"language": "en", "string": "How many companies were founded by the founder of Facebook?"}], "query": {"sparql": "SELECT (COUNT(DISTINCT ?x) AS ?c) WHERE { <http://dbpedia.org/resource/Facebook> <http://dbpedia.org/ontology/foundedBy> ?uri . ?x <http://dbpedia.org/ontology/foundedBy> ?uri }"}, "answers": {"c": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "0"}}}, {"id": "210", "question": [{"language": "en", "string": "How many companies were founded in the same year as Google?"}], "query": {"sparql": "SELECT (COUNT(DISTINCT ?uri) as ?c) WHERE {  ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Company> .  ?uri <http://dbpedia.org/ontology/foundingYear> ?year .  <http://dbpedia.org/resource/Google> <http://dbpedia.org/ontology/foundingYear> ?year . } "}, "answers": {"c": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "1343"}}, "entities": [{"URI": "http://dbpedia.org/resource/Companies_listed_on_the_New_York_Stock_Exchange_(J)", "surface form": "companies"}, {"URI": "http://dbpedia.org/resource/Google", "surface form": "Google"}], "relations": [{"URI": "http://dbpedia.org/ontology/foundingYear", "surface form": "founded"}]}, {"id": "347", "question": [{"language": "en", "string": "Which subsidiary of Lufthansa serves both Dortmund and Berlin Tegel?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Lufthansa dbo:subsidiary ?uri . ?uri dbo:targetAirport res:Dortmund_Airport ; dbo:targetAirport res:Berlin_Tegel_Airport }"}}, {"id": "211", "question": [{"language": "en", "string": "How many airlines are members of the Star Alliance?"}], "query": {"sparql": "SELECT (COUNT(DISTINCT ?uri) AS ?c) WHERE { ?uri a <http://dbpedia.org/ontology/Airline> ; <http://dbpedia.org/ontology/alliance> <http://dbpedia.org/resource/Star_Alliance> }"}, "answers": {"c": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "107"}}}, {"id": "212", "question": [{"language": "en", "string": "Give me all spacecrafts that flew to Mars."}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbc: <http://dbpedia.org/resource/Category:> PREFIX dct: <http://purl.org/dc/terms/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?s WHERE { ?s dct:subject dbc:Mars_rovers ; rdf:type ?type FILTER ( ?type IN (dbo:Satellite, dbo:ArtificialSatellite) ) }"}, "answers": {"s": {"type": "uri", "value": "http://dbpedia.org/resource/Mars_2"}}, "entities": [{"URI": "http://dbpedia.org/resource/Spacecraft", "surface form": "spacecrafts"}, {"URI": "http://dbpedia.org/resource/Mars", "surface form": "Mars"}], "relations": [{"URI": "http://dbpedia.org/ontology/circulation", "surface form": "flew"}]}, {"id": "213", "question": [{"language": "en", "string": "Which musician wrote the most books?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/occupation> <http://dbpedia.org/resource/Musician> . ?x <http://dbpedia.org/ontology/author> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Book> . } ORDER BY DESC(COUNT(?x)) OFFSET 0 LIMIT 1"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Julius_Lester"}}}, {"id": "214", "question": [{"language": "en", "string": "Show me everyone who was born on Halloween."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Person> { ?uri <http://dbpedia.org/ontology/birthDate> ?date } UNION { ?uri <http://dbpedia.org/property/birthDate> ?date } <http://dbpedia.org/resource/Halloween> <http://dbpedia.org/property/date> ?date }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mathias_Braschler_and_Monika_Fischer"}}, "entities": [{"URI": "http://dbpedia.org/resource/Halloween", "surface form": "Halloween"}], "relations": [{"URI": "http://dbpedia.org/ontology/show", "surface form": "show"}, {"URI": "http://dbpedia.org/ontology/birthPlace", "surface form": "born"}]}, {"id": "215", "question": [{"language": "en", "string": "Give me all Swiss non-profit organizations."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/type> <http://dbpedia.org/resource/Nonprofit_organization> { ?uri <http://dbpedia.org/ontology/location> <http://dbpedia.org/resource/Switzerland> } UNION { ?uri <http://dbpedia.org/ontology/location> ?x . ?x <http://dbpedia.org/ontology/country> <http://dbpedia.org/resource/Switzerland> } }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Aiducation"}}}, {"id": "216", "question": [{"language": "en", "string": "In which country is Mecca located?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Mecca dbo:country ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Saudi_Arabia"}}}, {"id": "217", "question": [{"language": "en", "string": "What is the net income of Apple?"}], "query": {"sparql": "SELECT DISTINCT ?ni WHERE { <http://dbpedia.org/resource/Apple_Inc.> <http://dbpedia.org/ontology/netIncome> ?ni }"}, "answers": {"ni": {"type": "typed-literal", "datatype": "http://dbpedia.org/datatype/usDollar", "value": "9.468E10"}}}, {"id": "218", "question": [{"language": "en", "string": "What does the abbreviation FIFA stand for?"}], "query": {"sparql": "SELECT DISTINCT ?name WHERE {  <http://dbpedia.org/resource/FIFA> <http://dbpedia.org/property/name> ?name . } "}, "answers": {"name": {"type": "literal", "xml:lang": "en", "value": "F\u00e9d\u00e9ration internationale de Football Association"}}}, {"id": "356", "question": [{"language": "en", "string": "When did the Ming dynasty dissolve?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?date WHERE { res:Ming_dynasty dbo:dissolutionDate ?date }"}, "entities": [{"URI": "http://dbpedia.org/resource/Ming_dynasty", "surface form": "Ming dynasty dissolve"}], "relations": [{"URI": "http://dbpedia.org/ontology/date", "surface form": "when"}]}, {"id": "219", "question": [{"language": "en", "string": "Which museum in New York has the most visitors?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Museum ; dbo:location res:New_York_City ; dbo:numberOfVisitors ?num } ORDER BY DESC(?num) OFFSET 0 LIMIT 1"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/American_Museum_of_Natural_History"}}}, {"id": "358", "question": [{"language": "en", "string": "Is Lake Baikal bigger than the Great Bear Lake?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> ASK WHERE { res:Lake_Baikal dbo:areaTotal ?a1 . res:Great_Bear_Lake dbo:areaTotal ?a2 FILTER ( ?a1 > ?a2 ) }"}}, {"id": "359", "question": [{"language": "en", "string": "Desserts from which country contain fish?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {  ?x <http://dbpedia.org/ontology/type> <http://dbpedia.org/resource/Dessert> .  ?x <http://dbpedia.org/ontology/origin> ?uri .  ?x <http://dbpedia.org/ontology/ingredient> <http://dbpedia.org/resource/Fish> . } "}}, {"id": "220", "question": [{"language": "en", "string": "What is the highest mountain in Italy?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Mountain ; dbo:locatedInArea res:Italy ; dbo:elevation ?num } ORDER BY DESC(?num) OFFSET 0 LIMIT 1"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mont_Blanc"}}, "entities": [{"URI": "http://dbpedia.org/resource/Italy", "surface form": "Italy"}], "relations": [{"URI": "http://dbpedia.org/ontology/elevation", "surface form": "highest mountain"}]}, {"id": "221", "question": [{"language": "en", "string": "Where did the architect of the Eiffel Tower study?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Eiffel_Tower> <http://dbpedia.org/ontology/architect> ?x . ?x <http://dbpedia.org/property/almaMater> ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/\u00c9cole_Sp\u00e9ciale_d'Architecture"}}}, {"id": "222", "question": [{"language": "en", "string": "Which Greek parties are pro-European?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/PoliticalParty> ; <http://dbpedia.org/ontology/country> <http://dbpedia.org/resource/Greece> ; <http://dbpedia.org/ontology/ideology> <http://dbpedia.org/resource/Pro-Europeanism> }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Democratic_Alignment_(2015)"}}}, {"id": "363", "question": [{"language": "en", "string": "What is the height difference between Mount Everest and K2?"}], "query": {"sparql": "SELECT DISTINCT (?h1-?h2) WHERE {  <http://dbpedia.org/resource/Mount_Everest> <http://dbpedia.org/ontology/elevation> ?h1 .  <http://dbpedia.org/resource/K2> <http://dbpedia.org/ontology/elevation> ?h2 . } "}}, {"id": "364", "question": [{"language": "en", "string": "Who is the mayor of Rotterdam?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Rotterdam dbo:leaderName ?uri }"}}, {"id": "223", "question": [{"language": "en", "string": "How high is the Yokohama Marine Tower?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?num WHERE { res:Yokohama_Marine_Tower dbo:height ?num }"}, "answers": {"num": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#double", "value": "106.07"}}}, {"id": "366", "question": [{"language": "en", "string": "Are Taiko a kind of Japanese musical instruments?"}], "query": {"sparql": "ASK WHERE {  <http://dbpedia.org/resource/Taiko> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/class/yago/JapaneseMusicalInstruments> . } "}, "entities": [{"URI": "http://dbpedia.org/resource/Taiko", "surface form": "Taiko"}, {"URI": "http://dbpedia.org/resource/Japan", "surface form": "Japanese musical instruments"}, {"URI": "http://dbpedia.org/resource/Traditional_Japanese_musical_instruments", "surface form": "Japanese musical instruments"}], "relations": [{"URI": "http://dbpedia.org/ontology/country", "surface form": ""}]}, {"id": "224", "question": [{"language": "en", "string": "How many ethnic groups live in Slovenia?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT (COUNT(DISTINCT ?uri) AS ?c) WHERE { res:Slovenia dbo:ethnicGroup ?uri }"}, "answers": {"c": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "7"}}}, {"id": "225", "question": [{"language": "en", "string": "List the seven kings of Rome."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/title> <http://dbpedia.org/resource/King_of_Rome> }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ancus_Marcius"}}}, {"id": "226", "question": [{"language": "en", "string": "Who were the parents of Queen Victoria?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Queen_Victoria dbo:parent ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Prince_Edward,_Duke_of_Kent_and_Strathearn"}}}, {"id": "227", "question": [{"language": "en", "string": "Who is the heaviest player of the Chicago Bulls?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Person> ; <http://dbpedia.org/ontology/weight> ?num { ?uri <http://dbpedia.org/property/team> <http://dbpedia.org/resource/Chicago_Bulls> } UNION { ?uri <http://dbpedia.org/property/draftTeam> <http://dbpedia.org/resource/Chicago_Bulls> } UNION { ?uri <http://dbpedia.org/ontology/draftTeam> <http://dbpedia.org/resource/Chicago_Bulls> } } ORDER BY DESC(?num) OFFSET 0 LIMIT 1"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Michael_Sweetney"}}}, {"id": "228", "question": [{"language": "en", "string": "Which volcanos in Japan erupted since 2000?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Volcano> ; <http://dbpedia.org/ontology/locatedInArea> <http://dbpedia.org/resource/Japan> ; <http://dbpedia.org/ontology/eruptionYear> ?date FILTER ( year(?date) >= 2000 ) }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mount_I\u014d_(I\u014djima)"}}}, {"id": "229", "question": [{"language": "en", "string": "Who is the tallest basketball player?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:BasketballPlayer ; dbo:height ?num } ORDER BY DESC(?num) OFFSET 0 LIMIT 1"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Edison_Reshketa"}}}, {"id": "373", "question": [{"language": "en", "string": "In which country does the Ganges start?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Ganges dbo:sourceCountry ?uri }"}}, {"id": "374", "question": [{"language": "en", "string": "Do Prince Harry and Prince William have the same parents?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> ASK WHERE { <http://dbpedia.org/resource/Prince_William,_Duke_of_Cambridge> dbo:parent ?x . res:Prince_Harry dbo:parent ?x }"}}, {"id": "230", "question": [{"language": "en", "string": "How many missions does the Soyuz programme have?"}], "query": {"sparql": "SELECT (COUNT(DISTINCT ?uri) AS ?c) WHERE { ?uri <http://dbpedia.org/property/programme> <http://dbpedia.org/resource/Soyuz_programme> }"}, "answers": {"c": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "148"}}}, {"id": "231", "question": [{"language": "en", "string": "Give me all Danish movies."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Film> ; <http://dbpedia.org/ontology/country> <http://dbpedia.org/resource/Denmark> }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/De_Udstillede"}}}, {"id": "377", "question": [{"language": "en", "string": "Is Rita Wilson the wife of Tom Hanks?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> ASK WHERE { res:Tom_Hanks dbo:spouse res:Rita_Wilson }"}}, {"id": "378", "question": [{"language": "en", "string": "Who was called Frank The Tank?"}], "query": {"sparql": "PREFIX dbp: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE {         ?uri dbp:nickname 'Frank The Tank'@en . }"}}, {"id": "232", "question": [{"language": "en", "string": "Which movies did Kurosawa direct?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT ?uri WHERE { ?uri rdf:type dbo:Film ; dbo:director res:Akira_Kurosawa }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dersu_Uzala_(1975_film)"}}}, {"id": "233", "question": [{"language": "en", "string": "Which television shows were created by John Cleese?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/TelevisionShow> ; <http://dbpedia.org/ontology/creator> <http://dbpedia.org/resource/John_Cleese> }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Monty_Python's_Fliegender_Zirkus"}}}, {"id": "234", "question": [{"language": "en", "string": "Which awards did Douglas Hofstadter win?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Douglas_Hofstadter dbo:award ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/American_Academy_of_Arts_and_Sciences"}}}, {"id": "235", "question": [{"language": "en", "string": "Who is the daughter of Robert Kennedy married to?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Robert_F._Kennedy> <http://dbpedia.org/ontology/child> ?child . ?child <http://dbpedia.org/ontology/spouse> ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Andrew_Cuomo"}}}, {"id": "236", "question": [{"language": "en", "string": "Who is the owner of Rolls-Royce?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Rolls-Royce_Motors> <http://dbpedia.org/ontology/owner> ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vickers_plc"}}}, {"id": "384", "question": [{"language": "en", "string": "Was the wife of president Lincoln called Mary?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> ASK WHERE { res:Abraham_Lincoln dbo:spouse ?spouse . ?spouse rdfs:label ?name FILTER regex(?name, \"Mary\") }"}, "entities": [{"URI": "http://dbpedia.org/resource/Abraham_Lincoln", "surface form": "Lincoln"}], "relations": [{"URI": "http://dbpedia.org/property/spouse", "surface form": "wife"}, {"URI": "http://dbpedia.org/property/nickname", "surface form": "called"}]}, {"id": "385", "question": [{"language": "en", "string": "Who was the 16th president of the United States?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/>PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>SELECT DISTINCT ?uriWHERE {         ?uri dbo:office 'President of the United States' .         ?uri dbo:orderInOffice '16th' .}"}}, {"id": "237", "question": [{"language": "en", "string": "What is the most frequent cause of death?"}], "query": {"sparql": "SELECT DISTINCT ?x WHERE { ?uri <http://dbpedia.org/ontology/deathCause> ?x . } ORDER BY DESC(COUNT(DISTINCT ?uri)) OFFSET 0 LIMIT 1"}, "answers": {"x": {"type": "uri", "value": "http://dbpedia.org/resource/Gunshot_wound"}}}, {"id": "238", "question": [{"language": "en", "string": "Which rockets were launched from Baikonur?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Rocket> ; <http://dbpedia.org/ontology/launchSite> <http://dbpedia.org/resource/Baikonur_Cosmodrome> }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Voskhod_(rocket)"}}}, {"id": "239", "question": [{"language": "en", "string": "What does IYCM stand for?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { ?uri dbo:abbreviation \"IYCM\" }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Youth_Climate_Movement"}}}, {"id": "240", "question": [{"language": "en", "string": "Which companies have more than 1 million employees?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Company> { ?uri <http://dbpedia.org/ontology/numberOfEmployees> ?n } UNION { ?uri <http://dbpedia.org/property/numEmployees> ?n } FILTER ( ?n > 1000000 ) }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Walmart"}}}, {"id": "241", "question": [{"language": "en", "string": "Give all swimmers that were born in Moscow."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Swimmer> ; <http://dbpedia.org/ontology/birthPlace> <http://dbpedia.org/resource/Moscow> }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alla_Grebennikova"}}, "entities": [{"URI": "http://dbpedia.org/resource/Swimmers_(film)", "surface form": "swimmers"}, {"URI": "http://dbpedia.org/resource/Moscow", "surface form": "Moscow"}], "relations": [{"URI": "http://dbpedia.org/ontology/birthPlace", "surface form": "born"}]}, {"id": "391", "question": [{"language": "en", "string": "Who was called Rodzilla?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://xmlns.com/foaf/0.1/nick> \"Rodzilla\"@en }"}}, {"id": "242", "question": [{"language": "en", "string": "Show me the book that Muhammad Ali wrote."}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Book ; dbo:author res:Muhammad_Ali }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Soul_of_a_Butterfly"}}}, {"id": "243", "question": [{"language": "en", "string": "How many museums does Paris have?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Museum> ; <http://dbpedia.org/ontology/location> <http://dbpedia.org/resource/Paris> }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gallery_of_Paleontology_and_Comparative_Anatomy"}}}, {"id": "244", "question": [{"language": "en", "string": "Which city has the most inhabitants?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:City ; dbo:populationTotal ?pop } ORDER BY DESC(?pop) OFFSET 0 LIMIT 1"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Beinamar"}}}, {"id": "245", "question": [{"language": "en", "string": "Which city has the least inhabitants?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:City ; dbo:populationTotal ?pop } ORDER BY ASC(?pop) OFFSET 0 LIMIT 1"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ambae_Island"}}}, {"id": "246", "question": [{"language": "en", "string": "Give me all the TV shows with Neil Patrick Harris."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/TelevisionShow> ; <http://dbpedia.org/ontology/starring> <http://dbpedia.org/resource/Neil_Patrick_Harris> }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Christmas_Blessing"}}}, {"id": "247", "question": [{"language": "en", "string": "Who wrote The Hunger Games?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/The_Hunger_Games> <http://dbpedia.org/property/author> ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Suzanne_Collins"}}}, {"id": "248", "question": [{"language": "en", "string": "Show a list of soccer clubs that play in the Bundesliga."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/SoccerClub> ; <http://dbpedia.org/ontology/league> <http://dbpedia.org/resource/Bundesliga> }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/1969\u201370_FC_Bayern_Munich_season"}}}, {"id": "249", "question": [{"language": "en", "string": "What country is Mount Everest in?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { res:Mount_Everest dbo:locatedInArea ?uri . ?uri rdf:type dbo:Country }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/China"}}}, {"id": "250", "question": [{"language": "en", "string": "Who is the founder of Penguin Books?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { res:Penguin_Books dbo:founder ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Allen_Lane"}}}, {"id": "251", "question": [{"language": "en", "string": "Which programming languages influenced Javascript?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/ProgrammingLanguage> ; <http://dbpedia.org/ontology/influenced> <http://dbpedia.org/resource/JavaScript> }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CoffeeScript"}}}, {"id": "402", "question": [{"language": "en", "string": "Did Che Guevara have children?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> ASK WHERE { res:Che_Guevara dbo:child ?uri }"}}, {"id": "252", "question": [{"language": "en", "string": "List all the musicals with music by Elton John."}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Musical ; dbo:musicBy res:Elton_John }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Aida_(musical)"}}}, {"id": "253", "question": [{"language": "en", "string": "Show me all the breweries in Australia."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Brewery> { ?uri <http://dbpedia.org/ontology/location> <http://dbpedia.org/resource/Australia> } UNION { ?uri <http://dbpedia.org/ontology/location> ?x . ?x <http://dbpedia.org/ontology/country> <http://dbpedia.org/resource/Australia> } }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cascade_Brewery"}}}, {"id": "405", "question": [{"language": "en", "string": "When was the Titanic completed?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?date WHERE { res:RMS_Titanic dbo:completionDate ?date }"}}, {"id": "254", "question": [{"language": "en", "string": "How much did Pulp Fiction cost?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?n WHERE { res:Pulp_Fiction dbo:budget ?n }"}, "answers": {"n": {"type": "typed-literal", "datatype": "http://dbpedia.org/datatype/usDollar", "value": "8.0"}}}, {"id": "255", "question": [{"language": "en", "string": "How many airlines are there?"}], "query": {"sparql": "SELECT (COUNT(DISTINCT ?uri) AS ?c) WHERE { ?uri a <http://dbpedia.org/ontology/Airline> }"}, "answers": {"c": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "4838"}}, "entities": [], "relations": [{"URI": "http://dbpedia.org/ontology/icaoAirlineCode", "surface form": "airlines"}]}, {"id": "256", "question": [{"language": "en", "string": "Who played Agent Smith in Matrix?"}], "query": {"sparql": "PREFIX res: <http://dbpedia.org/resource/> PREFIX dbp: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Agent_Smith <http://dbpedia.org/ontology/portrayer> ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jonathan_Groff"}}}, {"id": "257", "question": [{"language": "en", "string": "How much carbs does peanut butter have?"}], "query": {"sparql": "SELECT DISTINCT ?carbs WHERE { <http://dbpedia.org/resource/Peanut_butter> <http://dbpedia.org/property/carbs> ?carbs }"}, "answers": {"carbs": {"type": "typed-literal", "datatype": "http://dbpedia.org/datatype/gram", "value": "22.3"}}}, {"id": "258", "question": [{"language": "en", "string": "Which book has the most pages?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Book ; dbo:numberOfPages ?n } ORDER BY DESC(?n) OFFSET 0 LIMIT 1"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Tolkien_Reader"}}, "entities": [], "relations": [{"URI": "http://dbpedia.org/ontology/volume", "surface form": "book"}]}, {"id": "259", "question": [{"language": "en", "string": "Which bridges cross the Seine?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Bridge> ; <http://dbpedia.org/ontology/crosses> <http://dbpedia.org/resource/Seine> }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Viaduc_d'Austerlitz"}}, "entities": [{"URI": "http://dbpedia.org/resource/Seine", "surface form": "Seine"}], "relations": [{"URI": "http://dbpedia.org/ontology/abstract", "surface form": "bridges"}, {"URI": "http://dbpedia.org/ontology/network", "surface form": "cross"}]}, {"id": "412", "question": [{"language": "en", "string": "Who is the mayor of the capital of French Polynesia?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:French_Polynesia dbo:capital ?x . ?x dbo:mayor ?uri }"}, "entities": [{"URI": "http://dbpedia.org/resource/France", "surface form": "French Polynesia"}, {"URI": "http://dbpedia.org/resource/French_Polynesia", "surface form": "French Polynesia"}], "relations": [{"URI": "http://dbpedia.org/ontology/mayor", "surface form": "mayor"}, {"URI": "http://dbpedia.org/ontology/capital", "surface form": "capital"}, {"URI": "http://dbpedia.org/ontology/country", "surface form": ""}]}, {"id": "260", "question": [{"language": "en", "string": "When did Dracula's creator die?"}], "query": {"sparql": "SELECT DISTINCT xsd:date(?date) WHERE { <http://dbpedia.org/resource/Count_Dracula> <http://dbpedia.org/ontology/creator> ?x . ?x <http://dbpedia.org/ontology/deathDate> ?date. }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#date", "value": "1912-04-20"}}, "entities": [{"URI": "http://dbpedia.org/resource/Count_Dracula", "surface form": "Dracula"}], "relations": [{"URI": "http://dbpedia.org/property/producer", "surface form": " creator"}, {"URI": "http://dbpedia.org/ontology/deathDate", "surface form": "die"}]}, {"id": "261", "question": [{"language": "en", "string": "What is the location of the Houses of Parliament?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT ?uri WHERE { res:Palace_of_Westminster dbo:location ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/United_Kingdom"}}, "entities": [{"URI": "http://dbpedia.org/resource/Palace_of_Westminster", "surface form": "Houses of Parliament"}], "relations": [{"URI": "http://dbpedia.org/ontology/location", "surface form": "location"}]}, {"id": "262", "question": [{"language": "en", "string": "Show me all English Gothic buildings in Kent."}], "query": {"sparql": "SELECT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Building> ; <http://dbpedia.org/ontology/architecturalStyle> <http://dbpedia.org/resource/English_Gothic_architecture> ; <http://dbpedia.org/ontology/location> <http://dbpedia.org/resource/Kent> }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/All_Saints_Church,_Waldershare"}}, "entities": [{"URI": "http://dbpedia.org/resource/English_Gothic_architecture", "surface form": "English Gothic buildings in Kent"}], "relations": [{"URI": "http://dbpedia.org/ontology/show", "surface form": "show"}]}, {"id": "416", "question": [{"language": "en", "string": "Who was the pope that founded the Vatican Television?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT ?uri WHERE { ?uri rdf:type dbo:Pope . res:Vatican_Television_Center dbo:foundedBy ?uri }"}, "entities": [{"URI": "http://dbpedia.org/resource/Vatican_Television_Center", "surface form": "Vatican Television"}], "relations": [{"URI": "http://dbpedia.org/ontology/material", "surface form": "pope"}, {"URI": "http://dbpedia.org/ontology/leader", "surface form": "founded"}]}, {"id": "263", "question": [{"language": "en", "string": "What airlines are part of the SkyTeam alliance?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Airline> { ?uri <http://dbpedia.org/ontology/alliance> <http://dbpedia.org/resource/SkyTeam> } UNION { ?uri <http://dbpedia.org/ontology/Alliance> <http://dbpedia.org/resource/SkyTeam> } }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alitalia"}}, "entities": [{"URI": "http://dbpedia.org/resource/SkyTeam", "surface form": "SkyTeam alliance"}], "relations": [{"URI": "http://dbpedia.org/ontology/icaoAirlineCode", "surface form": "airlines"}]}, {"id": "264", "question": [{"language": "en", "string": "What is the total population of Melbourne, Florida?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> SELECT ?uri WHERE { <http://dbpedia.org/resource/Melbourne,_Florida> dbo:populationTotal ?uri }"}, "answers": {"uri": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#nonNegativeInteger", "value": "84678"}}, "entities": [{"URI": "http://dbpedia.org/resource/Melbourne,_Florida", "surface form": "Melbourne, Florida"}], "relations": [{"URI": "http://dbpedia.org/ontology/populationTotal", "surface form": "total population"}]}, {"id": "265", "question": [{"language": "en", "string": "Which airports does Air China serve?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Air_China dbo:targetAirport ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hangzhou_Xiaoshan_International_Airport"}}, "entities": [{"URI": "http://dbpedia.org/resource/Air_China", "surface form": "Air China"}], "relations": [{"URI": "http://dbpedia.org/ontology/hubAirport", "surface form": "airports"}, {"URI": "http://dbpedia.org/property/row", "surface form": "serve"}]}, {"id": "266", "question": [{"language": "en", "string": "In which year was Rachel Stevens born?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Rachel_Stevens dbo:birthYear ?uri }"}, "answers": {"uri": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#gYear", "value": "1978"}}, "entities": [{"URI": "http://dbpedia.org/resource/Rachel_Stevens", "surface form": "Rachel Stevens"}], "relations": [{"URI": "http://dbpedia.org/ontology/birthYear", "surface form": "born"}]}, {"id": "267", "question": [{"language": "en", "string": "Where was JFK assassinated?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/John_F._Kennedy> <http://dbpedia.org/ontology/deathPlace> ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dallas"}}, "entities": [{"URI": "http://dbpedia.org/resource/John_F._Kennedy_International_Airport", "surface form": "JFK"}, {"URI": "http://dbpedia.org/resource/Assassinated_Catholic_priests_in_Guatemala", "surface form": "Assassinated"}], "relations": []}, {"id": "268", "question": [{"language": "en", "string": "How many politicians graduated from Columbia University?"}], "query": {"sparql": "SELECT (COUNT(DISTINCT ?uri) AS ?c) WHERE { ?uri <http://dbpedia.org/ontology/profession> <http://dbpedia.org/resource/Politician> ; <http://dbpedia.org/ontology/almaMater> <http://dbpedia.org/resource/Columbia_University> }"}, "answers": {"c": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "10"}}, "entities": [{"URI": "http://dbpedia.org/resource/Politicians_of_The_Wire", "surface form": "politicians"}, {"URI": "http://dbpedia.org/resource/Columbia_University", "surface form": "Columbia University"}], "relations": [{"URI": "http://dbpedia.org/ontology/effectiveRadiatedPower", "surface form": "graduated"}]}, {"id": "423", "question": [{"language": "en", "string": "Which scientist is known for the Manhattan Project and the Nobel Peace Prize?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri dbo:knownFor res:Manhattan_Project ; rdf:type dbo:Scientist ; dbo:knownFor res:Nobel_Peace_Prize }"}, "entities": [{"URI": "http://dbpedia.org/resource/Manhattan_Project", "surface form": "Manhattan Project"}, {"URI": "http://dbpedia.org/resource/Nobel_Peace_Prize", "surface form": "Nobel Peace Prize"}], "relations": [{"URI": "http://dbpedia.org/ontology/knownFor", "surface form": "known for"}, {"URI": "http://dbpedia.org/ontology/knownFor", "surface form": "known for"}]}, {"id": "269", "question": [{"language": "en", "string": "What is the highest volcano in Africa?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Volcano> ; <http://dbpedia.org/ontology/locatedInArea> ?area . ?area dct:subject dbc:Countries_in_Africa . ?uri <http://dbpedia.org/ontology/elevation> ?elevation } ORDER BY DESC(?elevation) LIMIT 1"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mount_Kenya"}}, "entities": [{"URI": "http://dbpedia.org/resource/Africa", "surface form": "Africa"}], "relations": [{"URI": "http://dbpedia.org/ontology/head", "surface form": "highest volcano"}]}, {"id": "425", "question": [{"language": "en", "string": "Which beer originated in Ireland?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/type> <http://dbpedia.org/resource/Beer> ; <http://dbpedia.org/ontology/origin> <http://dbpedia.org/resource/Beer_in_Ireland> }"}, "entities": [{"URI": "http://dbpedia.org/resource/Ireland", "surface form": "Ireland"}], "relations": [{"URI": "http://dbpedia.org/ontology/party", "surface form": "beer"}, {"URI": "http://dbpedia.org/ontology/engineer", "surface form": "originated"}]}, {"id": "270", "question": [{"language": "en", "string": "What are the specialities of the UNC Health Care?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/UNC_Health_Care> <http://dbpedia.org/property/speciality> ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cancer"}}, "entities": [{"URI": "http://dbpedia.org/resource/Traditional_Specialities_Guaranteed", "surface form": "specialities"}, {"URI": "http://dbpedia.org/resource/UNC", "surface form": "UNC"}, {"URI": "http://dbpedia.org/resource/Health_care", "surface form": "Health Care"}], "relations": []}, {"id": "427", "question": [{"language": "en", "string": "Who is the owner of Facebook?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Facebook> <http://dbpedia.org/ontology/foundedBy> ?uri }"}, "entities": [{"URI": "http://dbpedia.org/resource/Facebook", "surface form": "Facebook"}], "relations": [{"URI": "http://dbpedia.org/ontology/owner", "surface form": "owner"}]}, {"id": "271", "question": [{"language": "en", "string": "From which region is the Melon de Bourgogne?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Melon_de_Bourgogne dbo:wineRegion ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Washington_(state)"}}, "entities": [{"URI": "http://dbpedia.org/resource/Melon_de_Bourgogne", "surface form": "Melon de Bourgogne"}], "relations": [{"URI": "http://dbpedia.org/ontology/region", "surface form": "region"}]}, {"id": "272", "question": [{"language": "en", "string": "Who was influenced by Socrates?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/influencedBy> <http://dbpedia.org/resource/Socrates> }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Arcesilaus"}}, "entities": [{"URI": "http://dbpedia.org/resource/Socrates", "surface form": "Socrates"}], "relations": [{"URI": "http://dbpedia.org/ontology/influenced", "surface form": "influenced"}]}, {"id": "273", "question": [{"language": "en", "string": "Who was president of Pakistan in 1978?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/title> <http://dbpedia.org/resource/President_of_Pakistan> ; <http://dbpedia.org/property/years> 1978 }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Muhammad_Zia-ul-Haq"}}, "entities": [{"URI": "http://dbpedia.org/resource/Pakistan", "surface form": "Pakistan"}, {"URI": "http://dbpedia.org/resource/1978", "surface form": "1978"}], "relations": [{"URI": "http://dbpedia.org/ontology/president", "surface form": "president"}]}, {"id": "274", "question": [{"language": "en", "string": "Give me English actors starring in Lovesick."}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Lovesick_(1983_film)> dbo:starring ?uri . ?uri dbo:birthPlace ?city . ?city dbo:country <http://dbpedia.org/resource/United_Kingdom> }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dudley_Moore"}}, "entities": [{"URI": "http://dbpedia.org/resource/The_Actors", "surface form": "English actors"}, {"URI": "http://dbpedia.org/resource/Lovesick_(Priscilla_Renea_song)", "surface form": "Lovesick"}], "relations": [{"URI": "http://dbpedia.org/ontology/starring", "surface form": "starring"}]}, {"id": "275", "question": [{"language": "en", "string": "Give me all types of eating disorders."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/class/yago/WikicatEatingDisorders> }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Disordered_eating"}}, "entities": [{"URI": "http://dbpedia.org/resource/Disorders_of_consciousness", "surface form": "disorders"}], "relations": [{"URI": "http://dbpedia.org/property/type", "surface form": "types"}, {"URI": "http://dbpedia.org/ontology/house", "surface form": "eating"}]}, {"id": "276", "question": [{"language": "en", "string": "Who was married to president Chirac?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Jacques_Chirac dbo:spouse ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bernadette_Chirac"}}, "entities": [{"URI": "http://dbpedia.org/resource/Jacques_Chirac", "surface form": "president Chirac"}], "relations": [{"URI": "http://dbpedia.org/ontology/spouse", "surface form": "married"}]}, {"id": "277", "question": [{"language": "en", "string": "What is the largest metropolitan area in Washington state?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Washington_(state)> <http://dbpedia.org/property/largestmetro> ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Seattle_metropolitan_area"}}, "entities": [{"URI": "http://dbpedia.org/resource/Metropolitan_area", "surface form": "largest metropolitan area"}, {"URI": "http://dbpedia.org/resource/Washington", "surface form": "Washington"}], "relations": []}, {"id": "278", "question": [{"language": "en", "string": "Where in France is sparkling wine produced?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { ?uri dbo:wineProduced res:Sparkling_wine ; dbo:location res:France }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Loire_Valley_(wine)"}}, "entities": [{"URI": "http://dbpedia.org/resource/Sparkling_wines", "surface form": "sparkling wine"}, {"URI": "http://dbpedia.org/resource/France", "surface form": "France"}], "relations": [{"URI": "http://dbpedia.org/ontology/parkingInformation", "surface form": "sparkling"}, {"URI": "http://dbpedia.org/ontology/wineRegion", "surface form": "wine produced"}]}, {"id": "279", "question": [{"language": "en", "string": "Where did Hillel Slovak die?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Hillel_Slovak> <http://dbpedia.org/ontology/deathPlace> ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/California"}}, "entities": [{"URI": "http://dbpedia.org/resource/Hillel_Slovak", "surface form": "Hillel Slovak"}], "relations": [{"URI": "http://dbpedia.org/ontology/deathDate", "surface form": "die"}]}, {"id": "280", "question": [{"language": "en", "string": "What is the timezone in San Pedro de Atacama?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:San_Pedro_de_Atacama dbo:timeZone ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Time_in_Chile"}}, "entities": [{"URI": "http://dbpedia.org/resource/San_Pedro_de_Atacama", "surface form": "San Pedro de Atacama"}], "relations": [{"URI": "http://dbpedia.org/ontology/timeZone", "surface form": "timezone"}]}, {"id": "281", "question": [{"language": "en", "string": "In which city does the Chile Route 68 end?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Chile_Route_68 dbo:routeEnd ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Valpara\u00edso"}}, "entities": [{"URI": "http://dbpedia.org/resource/Chile_Route_68", "surface form": "Chile Route 68 end"}], "relations": [{"URI": "http://dbpedia.org/ontology/city", "surface form": "city"}]}, {"id": "282", "question": [{"language": "en", "string": "Who was the doctoral supervisor of Albert Einstein?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Albert_Einstein dbo:doctoralAdvisor ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alfred_Kleiner"}}, "entities": [{"URI": "http://dbpedia.org/resource/Albert_Einstein", "surface form": "Albert Einstein"}], "relations": [{"URI": "http://dbpedia.org/ontology/doctoralAdvisor", "surface form": "doctoral supervisor"}]}, {"id": "440", "question": [{"language": "en", "string": "Did Kaurism\u00e4ki ever win the Grand Prix at Cannes?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> ASK WHERE { res:Aki_Kaurism\u00e4ki dbo:award <http://dbpedia.org/resource/Grand_Prix_(Cannes_Film_Festival)> }"}, "entities": [{"URI": "http://dbpedia.org/resource/Aki_Kaurism\u00e4ki", "surface form": "Kaurism\u00e4ki"}, {"URI": "http://dbpedia.org/resource/Grand_Prix_(Cannes_Film_Festival)", "surface form": "Grand Prix at Cannes"}], "relations": [{"URI": "http://dbpedia.org/ontology/award", "surface form": "win"}]}, {"id": "283", "question": [{"language": "en", "string": "Who wrote the song Hotel California?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Hotel_California dbo:writer ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Glenn_Frey"}}, "entities": [{"URI": "http://dbpedia.org/resource/Hotel_California", "surface form": "song Hotel California"}], "relations": [{"URI": "http://dbpedia.org/ontology/writer", "surface form": "wrote"}]}, {"id": "284", "question": [{"language": "en", "string": "Who was on the Apollo 11 mission?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Apollo_11> <http://dbpedia.org/property/crewMembers> ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Buzz_Aldrin"}}, "entities": [{"URI": "http://dbpedia.org/resource/Apollo_11", "surface form": "Apollo 11 mission"}], "relations": []}, {"id": "443", "question": [{"language": "en", "string": "Which electronics companies were founded in Beijing?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Company ; dbo:industry res:Electronics ; dbo:foundationPlace res:Beijing }"}, "entities": [{"URI": "http://dbpedia.org/resource/Novak_Electronics", "surface form": "electronics companies"}, {"URI": "http://dbpedia.org/resource/Beijing", "surface form": "Beijing"}], "relations": [{"URI": "http://dbpedia.org/property/founder", "surface form": "founded"}]}, {"id": "285", "question": [{"language": "en", "string": "What is in a chocolate chip cookie?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Chocolate_chip_cookie dbo:ingredient ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chocolate_chip"}}, "entities": [{"URI": "http://dbpedia.org/resource/Chocolate_chip_cookie", "surface form": "chocolate chip cookie"}], "relations": []}, {"id": "286", "question": [{"language": "en", "string": "What is the atmosphere of the Moon composed of?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Moon> <http://dbpedia.org/property/atmosphereComposition> ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Argon"}}, "entities": [{"URI": "http://dbpedia.org/resource/Moon", "surface form": "Moon"}], "relations": [{"URI": "http://dbpedia.org/property/background", "surface form": "atmosphere"}, {"URI": "http://dbpedia.org/ontology/musicComposer", "surface form": "composed"}]}, {"id": "287", "question": [{"language": "en", "string": "How many movies did Park Chan-wook direct?"}], "query": {"sparql": "SELECT COUNT(DISTINCT ?uri AS ?uri) WHERE { ?uri <http://dbpedia.org/ontology/director> <http://dbpedia.org/resource/Park_Chan-wook> . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "17"}}, "entities": [{"URI": "http://dbpedia.org/resource/Park_Chan-wook", "surface form": "Park Chan-wook direct"}], "relations": [{"URI": "http://dbpedia.org/ontology/film", "surface form": "movies"}]}, {"id": "288", "question": [{"language": "en", "string": "Who are the developers of DBpedia?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:DBpedia dbo:developer ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/OpenLink_Software"}}, "entities": [{"URI": "http://dbpedia.org/resource/DBpedia", "surface form": "DBpedia"}], "relations": [{"URI": "http://dbpedia.org/ontology/developer", "surface form": "developers"}]}, {"id": "289", "question": [{"language": "en", "string": "Which Indian company has the most employees?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Company ; dbo:location res:India ; dbo:numberOfEmployees ?n } ORDER BY DESC(?n) OFFSET 0 LIMIT 1"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ministry_of_Railways_(India)"}}, "entities": [{"URI": "http://dbpedia.org/resource/India", "surface form": "Indian company"}, {"URI": "http://dbpedia.org/resource/SPIC_(Indian_company)", "surface form": "Indian company"}], "relations": [{"URI": "http://dbpedia.org/ontology/numberOfEmployees", "surface form": "employees"}, {"URI": "http://dbpedia.org/ontology/country", "surface form": ""}]}, {"id": "449", "question": [{"language": "en", "string": "What is the name of the school where Obama's wife studied?"}], "query": {"sparql": "SELECT DISTINCT ?s WHERE { <http://dbpedia.org/resource/Barack_Obama> <http://dbpedia.org/property/spouse> ?x . ?x <http://dbpedia.org/property/almaMater> ?s . } "}, "entities": [{"URI": "http://dbpedia.org/resource/Barack_Obama", "surface form": "Obama"}], "relations": [{"URI": "http://dbpedia.org/property/name", "surface form": "name"}, {"URI": "http://dbpedia.org/ontology/school", "surface form": "school"}, {"URI": "http://dbpedia.org/property/spouse", "surface form": " wife"}, {"URI": "http://dbpedia.org/ontology/office", "surface form": "studied"}]}, {"id": "290", "question": [{"language": "en", "string": "Where does Piccadilly start?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/routeStart> <http://dbpedia.org/resource/Piccadilly> }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dover_Street"}}, "entities": [{"URI": "http://dbpedia.org/resource/Piccadilly", "surface form": "Piccadilly"}], "relations": [{"URI": "http://dbpedia.org/ontology/routeStart", "surface form": "start"}]}, {"id": "291", "question": [{"language": "en", "string": "What is the capital of Cameroon?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Cameroon dbo:capital ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Yaound\u00e9"}}, "entities": [{"URI": "http://dbpedia.org/resource/Cameroon", "surface form": "Cameroon"}], "relations": [{"URI": "http://dbpedia.org/ontology/capital", "surface form": "capital"}]}, {"id": "292", "question": [{"language": "en", "string": "When did the Boston Tea Party take place?"}], "query": {"sparql": "SELECT DISTINCT ?d WHERE { <http://dbpedia.org/resource/Boston_Tea_Party> <http://dbpedia.org/property/date> ?d }"}, "answers": {"d": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#date", "value": "1773-12-16"}}, "entities": [{"URI": "http://dbpedia.org/resource/Boston_Tea_Party", "surface form": "Boston Tea Party"}], "relations": [{"URI": "http://dbpedia.org/ontology/place", "surface form": "place"}]}, {"id": "293", "question": [{"language": "en", "string": "Who played Gus Fring in Breaking Bad?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Gus_Fring dbo:portrayer ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Giancarlo_Esposito"}}, "entities": [{"URI": "http://dbpedia.org/resource/Gus_Fring", "surface form": "Gus Fring"}, {"URI": "http://dbpedia.org/resource/Breaking_Bad", "surface form": "Breaking Bad"}], "relations": [{"URI": "http://dbpedia.org/ontology/portrayer", "surface form": "played"}]}, {"id": "294", "question": [{"language": "en", "string": "Who wrote Harry Potter?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Harry_Potter> <http://dbpedia.org/property/author> ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/J._K._Rowling"}}, "entities": [{"URI": "http://dbpedia.org/resource/Harry_Potter", "surface form": "Harry Potter"}], "relations": [{"URI": "http://dbpedia.org/property/author", "surface form": "wrote"}]}, {"id": "295", "question": [{"language": "en", "string": "Which actors play in Big Bang Theory?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/The_Big_Bang_Theory> <http://dbpedia.org/ontology/starring> ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kevin_Sussman"}}, "entities": [{"URI": "http://dbpedia.org/resource/The_Big_Bang_Theory", "surface form": "Big Bang Theory"}], "relations": [{"URI": "http://dbpedia.org/ontology/background", "surface form": "actors"}, {"URI": "http://dbpedia.org/ontology/starring", "surface form": "play"}]}, {"id": "296", "question": [{"language": "en", "string": "What is the largest country in the world?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Country ; dbo:areaTotal ?n } ORDER BY DESC(?n) OFFSET 0 LIMIT 1"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Asia"}}, "entities": [], "relations": [{"URI": "http://dbpedia.org/ontology/areaTotal", "surface form": "largest country"}]}, {"id": "457", "question": [{"language": "en", "string": "Who is the most powerful Jedi?"}], "query": {"sparql": {}}, "entities": [{"URI": "http://dbpedia.org/resource/Jedi", "surface form": "powerful Jedi"}], "relations": []}, {"id": "458", "question": [{"language": "en", "string": "How many goals did Pel\u00e9 score?"}], "query": {"sparql": {}}, "entities": [{"URI": "http://dbpedia.org/resource/Pel\u00e9", "surface form": "Pel\u00e9"}], "relations": [{"URI": "http://dbpedia.org/property/goals", "surface form": "goals"}, {"URI": "http://dbpedia.org/property/score", "surface form": "score"}]}, {"id": "459", "question": [{"language": "en", "string": "Who is the president of Eritrea?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Eritrea dbo:leader ?uri ; dbo:leaderTitle \"President\"@en }"}, "entities": [{"URI": "http://dbpedia.org/resource/Eritrea", "surface form": "Eritrea"}], "relations": [{"URI": "http://dbpedia.org/ontology/president", "surface form": "president"}]}, {"id": "460", "question": [{"language": "en", "string": "Which computer scientist won an oscar?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/field> <http://dbpedia.org/resource/Computer_science> ; <http://dbpedia.org/ontology/award> <http://dbpedia.org/resource/Academy_Award> }"}, "entities": [{"URI": "http://dbpedia.org/resource/Computer_scientist", "surface form": "computer scientist"}, {"URI": "http://dbpedia.org/resource/Oscar", "surface form": "oscar"}], "relations": [{"URI": "http://dbpedia.org/ontology/award", "surface form": "won"}]}, {"id": "297", "question": [{"language": "en", "string": "Who created Family Guy?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Family_Guy dbo:creator ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Seth_MacFarlane"}}, "entities": [{"URI": "http://dbpedia.org/resource/Family_Guy", "surface form": "Family Guy"}], "relations": [{"URI": "http://dbpedia.org/ontology/creator", "surface form": "created"}]}, {"id": "462", "question": [{"language": "en", "string": "How many people live in Poland?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Poland dbo:populationTotal ?uri }"}, "entities": [{"URI": "http://dbpedia.org/resource/Poland", "surface form": "Poland"}], "relations": [{"URI": "http://dbpedia.org/ontology/residence", "surface form": "live"}]}, {"id": "298", "question": [{"language": "en", "string": "To which party does the mayor of Paris belong?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Paris dbo:mayor ?x . ?x dbo:party ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Socialist_Party_(France)"}}, "entities": [{"URI": "http://dbpedia.org/resource/Paris", "surface form": "Paris"}], "relations": [{"URI": "http://dbpedia.org/ontology/party", "surface form": "party"}, {"URI": "http://dbpedia.org/ontology/mayor", "surface form": "mayor"}, {"URI": "http://dbpedia.org/ontology/date", "surface form": "belong"}]}, {"id": "464", "question": [{"language": "en", "string": "Who does the voice of Bart Simpson?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Bart_Simpson> <http://dbpedia.org/property/voiceactor> ?uri }"}, "entities": [{"URI": "http://dbpedia.org/resource/Bart_Simpson", "surface form": "Bart Simpson"}], "relations": [{"URI": "http://dbpedia.org/ontology/voice", "surface form": "voice"}]}, {"id": "299", "question": [{"language": "en", "string": "Who composed the soundtrack for Cameron's Titanic?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Titanic_(1997_film)> dbo:musicComposer ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/James_Horner"}}, "entities": [{"URI": "http://dbpedia.org/resource/Soundtrack_for_a_Revolution", "surface form": "soundtrack"}, {"URI": "http://dbpedia.org/resource/Cameron", "surface form": "Cameron"}, {"URI": "http://dbpedia.org/resource/Titanic_(1953_film)", "surface form": " Titanic"}], "relations": [{"URI": "http://dbpedia.org/ontology/musicComposer", "surface form": "composed"}]}, {"id": "300", "question": [{"language": "en", "string": "When did Boris Becker end his active career?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?d WHERE { res:Boris_Becker dbo:activeYearsEndDate ?d }"}, "answers": {"d": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#date", "value": "1999-06-25"}}, "entities": [{"URI": "http://dbpedia.org/resource/Boris_Becker", "surface form": "Boris Becker"}], "relations": [{"URI": "http://dbpedia.org/ontology/result", "surface form": "end"}, {"URI": "http://dbpedia.org/ontology/careerPrizeMoney", "surface form": "active career"}]}, {"id": "301", "question": [{"language": "en", "string": "Show me all basketball players that are higher than 2 meters."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/BasketballPlayer> ; <http://dbpedia.org/ontology/height> ?n FILTER ( ?n > 2.0 ) }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alize_Johnson"}}, "entities": [{"URI": "http://dbpedia.org/resource/National_Basketball_Players_Association", "surface form": "basketball players"}], "relations": [{"URI": "http://dbpedia.org/ontology/show", "surface form": "show"}, {"URI": "http://dbpedia.org/ontology/seniority", "surface form": "higher"}, {"URI": "http://dbpedia.org/ontology/iso6392Code", "surface form": "2 meters"}]}, {"id": "468", "question": [{"language": "en", "string": "What country is Sitecore from?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Sitecore dbo:foundationPlace ?uri }"}, "entities": [{"URI": "http://dbpedia.org/resource/Sitecore", "surface form": "Sitecore"}], "relations": [{"URI": "http://dbpedia.org/ontology/country", "surface form": "country"}]}, {"id": "469", "question": [{"language": "en", "string": "Which country was Bill Gates born in?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> PREFIX dbr: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?country WHERE { { dbr:Bill_Gates dbo:birthPlace ?birthPlace . ?birthPlace dbo:country ?country } UNION { dbr:Bill_Gates dbo:birthPlace ?birthPlace . ?birthPlace dbo:isPartOf ?place . ?place dbo:country ?country } }"}, "entities": [{"URI": "http://dbpedia.org/resource/Bill_Gates", "surface form": "Bill Gates"}], "relations": [{"URI": "http://dbpedia.org/ontology/country", "surface form": "country"}, {"URI": "http://dbpedia.org/ontology/birthPlace", "surface form": "born"}]}, {"id": "302", "question": [{"language": "en", "string": "Who developed Slack?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?uri dbo:product <http://dbpedia.org/resource/Slack_(software)> }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Slack_Technologies"}}, "entities": [{"URI": "http://dbpedia.org/resource/Slack", "surface form": "Slack"}], "relations": [{"URI": "http://dbpedia.org/ontology/developer", "surface form": "developed"}]}, {"id": "471", "question": [{"language": "en", "string": "In which city did Nikos Kazantzakis die?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { res:Nikos_Kazantzakis dbo:deathPlace ?uri . ?uri rdf:type dbo:Town }"}, "entities": [{"URI": "http://dbpedia.org/resource/Nikos_Kazantzakis", "surface form": "Nikos Kazantzakis"}], "relations": [{"URI": "http://dbpedia.org/ontology/deathPlace", "surface form": "die"}]}, {"id": "303", "question": [{"language": "en", "string": "How many grand-children did Jacques Cousteau have?"}], "query": {"sparql": "SELECT COUNT(DISTINCT ?y AS ?y) WHERE { <http://dbpedia.org/resource/Jacques_Cousteau> <http://dbpedia.org/ontology/child> ?x . ?x <http://dbpedia.org/ontology/child> ?y . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "4"}}, "entities": [{"URI": "http://dbpedia.org/resource/Jacques_Cousteau", "surface form": "Jacques Cousteau"}], "relations": [{"URI": "http://dbpedia.org/ontology/child", "surface form": "grand-children"}]}, {"id": "304", "question": [{"language": "en", "string": "Which films did Stanley Kubrick direct?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { ?uri dbo:director res:Stanley_Kubrick }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Day_of_the_Fight"}}, "entities": [{"URI": "http://dbpedia.org/resource/Stanley_Kubrick", "surface form": "Stanley Kubrick direct"}], "relations": [{"URI": "http://dbpedia.org/ontology/numberOfFilms", "surface form": "films"}]}, {"id": "474", "question": [{"language": "en", "string": "Does Neymar play for Real Madrid?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> ASK WHERE { res:Neymar dbo:team <http://dbpedia.org/resource/Real_Madrid_C.F.> }"}, "entities": [{"URI": "http://dbpedia.org/resource/Neymar", "surface form": "Neymar"}, {"URI": "http://dbpedia.org/resource/Jorge_Mer\u00e9", "surface form": "Real Madrid"}], "relations": [{"URI": "http://dbpedia.org/ontology/team", "surface form": "play"}]}, {"id": "305", "question": [{"language": "en", "string": "How many seats does the home stadium of FC Porto have?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbp: <http://dbpedia.org/property/> PREFIX dbr: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> PREFIX db: <http://dbpedia.org/> SELECT ?capacity WHERE { { dbr:FC_Porto dbo:ground ?ground . ?ground dbo:capacity ?capacity } UNION { dbr:FC_Porto dbo:ground ?ground . ?ground dbp:capacity ?capacity } }"}, "answers": {"capacity": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "50035"}}, "entities": [{"URI": "http://dbpedia.org/resource/FC_Porto", "surface form": "stadium of FC Porto"}], "relations": [{"URI": "http://dbpedia.org/property/seat", "surface form": "seats"}, {"URI": "http://dbpedia.org/ontology/ground", "surface form": "home stadium"}]}, {"id": "306", "question": [{"language": "en", "string": "Show me all books in Asimov's Foundation series."}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { ?uri dbo:series res:Foundation_series }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/R._Daneel_Olivaw"}}, "entities": [{"URI": "http://dbpedia.org/resource/Asimov_(disambiguation)", "surface form": "Asimov"}, {"URI": "http://dbpedia.org/resource/Foundation_series", "surface form": " Foundation series"}], "relations": [{"URI": "http://dbpedia.org/ontology/show", "surface form": "show"}, {"URI": "http://dbpedia.org/property/books", "surface form": "books"}]}, {"id": "307", "question": [{"language": "en", "string": "Which movies star both Liz Taylor and Richard Burton?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/starring> <http://dbpedia.org/resource/Elizabeth_Taylor> ; <http://dbpedia.org/ontology/starring> <http://dbpedia.org/resource/Richard_Burton> }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Divorce_His,_Divorce_Hers"}}, "entities": [{"URI": "http://dbpedia.org/resource/Liz:_The_Elizabeth_Taylor_Story", "surface form": "Liz Taylor"}, {"URI": "http://dbpedia.org/resource/Richard_Burton", "surface form": "Richard Burton"}], "relations": [{"URI": "http://dbpedia.org/ontology/film", "surface form": "movies"}, {"URI": "http://dbpedia.org/property/name", "surface form": "star"}]}, {"id": "308", "question": [{"language": "en", "string": "In which city are the headquarters of the United Nations?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { res:Headquarters_of_the_United_Nations dbo:location ?uri . ?uri rdf:type dbo:City }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/New_York_City"}}, "entities": [{"URI": "http://dbpedia.org/resource/Headquarters_of_the_United_Nations", "surface form": "headquarters of the United Nations"}], "relations": [{"URI": "http://dbpedia.org/ontology/city", "surface form": "city"}, {"URI": "http://dbpedia.org/ontology/headquarter", "surface form": "headquarters"}]}, {"id": "309", "question": [{"language": "en", "string": "In which city was the president of Montenegro born?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/title> dbr:President_of_Montenegro ; dbo:birthPlace ?uri . ?uri dbo:type dbr:Capital_city }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Belgrade"}}, "entities": [{"URI": "http://dbpedia.org/resource/Montenegro", "surface form": "Montenegro"}], "relations": [{"URI": "http://dbpedia.org/ontology/city", "surface form": "city"}, {"URI": "http://dbpedia.org/ontology/president", "surface form": "president"}, {"URI": "http://dbpedia.org/ontology/birthPlace", "surface form": "born"}]}, {"id": "310", "question": [{"language": "en", "string": "Which writers studied in Istanbul?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Writer> { ?uri <http://dbpedia.org/ontology/almaMater> ?x } UNION { ?uri <http://dbpedia.org/ontology/education> ?x } { ?x <http://dbpedia.org/ontology/city> <http://dbpedia.org/resource/Istanbul> } UNION { ?x <http://dbpedia.org/property/city> <http://dbpedia.org/resource/Istanbul> } }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vedat_T\u00fcrkali"}}, "entities": [{"URI": "http://dbpedia.org/resource/Istanbul", "surface form": "Istanbul"}], "relations": [{"URI": "http://dbpedia.org/ontology/writer", "surface form": "writers"}, {"URI": "http://dbpedia.org/ontology/office", "surface form": "studied"}]}, {"id": "311", "question": [{"language": "en", "string": "Who is the mayor of Paris?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Paris dbo:mayor ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Anne_Hidalgo"}}, "entities": [{"URI": "http://dbpedia.org/resource/Paris", "surface form": "Paris"}], "relations": [{"URI": "http://dbpedia.org/ontology/mayor", "surface form": "mayor"}]}, {"id": "482", "question": [{"language": "en", "string": "What is the full name of Prince Charles?"}], "query": {"sparql": "SELECT DISTINCT ?s WHERE { <http://dbpedia.org/resource/Charles,_Prince_of_Wales> <http://dbpedia.org/ontology/alias> ?s . } "}, "entities": [{"URI": "http://dbpedia.org/resource/Charles,_Prince_of_Wales", "surface form": "Prince Charles"}], "relations": [{"URI": "http://dbpedia.org/property/name", "surface form": "name"}]}, {"id": "312", "question": [{"language": "en", "string": "What is the longest river in China?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/River> ; <http://dbpedia.org/ontology/country> <http://dbpedia.org/resource/China> ; <http://dbpedia.org/property/length> ?l } ORDER BY DESC(?l) OFFSET 0 LIMIT 1"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jin_River_(Sichuan)"}}, "entities": [{"URI": "http://dbpedia.org/resource/China", "surface form": "China"}], "relations": [{"URI": "http://dbpedia.org/ontology/river", "surface form": "river"}]}, {"id": "313", "question": [{"language": "en", "string": "Who discovered Ceres?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Ceres_(dwarf_planet)> dbo:discoverer ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Giuseppe_Piazzi"}}, "entities": [{"URI": "http://dbpedia.org/resource/Ceres_(dwarf_planet)", "surface form": "Ceres"}], "relations": [{"URI": "http://dbpedia.org/ontology/discoverer", "surface form": "discovered"}]}, {"id": "485", "question": [{"language": "en", "string": "When did princess Diana die?"}], "query": {"sparql": "SELECT DISTINCT xsd:date(?d) WHERE { <http://dbpedia.org/resource/Diana,_Princess_of_Wales> <http://dbpedia.org/ontology/deathDate> ?d }"}, "entities": [{"URI": "http://dbpedia.org/resource/Diana,_Princess_of_Wales", "surface form": "princess Diana"}], "relations": [{"URI": "http://dbpedia.org/ontology/deathDate", "surface form": "die"}]}, {"id": "486", "question": [{"language": "en", "string": "What do ants eat?"}], "query": {"sparql": {}}, "entities": [{"URI": "http://dbpedia.org/resource/Andover_Newton_Theological_School", "surface form": "ants"}], "relations": [{"URI": "http://dbpedia.org/ontology/course", "surface form": "eat"}]}, {"id": "314", "question": [{"language": "en", "string": "Who is the host of the BBC Wildlife Specials?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:BBC_Wildlife_Specials dbo:presenter ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/David_Attenborough"}}, "entities": [{"URI": "http://dbpedia.org/resource/BBC", "surface form": "BBC"}, {"URI": "http://dbpedia.org/resource/BBC_Wildlife_Specials", "surface form": "Wildlife Specials"}], "relations": [{"URI": "http://dbpedia.org/ontology/presenter", "surface form": "host"}]}, {"id": "315", "question": [{"language": "en", "string": "How many moons does Mars have?"}], "query": {"sparql": "SELECT DISTINCT ?n WHERE { <http://dbpedia.org/resource/Mars> <http://dbpedia.org/property/satellites> ?n }"}, "answers": {"n": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "2"}}, "entities": [{"URI": "http://dbpedia.org/resource/7805_Moons", "surface form": "moons"}, {"URI": "http://dbpedia.org/resource/Mars", "surface form": "Mars"}], "relations": []}, {"id": "316", "question": [{"language": "en", "string": "What was the first Queen album?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Album ; dbo:artist <http://dbpedia.org/resource/Queen_(band)> ; dbo:releaseDate ?d } ORDER BY ASC(?d) OFFSET 0 LIMIT 1"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Seven_Seas_of_Rhye"}}, "entities": [{"URI": "http://dbpedia.org/resource/Queen_(Queen_album)", "surface form": "Queen album"}], "relations": []}, {"id": "490", "question": [{"language": "en", "string": "Did Elvis Presley have children?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> ASK WHERE { res:Elvis_Presley dbo:child ?uri }"}, "entities": [{"URI": "http://dbpedia.org/resource/Elvis_Presley", "surface form": "Elvis Presley"}], "relations": [{"URI": "http://dbpedia.org/ontology/child", "surface form": "children"}]}, {"id": "317", "question": [{"language": "en", "string": "Give me a list of all Canadians that reside in the U.S."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/birthPlace> <http://dbpedia.org/resource/Canada> . ?uri <http://dbpedia.org/ontology/residence> <http://dbpedia.org/resource/United_States> . } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Glenn_Michibata"}}, "entities": [{"URI": "http://dbpedia.org/resource/Canadians", "surface form": "Canadians"}, {"URI": "http://dbpedia.org/resource/United_States", "surface form": "US"}], "relations": [{"URI": "http://dbpedia.org/ontology/residence", "surface form": "reside"}]}, {"id": "318", "question": [{"language": "en", "string": "Where is Syngman Rhee buried?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Syngman_Rhee dbo:restingPlace ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Seoul"}}, "entities": [{"URI": "http://dbpedia.org/resource/Syngman_Rhee", "surface form": "Syngman Rhee"}], "relations": [{"URI": "http://dbpedia.org/ontology/restingPlace", "surface form": "buried"}]}, {"id": "319", "question": [{"language": "en", "string": "In which countries do people speak Japanese?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Country ; dbo:language res:Japanese_language }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Taiwan_under_Japanese_rule"}}, "entities": [{"URI": "http://dbpedia.org/resource/Countries_of_the_United_Kingdom", "surface form": "countries"}, {"URI": "http://dbpedia.org/resource/Japan", "surface form": "Japanese"}, {"URI": "http://dbpedia.org/resource/Japanese", "surface form": "Japanese"}], "relations": [{"URI": "http://dbpedia.org/ontology/language", "surface form": "speak"}, {"URI": "http://dbpedia.org/ontology/country", "surface form": ""}, {"URI": "http://dbpedia.org/ontology/country", "surface form": ""}]}, {"id": "494", "question": [{"language": "en", "string": "Who is the king of the Netherlands?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { res:Netherlands dbo:leader ?uri . ?uri rdf:type dbo:Royalty }"}, "entities": [{"URI": "http://dbpedia.org/resource/Netherlands", "surface form": "Netherlands"}], "relations": [{"URI": "http://dbpedia.org/ontology/leader", "surface form": "king"}]}, {"id": "320", "question": [{"language": "en", "string": "When did the Dodo become extinct?"}], "query": {"sparql": "SELECT DISTINCT ?s WHERE { <http://dbpedia.org/resource/Dodo> <http://dbpedia.org/property/extinct> ?s . } "}, "answers": {"s": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "1662"}}, "entities": [{"URI": "http://dbpedia.org/resource/Dodo", "surface form": "Dodo"}], "relations": [{"URI": "http://dbpedia.org/ontology/abstract", "surface form": "extinct"}]}, {"id": "321", "question": [{"language": "en", "string": "Show me all Czech movies."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Film> ; <http://dbpedia.org/ontology/country> <http://dbpedia.org/resource/Czech_Republic> }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Boredom_in_Brno"}}, "entities": [{"URI": "http://dbpedia.org/resource/Czech_Republic", "surface form": "Czech movies"}, {"URI": "http://dbpedia.org/resource/The_Movies_(film)", "surface form": "Czech movies"}], "relations": [{"URI": "http://dbpedia.org/ontology/show", "surface form": "show"}, {"URI": "http://dbpedia.org/ontology/country", "surface form": ""}]}, {"id": "322", "question": [{"language": "en", "string": "Which rivers flow into the North Sea?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/River> ; <http://dbpedia.org/ontology/riverMouth> <http://dbpedia.org/resource/North_Sea> }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Water_of_Cruden"}}, "entities": [{"URI": "http://dbpedia.org/resource/North_Sea", "surface form": "North Sea"}], "relations": [{"URI": "http://dbpedia.org/ontology/operator", "surface form": "rivers"}, {"URI": "http://dbpedia.org/property/float", "surface form": "flow"}]}, {"id": "323", "question": [{"language": "en", "string": "When did Operation Overlord commence?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?d WHERE { res:Operation_Overlord dbo:date ?d }"}, "answers": {"d": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#date", "value": "1944-08-30"}}, "entities": [{"URI": "http://dbpedia.org/resource/Operation_Overlord", "surface form": "Operation Overlord commence"}], "relations": [{"URI": "http://dbpedia.org/ontology/date", "surface form": "when"}]}, {"id": "324", "question": [{"language": "en", "string": "Where do the Red Sox play?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Boston_Red_Sox> <http://dbpedia.org/property/ballpark> ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Fenway_Park"}}, "entities": [{"URI": "http://dbpedia.org/resource/Boston_Red_Sox", "surface form": "Red Sox"}], "relations": [{"URI": "http://dbpedia.org/ontology/team", "surface form": "play"}]}, {"id": "325", "question": [{"language": "en", "string": "In which time zone is Rome?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Rome dbo:timeZone ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Central_European_Time"}}, "entities": [{"URI": "http://dbpedia.org/resource/Rome", "surface form": "Rome"}], "relations": [{"URI": "http://dbpedia.org/ontology/timeZone", "surface form": "time zone"}]}, {"id": "326", "question": [{"language": "en", "string": "Give me a list of all critically endangered birds."}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dct: <http://purl.org/dc/terms/> PREFIX dbc: <http://dbpedia.org/resource/Category:> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri ?p WHERE { ?uri rdf:type dbo:Bird { ?uri dbo:conservationStatus \"CR\" } UNION { ?uri dct:subject dbc:Critically_endangered_animals } }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mara\u00f1\u00f3n_spinetail"}}, "entities": [{"URI": "http://dbpedia.org/resource/Endangered_Species_(H.A.W.K._album)", "surface form": "Endangered"}], "relations": [{"URI": "http://dbpedia.org/ontology/principal", "surface form": "critically"}, {"URI": "http://dbpedia.org/ontology/date", "surface form": "birds"}]}, {"id": "327", "question": [{"language": "en", "string": "How much did the Lego Movie cost?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?n WHERE { res:The_Lego_Movie dbo:budget ?n }"}, "answers": {"n": {"type": "typed-literal", "datatype": "http://dbpedia.org/datatype/usDollar", "value": "60.0"}}, "entities": [{"URI": "http://dbpedia.org/resource/The_Lego_Movie", "surface form": "Lego Movie"}], "relations": [{"URI": "http://dbpedia.org/ontology/budget", "surface form": "cost"}]}, {"id": "328", "question": [{"language": "en", "string": "What was the original occupation of the inventor of Lego?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Lego> <http://dbpedia.org/property/inventor> ?x . ?x <http://dbpedia.org/property/occupation> ?uri . } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Carpenter"}}, "entities": [{"URI": "http://dbpedia.org/resource/Lego", "surface form": "Lego"}], "relations": [{"URI": "http://dbpedia.org/ontology/industry", "surface form": "original occupation"}, {"URI": "http://dbpedia.org/property/founder", "surface form": "inventor"}]}, {"id": "329", "question": [{"language": "en", "string": "Which countries have more than ten volcanoes?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x a <http://dbpedia.org/ontology/Volcano> ; <http://dbpedia.org/ontology/locatedInArea> ?uri . ?uri a <http://dbpedia.org/ontology/Country> } GROUP BY ?uri HAVING ( COUNT(?x) > 10 )"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Japan"}}, "entities": [{"URI": "http://dbpedia.org/resource/Countries_of_the_United_Kingdom", "surface form": "countries"}, {"URI": "http://dbpedia.org/resource/Volcanoes_National_Park", "surface form": "volcanoes"}], "relations": []}, {"id": "505", "question": [{"language": "en", "string": "Show me all U.S. states."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/class/yago/StatesOfTheUnitedStates> . } "}, "entities": [{"URI": "http://dbpedia.org/resource/United_States", "surface form": "US"}], "relations": [{"URI": "http://dbpedia.org/ontology/show", "surface form": "show"}]}, {"id": "330", "question": [{"language": "en", "string": "Who wrote the Game of Thrones theme?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Game_of_Thrones dbo:composer ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ramin_Djawadi"}}, "entities": [{"URI": "http://dbpedia.org/resource/Game_of_Thrones", "surface form": "Game of Thrones"}], "relations": [{"URI": "http://dbpedia.org/ontology/composer", "surface form": "wrote"}]}, {"id": "331", "question": [{"language": "en", "string": "How many calories does a baguette have?"}], "query": {"sparql": "SELECT DISTINCT ?n WHERE { <http://dbpedia.org/resource/Baguette> <http://dbpedia.org/property/calories> ?n }"}, "answers": {"n": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "263"}}, "entities": [{"URI": "http://dbpedia.org/resource/Baguette", "surface form": "baguette"}], "relations": [{"URI": "http://dbpedia.org/property/calories", "surface form": "calories"}]}, {"id": "508", "question": [{"language": "en", "string": "Can you cry underwater?"}], "query": {"sparql": {}}, "entities": [{"URI": "http://dbpedia.org/resource/Underwater", "surface form": "underwater"}], "relations": []}, {"id": "332", "question": [{"language": "en", "string": "Which companies produce hovercrafts?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Company ; dbo:product res:Hovercraft }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/HJ_Shipbuilding_&_Construction"}}, "entities": [{"URI": "http://dbpedia.org/resource/Companies_listed_on_the_New_York_Stock_Exchange_(J)", "surface form": "companies"}, {"URI": "http://dbpedia.org/resource/Hovercraft", "surface form": "Hovercrafts"}], "relations": [{"URI": "http://dbpedia.org/ontology/producer", "surface form": "produce"}]}, {"id": "333", "question": [{"language": "en", "string": "How many emperors did China have?"}], "query": {"sparql": "SELECT COUNT(DISTINCT ?uri AS ?uri) WHERE { ?uri <http://dbpedia.org/property/title> <http://dbpedia.org/resource/Emperor_of_China> . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "242"}}, "entities": [{"URI": "http://dbpedia.org/resource/China", "surface form": "China"}], "relations": [{"URI": "http://dbpedia.org/ontology/leader", "surface form": "emperors"}]}, {"id": "334", "question": [{"language": "en", "string": "Show me hiking trails in the Grand Canyon where there's no danger of flash floods."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/trailheads> <http://dbpedia.org/resource/Grand_Canyon> FILTER NOT EXISTS { ?uri <http://dbpedia.org/property/hazards> <http://dbpedia.org/resource/Flash_flood> } }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bright_Angel_Trail"}}, "entities": [{"URI": "http://dbpedia.org/resource/Hiking", "surface form": "hiking trails"}, {"URI": "http://dbpedia.org/resource/Grand_Canyon", "surface form": "Grand Canyon"}], "relations": [{"URI": "http://dbpedia.org/ontology/show", "surface form": "show"}, {"URI": "http://dbpedia.org/ontology/leader", "surface form": "danger"}, {"URI": "http://dbpedia.org/ontology/band", "surface form": "flash floods"}]}, {"id": "335", "question": [{"language": "en", "string": "In which ancient empire could you pay with cocoa beans?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { ?uri dbo:currency res:Cocoa_bean }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Aztec_Empire"}}, "entities": [{"URI": "http://dbpedia.org/resource/Cocoa_bean", "surface form": "cocoa beans"}], "relations": [{"URI": "http://dbpedia.org/ontology/country", "surface form": "ancient empire"}, {"URI": "http://dbpedia.org/ontology/currency", "surface form": "pay"}]}, {"id": "336", "question": [{"language": "en", "string": "How did Michael Jackson die?"}], "query": {"sparql": "SELECT DISTINCT ?s WHERE { <http://dbpedia.org/resource/Michael_Jackson> <http://dbpedia.org/property/deathCause> ?s }"}, "answers": {"s": {"type": "uri", "value": "http://dbpedia.org/resource/Death_of_Michael_Jackson"}}, "entities": [{"URI": "http://dbpedia.org/resource/Michael_Jackson", "surface form": "Michael Jackson"}], "relations": [{"URI": "http://dbpedia.org/ontology/deathDate", "surface form": "die"}]}, {"id": "337", "question": [{"language": "en", "string": "Which space probes were sent into orbit around the sun?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbc: <http://dbpedia.org/resource/Category:> PREFIX dct: <http://purl.org/dc/terms/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?s WHERE { ?s dct:subject dbc:Missions_to_the_Sun ; rdf:type ?type FILTER ( ?type IN (dbo:Satellite, dbo:ArtificialSatellite) ) }"}, "answers": {"s": {"type": "uri", "value": "http://dbpedia.org/resource/Geomagnetic_Field_Monitoring_Program_of_SUPARCO"}}, "entities": [], "relations": [{"URI": "http://dbpedia.org/ontology/area", "surface form": "space probes"}, {"URI": "http://dbpedia.org/ontology/course", "surface form": "orbit"}, {"URI": "http://dbpedia.org/ontology/year", "surface form": "sun"}]}, {"id": "338", "question": [{"language": "en", "string": "When was Coca Cola invented?"}], "query": {"sparql": "SELECT DISTINCT ?n WHERE { <http://dbpedia.org/resource/Coca-Cola> <http://dbpedia.org/property/introduced> ?n . } "}, "answers": {"n": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#date", "value": "1886-05-08"}}, "entities": [{"URI": "http://dbpedia.org/resource/Coca-Cola", "surface form": "Coca Cola"}], "relations": [{"URI": "http://dbpedia.org/ontology/creator", "surface form": "invented"}]}, {"id": "339", "question": [{"language": "en", "string": "What is the biggest stadium in Spain?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Stadium ; dbo:location res:Spain ; dbo:seatingCapacity ?n } ORDER BY DESC(?n) OFFSET 0 LIMIT 1"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Camp_Nou"}}, "entities": [{"URI": "http://dbpedia.org/resource/Spain", "surface form": "Spain"}], "relations": [{"URI": "http://dbpedia.org/property/stadium", "surface form": "biggest stadium"}]}, {"id": "340", "question": [{"language": "en", "string": "On which day is Columbus Day?"}], "query": {"sparql": "SELECT DISTINCT ?d WHERE { <http://dbpedia.org/resource/Columbus_Day> <http://dbpedia.org/property/date> ?d . } "}, "answers": {"d": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#gMonthDay", "value": "--10-12"}}, "entities": [{"URI": "http://dbpedia.org/resource/Columbus_Day", "surface form": "Columbus Day"}], "relations": [{"URI": "http://dbpedia.org/ontology/day", "surface form": "day"}]}, {"id": "341", "question": [{"language": "en", "string": "How short is the shortest active NBA player?"}], "query": {"sparql": "SELECT DISTINCT ?n WHERE { ?x a <http://dbpedia.org/ontology/BasketballPlayer> ; <http://dbpedia.org/ontology/league> <http://dbpedia.org/resource/National_Basketball_Association> ; <http://dbpedia.org/ontology/height> ?n FILTER NOT EXISTS { ?x <http://dbpedia.org/ontology/activeYearsEndYear> ?d } } ORDER BY ASC(?n) OFFSET 0 LIMIT 1"}, "answers": {"n": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#double", "value": "1.7526"}}, "entities": [{"URI": "http://dbpedia.org/resource/National_Basketball_Association", "surface form": "NBA"}, {"URI": "http://dbpedia.org/resource/Shortest_job_next", "surface form": "shortest active  player"}], "relations": [{"URI": "http://dbpedia.org/ontology/thumbnail", "surface form": "short"}]}, {"id": "519", "question": [{"language": "en", "string": "Whom did Lance Bass marry?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { {<http://dbpedia.org/resource/Lance_Bass> dbo:spouse ?uri} UNION {?uri dbo:spouse <http://dbpedia.org/resource/Lance_Bass>} }"}, "entities": [{"URI": "http://dbpedia.org/resource/Lance_Bass", "surface form": "Lance Bass"}], "relations": [{"URI": "http://dbpedia.org/ontology/spouse", "surface form": "marry"}]}, {"id": "342", "question": [{"language": "en", "string": "What form of government does Russia have?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Russia dbo:governmentType ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Federalism"}}, "entities": [{"URI": "http://dbpedia.org/resource/Russia", "surface form": "Russia"}], "relations": [{"URI": "http://dbpedia.org/ontology/type", "surface form": "form"}, {"URI": "http://dbpedia.org/ontology/governmentType", "surface form": "government"}]}, {"id": "343", "question": [{"language": "en", "string": "What movies does Jesse Eisenberg play in?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Film> ; <http://dbpedia.org/ontology/starring> <http://dbpedia.org/resource/Jesse_Eisenberg> }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/American_Ultra"}}, "entities": [{"URI": "http://dbpedia.org/resource/Jesse_Eisenberg", "surface form": "Jesse Eisenberg"}], "relations": [{"URI": "http://dbpedia.org/ontology/film", "surface form": "movies"}, {"URI": "http://dbpedia.org/ontology/starring", "surface form": "play"}]}, {"id": "522", "question": [{"language": "en", "string": "What color expresses loyalty?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/connotation> <http://dbpedia.org/resource/Loyalty> . }"}, "entities": [], "relations": [{"URI": "http://dbpedia.org/ontology/hairColor", "surface form": "color"}, {"URI": "http://dbpedia.org/ontology/connotation", "surface form": "expresses"}, {"URI": "http://dbpedia.org/ontology/allegiance", "surface form": "loyalty"}]}, {"id": "344", "question": [{"language": "en", "string": "Show me all museums in London."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Museum> ; <http://dbpedia.org/ontology/location> <http://dbpedia.org/resource/London> }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vagina_Museum"}}, "entities": [{"URI": "http://dbpedia.org/resource/Museums_in_Aalborg", "surface form": "museums"}, {"URI": "http://dbpedia.org/resource/London", "surface form": "London"}], "relations": [{"URI": "http://dbpedia.org/ontology/show", "surface form": "show"}]}, {"id": "524", "question": [{"language": "en", "string": "Give me all South American countries."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/class/yago/SouthAmericanCountries> . }"}, "entities": [{"URI": "http://dbpedia.org/resource/Summit_of_South_American-Arab_Countries", "surface form": "South American countries"}], "relations": []}, {"id": "345", "question": [{"language": "en", "string": "Who is the coach of Ankara's ice hockey team?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { ?x dbo:city res:Ankara ; dbo:league res:Turkish_Ice_Hockey_First_League ; dbo:coach ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/\u0130brahim_O\u011fuz"}}, "entities": [{"URI": "http://dbpedia.org/resource/Ankara", "surface form": "Ankara"}, {"URI": "http://dbpedia.org/resource/Greece_national_ice_hockey_team", "surface form": " ice hockey team"}], "relations": [{"URI": "http://dbpedia.org/ontology/coach", "surface form": "coach"}]}, {"id": "346", "question": [{"language": "en", "string": "Who is the son of Sonny and Cher?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { ?uri dbo:parent res:Cher ; dbo:parent res:Sonny_Bono }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chaz_Bono"}}, "entities": [{"URI": "http://dbpedia.org/resource/Cher", "surface form": "Sonny and Cher"}, {"URI": "http://dbpedia.org/resource/Sonny_Bono", "surface form": "Sonny and Cher"}], "relations": [{"URI": "http://dbpedia.org/ontology/child", "surface form": "son"}]}, {"id": "527", "question": [{"language": "en", "string": "What are the five boroughs of New York?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?uri dbo:governmentType <http://dbpedia.org/resource/Borough_(New_York_City)> }"}, "entities": [{"URI": "http://dbpedia.org/resource/New_York", "surface form": "New York"}], "relations": [{"URI": "http://dbpedia.org/ontology/municipality", "surface form": "boroughs"}]}, {"id": "347", "question": [{"language": "en", "string": "Show me Hemingway's autobiography."}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { ?uri dbo:author res:Ernest_Hemingway ; dbo:literaryGenre res:Autobiography }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/A_Moveable_Feast"}}, "entities": [{"URI": "http://dbpedia.org/resource/Hemingway_House", "surface form": "Hemingway"}, {"URI": "http://dbpedia.org/resource/Autobiography", "surface form": " autobiography"}], "relations": [{"URI": "http://dbpedia.org/ontology/show", "surface form": "show"}]}, {"id": "348", "question": [{"language": "en", "string": "What kind of music did Lou Reed play?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Lou_Reed> <http://dbpedia.org/ontology/genre> ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Art_rock"}}, "entities": [{"URI": "http://dbpedia.org/resource/Lou_Reed", "surface form": "Lou Reed"}], "relations": [{"URI": "http://dbpedia.org/ontology/musicalBand", "surface form": "music"}, {"URI": "http://dbpedia.org/ontology/starring", "surface form": "play"}]}, {"id": "530", "question": [{"language": "en", "string": "In which city does Sylvester Stallone live?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:City . res:Sylvester_Stallone dbo:residence ?uri }"}, "entities": [{"URI": "http://dbpedia.org/resource/Sylvester_Stallone", "surface form": "Sylvester Stallone"}], "relations": [{"URI": "http://dbpedia.org/ontology/city", "surface form": "city"}, {"URI": "http://dbpedia.org/ontology/residence", "surface form": "live"}]}, {"id": "531", "question": [{"language": "en", "string": "Who was Vincent van Gogh inspired by?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { ?uri dbo:influenced res:Vincent_van_Gogh }"}, "entities": [{"URI": "http://dbpedia.org/resource/Vincent_van_Gogh", "surface form": "Vincent van Gogh"}], "relations": [{"URI": "http://dbpedia.org/ontology/influenced", "surface form": "inspired"}]}, {"id": "532", "question": [{"language": "en", "string": "What are the names of the Teenage Mutant Ninja Turtles?"}], "query": {"sparql": "PREFIX foaf:<http://xmlns.com/foaf/0.1/> SELECT DISTINCT ?s WHERE { <http://dbpedia.org/resource/Teenage_Mutant_Ninja_Turtles> <http://dbpedia.org/property/members> ?x . ?x foaf:givenName ?s }"}, "entities": [{"URI": "http://dbpedia.org/resource/Teenage_Mutant_Ninja_Turtles", "surface form": "Teenage Mutant Ninja Turtles"}], "relations": [{"URI": "http://dbpedia.org/ontology/athletics", "surface form": "names"}]}, {"id": "533", "question": [{"language": "en", "string": "What are the zodiac signs?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/element> <http://dbpedia.org/resource/Astrological_sign> . }"}, "entities": [{"URI": "http://dbpedia.org/resource/Astrological_sign", "surface form": "zodiac signs"}], "relations": []}, {"id": "349", "question": [{"language": "en", "string": "What languages do they speak in Pakistan?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Pakistan> <http://dbpedia.org/ontology/language> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Memoni_language"}}, "entities": [{"URI": "http://dbpedia.org/resource/Pakistan", "surface form": "Pakistan"}], "relations": [{"URI": "http://dbpedia.org/ontology/language", "surface form": "languages"}, {"URI": "http://dbpedia.org/ontology/language", "surface form": "speak"}]}, {"id": "535", "question": [{"language": "en", "string": "Who became president after JFK died?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/John_F._Kennedy> <http://dbpedia.org/property/presidentEnd> ?x . ?uri <http://dbpedia.org/property/presidentStart> ?x; a <http://dbpedia.org/ontology/Person>. }"}, "entities": [{"URI": "http://dbpedia.org/resource/John_F._Kennedy", "surface form": "JFK"}], "relations": [{"URI": "http://dbpedia.org/ontology/president", "surface form": "president"}, {"URI": "http://dbpedia.org/ontology/deathDate", "surface form": "died"}]}, {"id": "536", "question": [{"language": "en", "string": "In what city is the Heineken brewery?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Heineken dbo:manufacturer ?x . ?x dbo:locationCity ?uri }"}, "entities": [{"URI": "http://dbpedia.org/resource/Rosmalen_Grass_Court_Championships", "surface form": "Heineken brewery"}], "relations": [{"URI": "http://dbpedia.org/ontology/city", "surface form": "city"}]}, {"id": "537", "question": [{"language": "en", "string": "What is Elon Musk famous for?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Elon_Musk> <http://dbpedia.org/ontology/knownFor> ?uri }"}, "entities": [{"URI": "http://dbpedia.org/resource/Elon_Musk", "surface form": "Elon Musk famous"}], "relations": []}, {"id": "350", "question": [{"language": "en", "string": "What is Batman's real name?"}], "query": {"sparql": "SELECT DISTINCT ?label WHERE { <http://dbpedia.org/resource/Batman> <http://xmlns.com/foaf/0.1/name> ?label FILTER ( str(?label) != \"Batman\" ) }"}, "answers": {"label": {"type": "literal", "xml:lang": "en", "value": "Bruce Wayne"}}, "entities": [{"URI": "http://dbpedia.org/resource/Batman", "surface form": "Batman"}, {"URI": "http://dbpedia.org/resource/Real-name_system", "surface form": " real name"}], "relations": []}, {"id": "351", "question": [{"language": "en", "string": "When is the movie Worst Case Scenario going to be in cinemas in the Netherlands?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> PREFIX dbr: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX foaf: <http://xmlns.com/foaf/0.1/> SELECT DISTINCT ?rel WHERE { <http://dbpedia.org/resource/Worst_Case_Scenario_(film)> ?p ?o ; dbo:releaseDate ?rel FILTER contains(lcase(str(?o)), \"netherlands\") }"}, "answers": {"rel": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#date", "value": "2008-01-30"}}, "entities": [{"URI": "http://dbpedia.org/resource/Worst-case_scenario", "surface form": "movie Worst Case Scenario"}, {"URI": "http://dbpedia.org/resource/Netherlands", "surface form": "Netherlands"}], "relations": [{"URI": "http://dbpedia.org/ontology/picture", "surface form": "cinemas"}]}, {"id": "540", "question": [{"language": "en", "string": "What were the main discoveries of the Mars rover Curiosity?"}], "query": {"sparql": {}}, "entities": [{"URI": "http://dbpedia.org/resource/Curiosity_(rover)", "surface form": "Mars rover Curiosity"}], "relations": [{"URI": "http://dbpedia.org/ontology/head", "surface form": "main discoveries"}]}, {"id": "541", "question": [{"language": "en", "string": "Butch Otter is the governor of which U.S. state?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/class/yago/WikicatStatesOfTheUnitedStates> ; <http://dbpedia.org/property/governor> <http://dbpedia.org/resource/Butch_Otter> }"}, "entities": [{"URI": "http://dbpedia.org/resource/Butch_Otter", "surface form": "butch Otter"}, {"URI": "http://dbpedia.org/resource/United_States", "surface form": "US"}], "relations": [{"URI": "http://dbpedia.org/ontology/governor", "surface form": "governor"}]}, {"id": "542", "question": [{"language": "en", "string": "What is the melting point of copper?"}], "query": {"sparql": {}}, "entities": [], "relations": [{"URI": "http://dbpedia.org/ontology/battle", "surface form": "melting"}, {"URI": "http://dbpedia.org/ontology/spike", "surface form": "copper"}]}, {"id": "543", "question": [{"language": "en", "string": "Give me all sister cities of Brno."}], "query": {"sparql": {}}, "entities": [{"URI": "http://dbpedia.org/resource/Brno", "surface form": "Brno"}], "relations": [{"URI": "http://dbpedia.org/ontology/city", "surface form": "sister cities"}]}, {"id": "352", "question": [{"language": "en", "string": "How tall is Amazon Eve?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?height WHERE { res:Amazon_Eve dbo:height ?height }"}, "answers": {"height": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#double", "value": "1.8288"}}, "entities": [{"URI": "http://dbpedia.org/resource/Amazon_Eve", "surface form": "Amazon Eve"}], "relations": [{"URI": "http://dbpedia.org/ontology/height", "surface form": "tall"}]}, {"id": "545", "question": [{"language": "en", "string": "What is the average temperature on Hawaii?"}], "query": {"sparql": {}}, "entities": [{"URI": "http://dbpedia.org/resource/Hawaii", "surface form": "Hawaii"}], "relations": [{"URI": "http://dbpedia.org/ontology/temperature", "surface form": "average temperature"}]}, {"id": "353", "question": [{"language": "en", "string": "Which weapons did Heckler & Koch develop?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Weapon> ; <http://dbpedia.org/property/designer> <http://dbpedia.org/resource/Heckler_&_Koch> }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ak_4_rifle"}}, "entities": [{"URI": "http://dbpedia.org/resource/Heckler_&_Koch", "surface form": "Heckler & Koch"}], "relations": [{"URI": "http://dbpedia.org/ontology/numberOfSeasons", "surface form": "weapons"}, {"URI": "http://dbpedia.org/ontology/product", "surface form": "develop"}]}, {"id": "547", "question": [{"language": "en", "string": "Who invented the zipper?"}], "query": {"sparql": {}}, "entities": [], "relations": [{"URI": "http://dbpedia.org/ontology/engineer", "surface form": "invented"}, {"URI": "http://dbpedia.org/ontology/child", "surface form": "zipper"}]}, {"id": "354", "question": [{"language": "en", "string": "Where is Fort Knox located?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Fort_Knox> <http://dbpedia.org/ontology/location> ?uri. ?uri a <http://dbpedia.org/ontology/Place>. }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kentucky"}}, "entities": [{"URI": "http://dbpedia.org/resource/Fort_Knox", "surface form": "Fort Knox"}], "relations": [{"URI": "http://dbpedia.org/property/location", "surface form": "located"}]}, {"id": "355", "question": [{"language": "en", "string": "Who created Batman?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Batman dbo:creator ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bill_Finger"}}, "entities": [{"URI": "http://dbpedia.org/resource/Batman", "surface form": "Batman"}], "relations": [{"URI": "http://dbpedia.org/ontology/creator", "surface form": "created"}]}, {"id": "356", "question": [{"language": "en", "string": "Which politicians were married to a German?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Politician> ; <http://dbpedia.org/ontology/spouse> ?spouse { ?spouse <http://dbpedia.org/ontology/birthPlace> <http://dbpedia.org/resource/Germany> } UNION { ?spouse <http://dbpedia.org/ontology/birthPlace> ?p . ?p <http://dbpedia.org/ontology/country> <http://dbpedia.org/resource/Germany> } }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Marcus_Pretzell"}}, "entities": [{"URI": "http://dbpedia.org/resource/Politicians_of_The_Wire", "surface form": "politicians"}, {"URI": "http://dbpedia.org/resource/Germany", "surface form": "German"}, {"URI": "http://dbpedia.org/resource/German", "surface form": "German"}], "relations": [{"URI": "http://dbpedia.org/ontology/spouse", "surface form": "married"}, {"URI": "http://dbpedia.org/ontology/country", "surface form": ""}, {"URI": "http://dbpedia.org/ontology/country", "surface form": ""}]}, {"id": "357", "question": [{"language": "en", "string": "When was Jack Wolfskin founded?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT xsd:date(?year) WHERE { res:Jack_Wolfskin dbo:foundingYear ?year }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#date", "value": "1981-01-01"}}, "entities": [{"URI": "http://dbpedia.org/resource/Jack_Wolfskin", "surface form": "Jack Wolfskin"}], "relations": [{"URI": "http://dbpedia.org/ontology/foundingYear", "surface form": "founded"}]}, {"id": "552", "question": [{"language": "en", "string": "Which budget did the first movie of Zdenek Sverak have?"}], "query": {"sparql": {}}, "entities": [{"URI": "http://dbpedia.org/resource/Chad_Zdenek", "surface form": "Zdenek Sverak"}], "relations": [{"URI": "http://dbpedia.org/ontology/budget", "surface form": "budget"}, {"URI": "http://dbpedia.org/ontology/picture", "surface form": "movie"}]}, {"id": "553", "question": [{"language": "en", "string": "How many big fires struck Paris during the Middle Ages?"}], "query": {"sparql": {}}, "entities": [{"URI": "http://dbpedia.org/resource/Paris", "surface form": "Paris "}, {"URI": "http://dbpedia.org/resource/Early_Middle_Ages", "surface form": " the Middle Ages"}], "relations": [{"URI": "http://dbpedia.org/ontology/discharge", "surface form": "fires"}, {"URI": "http://dbpedia.org/ontology/place", "surface form": "struck"}, {"URI": "http://dbpedia.org/property/date", "surface form": "when"}]}, {"id": "554", "question": [{"language": "en", "string": "Is Pamela Anderson a vegan?"}], "query": {"sparql": "PREFIX dbr: <http://dbpedia.org/resource/> ASK WHERE { dbr:Pamela_Anderson a <http://dbpedia.org/class/yago/WikicatAmericanVegans> }"}, "entities": [{"URI": "http://dbpedia.org/resource/Pamela_Anderson", "surface form": "Pamela Anderson"}, {"URI": "http://dbpedia.org/resource/Vegan_Virgin_Valentine", "surface form": "vegan"}], "relations": []}, {"id": "555", "question": [{"language": "en", "string": "How often was Michael Jordan divorced?"}], "query": {"sparql": {}}, "entities": [{"URI": "http://dbpedia.org/resource/Michael_Jordan", "surface form": "Michael Jordan"}], "relations": [{"URI": "http://dbpedia.org/property/split", "surface form": "divorced"}]}, {"id": "556", "question": [{"language": "en", "string": "What is the most beautiful painting?"}], "query": {"sparql": {}}, "entities": [], "relations": [{"URI": "http://dbpedia.org/ontology/production", "surface form": "beautiful painting"}]}, {"id": "557", "question": [{"language": "en", "string": "Give me all animal species that live in the Amazon rainforest."}], "query": {"sparql": {}}, "entities": [{"URI": "http://dbpedia.org/resource/Amazon_rainforest", "surface form": "Amazon rainforest"}], "relations": [{"URI": "http://dbpedia.org/property/type", "surface form": "animal species"}, {"URI": "http://dbpedia.org/ontology/populationTotal", "surface form": "live"}]}, {"id": "358", "question": [{"language": "en", "string": "In which studio did the Beatles record their first album?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbp: <http://dbpedia.org/property/> PREFIX dbr: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> PREFIX db: <http://dbpedia.org/> 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"}, "answers": {"studio": {"type": "literal", "xml:lang": "en", "value": "EMI, London"}}, "entities": [{"URI": "http://dbpedia.org/resource/Beatles_VI", "surface form": "Beatles"}], "relations": [{"URI": "http://dbpedia.org/property/studio", "surface form": "studio"}, {"URI": "http://dbpedia.org/ontology/recordLabel", "surface form": "record"}, {"URI": "http://dbpedia.org/ontology/album", "surface form": "album"}]}, {"id": "359", "question": [{"language": "en", "string": "How many gold medals did Michael Phelps win at the 2008 Olympics?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> SELECT Count(?sub) as ?c WHERE { ?sub dbo:goldMedalist dbr:Michael_Phelps . filter (contains (str(?sub), \"2008\") && contains (str(?sub), \"Olympics\")) }"}, "answers": {"c": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "8"}}, "entities": [{"URI": "http://dbpedia.org/resource/Michael_Phelps", "surface form": "Michael Phelps"}, {"URI": "http://dbpedia.org/resource/2008_Summer_Olympics", "surface form": "2008 Olympics"}], "relations": [{"URI": "http://dbpedia.org/ontology/goldMedalist", "surface form": "gold medals"}, {"URI": "http://dbpedia.org/ontology/award", "surface form": "win"}]}, {"id": "360", "question": [{"language": "en", "string": "How deep is Lake Chiemsee?"}], "query": {"sparql": "SELECT DISTINCT ?n WHERE { <http://dbpedia.org/resource/Chiemsee> <http://dbpedia.org/ontology/maximumDepth> ?n }"}, "answers": {"n": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#double", "value": "72.7"}}, "entities": [{"URI": "http://dbpedia.org/resource/Chiemsee", "surface form": "Lake Chiemsee"}], "relations": [{"URI": "http://dbpedia.org/ontology/capital", "surface form": "deep"}]}, {"id": "361", "question": [{"language": "en", "string": "Give me the grandchildren of Elvis Presley."}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Elvis_Presley dbo:child ?child . ?child dbo:child ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Riley_Keough"}}, "entities": [{"URI": "http://dbpedia.org/resource/Elvis_Presley", "surface form": "Elvis Presley"}], "relations": [{"URI": "http://dbpedia.org/ontology/child", "surface form": "grandchildren"}]}, {"id": "362", "question": [{"language": "en", "string": "What does ICRO stand for?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/abbreviation> \"ICRO\" }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Irish_Cave_Rescue_Organisation"}}, "entities": [{"URI": "http://dbpedia.org/resource/Icrossing_Inc", "surface form": "ICRO"}], "relations": [{"URI": "http://dbpedia.org/ontology/position", "surface form": "stand"}]}, {"id": "363", "question": [{"language": "en", "string": "When was Olof Palme shot?"}], "query": {"sparql": "SELECT DISTINCT ?date WHERE { <http://dbpedia.org/resource/Olof_Palme> <http://dbpedia.org/ontology/deathDate> ?date }"}, "answers": {"date": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#date", "value": "1986-02-28"}}, "entities": [{"URI": "http://dbpedia.org/resource/Olof_Palme", "surface form": "Olof Palme"}], "relations": [{"URI": "http://dbpedia.org/ontology/discharge", "surface form": "shot"}]}, {"id": "364", "question": [{"language": "en", "string": "List all the musicals with music by Leonard Bernstein."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Musical> ; <http://dbpedia.org/ontology/musicBy> <http://dbpedia.org/resource/Leonard_Bernstein> }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Side_by_Side_by_Sondheim"}}, "entities": [{"URI": "http://dbpedia.org/resource/Leonard_Bernstein", "surface form": "Leonard Bernstein"}], "relations": [{"URI": "http://dbpedia.org/ontology/show", "surface form": "musicals"}, {"URI": "http://dbpedia.org/ontology/musicBy", "surface form": "music"}]}, {"id": "565", "question": [{"language": "en", "string": "Which airports does Yeti Airlines serve?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Yeti_Airlines dbo:targetAirport ?uri }"}, "entities": [{"URI": "http://dbpedia.org/resource/Yeti_Airlines", "surface form": "Yeti Airlines"}], "relations": [{"URI": "http://dbpedia.org/ontology/hubAirport", "surface form": "airports"}, {"URI": "http://dbpedia.org/ontology/colour", "surface form": "serve"}]}, {"id": "365", "question": [{"language": "en", "string": "Which movies starring Mickey Rourke were directed by Guy Ritchie?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Film ; dbo:starring res:Mickey_Rourke ; dbo:director res:Guy_Ritchie }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Hire"}}, "entities": [{"URI": "http://dbpedia.org/resource/Mickey_Rourke", "surface form": "Mickey Rourke"}, {"URI": "http://dbpedia.org/resource/Guy_Ritchie", "surface form": "Guy Ritchie"}], "relations": [{"URI": "http://dbpedia.org/ontology/film", "surface form": "movies"}, {"URI": "http://dbpedia.org/ontology/starring", "surface form": "starring"}, {"URI": "http://dbpedia.org/ontology/president", "surface form": "directed"}]}, {"id": "567", "question": [{"language": "en", "string": "Is Darth Vader Luke\u2019s father?"}], "query": {"sparql": "ASK WHERE { <http://dbpedia.org/resource/Darth_Vader> <http://dbpedia.org/ontology/child> <http://dbpedia.org/resource/Luke_Skywalker> }"}, "entities": [{"URI": "http://dbpedia.org/resource/Darth_Vader", "surface form": "Darth Vader Luke\u2019s father"}], "relations": []}, {"id": "568", "question": [{"language": "en", "string": "Which subsidiary of TUI Travel serves both Glasgow and Dublin?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/TUI_Travel> <http://dbpedia.org/ontology/subsidiary> ?uri . ?uri <http://dbpedia.org/ontology/targetAirport> <http://dbpedia.org/resource/Glasgow_International_Airport> ; <http://dbpedia.org/ontology/targetAirport> <http://dbpedia.org/resource/Dublin_Airport> }"}, "entities": [{"URI": "http://dbpedia.org/resource/Glasgow_Airport", "surface form": "Glasgow"}, {"URI": "http://dbpedia.org/resource/Dublin_Airport", "surface form": "Dublin"}], "relations": [{"URI": "http://dbpedia.org/ontology/subsidiary", "surface form": "subsidiary"}, {"URI": "http://dbpedia.org/ontology/order", "surface form": "serves"}]}, {"id": "569", "question": [{"language": "en", "string": "In which city were the parents of Che Guevara born?"}], "query": {"sparql": {}}, "entities": [{"URI": "http://dbpedia.org/resource/Che_Guevara", "surface form": "Che Guevara"}], "relations": [{"URI": "http://dbpedia.org/ontology/city", "surface form": "city"}, {"URI": "http://dbpedia.org/property/parents", "surface form": "parents"}, {"URI": "http://dbpedia.org/ontology/birthPlace", "surface form": "born"}]}, {"id": "366", "question": [{"language": "en", "string": "How high is the lighthouse in Colombo?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?num WHERE { res:Colombo_Lighthouse dbo:height ?num }"}, "answers": {"num": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#double", "value": "15.0"}}, "entities": [{"URI": "http://dbpedia.org/resource/Colombo_Lighthouse", "surface form": "Lighthouse in Colombo"}], "relations": [{"URI": "http://dbpedia.org/ontology/height", "surface form": "high"}]}, {"id": "571", "question": [{"language": "en", "string": "Are there any castles in the United States?"}], "query": {"sparql": "PREFIX dct: <http://purl.org/dc/terms/> PREFIX dbc: <http://dbpedia.org/resource/Category:> ASK WHERE { ?uri dct:subject dbc:Castles_in_the_United_States }"}, "entities": [{"URI": "http://dbpedia.org/resource/United_States", "surface form": "United States"}], "relations": [{"URI": "http://dbpedia.org/ontology/class", "surface form": "castles"}]}, {"id": "572", "question": [{"language": "en", "string": "Can you find frescoes in Crete?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbp: <http://dbpedia.org/property/> PREFIX dct: <http://purl.org/dc/terms/> PREFIX dbc: <http://dbpedia.org/resource/Category:> PREFIX dbr: <http://dbpedia.org/resource/> ASK WHERE { ?uri dct:subject dbc:Minoan_frescos ; dbp:museum ?museum . ?museum dbo:location dbr:Crete }"}, "entities": [{"URI": "http://dbpedia.org/resource/Frescoes_in_the_Cartuja_de_Aula_Dei", "surface form": "frescoes"}, {"URI": "http://dbpedia.org/resource/Crete", "surface form": "Crete"}], "relations": []}, {"id": "573", "question": [{"language": "en", "string": "Do Urdu and Persian have a common root?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> ASK WHERE { dbr:Urdu dbo:languageFamily ?uri . dbr:Persian_language dbo:languageFamily ?uri }"}, "entities": [{"URI": "http://dbpedia.org/resource/Urdu_Wikipedia", "surface form": "Urdu and Persian"}], "relations": [{"URI": "http://dbpedia.org/ontology/parent", "surface form": "common root"}]}, {"id": "574", "question": [{"language": "en", "string": "Does the Ford Motor Company have a manufacturing plant in Malaysia?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> ASK WHERE { ?uri dbo:assembly dbr:Malaysia ; dbo:manufacturer dbr:Ford_Motor_Company }"}, "entities": [{"URI": "http://dbpedia.org/resource/Ford_Motor_Company", "surface form": "Ford Motor Company"}, {"URI": "http://dbpedia.org/resource/Malaysia", "surface form": "Malaysia"}], "relations": [{"URI": "http://dbpedia.org/property/industry", "surface form": "manufacturing plant"}]}, {"id": "367", "question": [{"language": "en", "string": "How many years was the Ford Model T manufactured?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX xsd: <http://www.w3.org/2001/XMLSchema#> PREFIX res: <http://dbpedia.org/resource/> SELECT ?years WHERE { res:Ford_Model_T dbo:productionEndYear ?end ; dbo:productionStartYear ?start. BIND ( ( year(xsd:date(?end)) - year(xsd:date(?start)) ) AS ?years) }"}, "answers": {"years": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "19"}}, "entities": [{"URI": "http://dbpedia.org/resource/T", "surface form": "T"}, {"URI": "http://dbpedia.org/resource/Ford_Model_48", "surface form": "Ford Model"}], "relations": [{"URI": "http://dbpedia.org/ontology/manufacturer", "surface form": "manufactured"}]}, {"id": "576", "question": [{"language": "en", "string": "Give me all American presidents in the last 20 years."}], "query": {"sparql": "PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dct: <http://purl.org/dc/terms/> PREFIX dbc: <http://dbpedia.org/resource/Category:> PREFIX dbp: <http://dbpedia.org/property/> 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) }"}, "entities": [{"URI": "http://dbpedia.org/resource/Organization_of_American_States", "surface form": "American presidents"}, {"URI": "http://dbpedia.org/resource/American_Presidents:_Life_Portraits", "surface form": "American presidents"}, {"URI": "http://dbpedia.org/resource/20", "surface form": "20"}], "relations": [{"URI": "http://dbpedia.org/ontology/country", "surface form": ""}]}, {"id": "368", "question": [{"language": "en", "string": "Give me all gangsters from the prohibition era."}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dct: <http://purl.org/dc/terms/> PREFIX dbc: <http://dbpedia.org/resource/Category:> PREFIX dbr: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { ?uri dbo:occupation dbr:Gangster ; dct:subject dbc:Prohibition-era_gangsters }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dean_O'Banion"}}, "entities": [{"URI": "http://dbpedia.org/resource/Gangsters_of_the_Frontier", "surface form": "Gangsters"}], "relations": [{"URI": "http://dbpedia.org/ontology/time", "surface form": "prohibition era"}]}, {"id": "369", "question": [{"language": "en", "string": "Give me all Seven Wonders of the Ancient World."}], "query": {"sparql": "PREFIX dct: <http://purl.org/dc/terms/> PREFIX dbc: <http://dbpedia.org/resource/Category:> SELECT ?uri WHERE { ?uri dct:subject dbc:Seven_Wonders_of_the_Ancient_World }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Temple_of_Artemis"}}, "entities": [{"URI": "http://dbpedia.org/resource/Seven_Wonders_of_the_Ancient_World", "surface form": "Seven Wonders of the Ancient World"}], "relations": []}, {"id": "370", "question": [{"language": "en", "string": "Give me all chemical elements."}], "query": {"sparql": "PREFIX dct: <http://purl.org/dc/terms/> PREFIX dbc: <http://dbpedia.org/resource/Category:> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX owl: <http://www.w3.org/2002/07/owl#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type owl:Thing ; dct:subject dbc:Chemical_elements }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Aluminium"}}, "entities": [{"URI": "http://dbpedia.org/resource/Sand_casting", "surface form": "chemical elements"}], "relations": []}, {"id": "371", "question": [{"language": "en", "string": "How many rivers and lakes are in South Carolina?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dct: <http://purl.org/dc/terms/> PREFIX dbc: <http://dbpedia.org/resource/Category:> PREFIX dbr: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT (COUNT(DISTINCT ?uri) AS ?count) WHERE { { ?uri dbo:location dbr:South_Carolina ; rdf:type dbo:Lake } UNION { ?uri dct:subject dbc:Rivers_and_streams_of_South_Carolina } }"}, "answers": {"count": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "14"}}, "entities": [{"URI": "http://dbpedia.org/resource/South_Carolina", "surface form": "South Carolina"}], "relations": [{"URI": "http://dbpedia.org/ontology/river", "surface form": "rivers"}, {"URI": "http://dbpedia.org/ontology/lake", "surface form": "lakes"}]}, {"id": "372", "question": [{"language": "en", "string": "How many states are in Mexico?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT (COUNT(?uri) AS ?count) WHERE { ?uri dbo:type dbr:States_of_Mexico }"}, "answers": {"count": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "0"}}, "entities": [{"URI": "http://dbpedia.org/resource/Mexico", "surface form": "Mexico"}], "relations": []}, {"id": "373", "question": [{"language": "en", "string": "How many theories did Albert Einstein come up with?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT (COUNT(?uri) AS ?count) WHERE { dbr:Albert_Einstein dbo:knownFor ?uri }"}, "answers": {"count": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "15"}}, "entities": [{"URI": "http://dbpedia.org/resource/Theories_of_cloaking", "surface form": "theories"}, {"URI": "http://dbpedia.org/resource/Albert_Einstein", "surface form": "Albert Einstein"}], "relations": []}, {"id": "583", "question": [{"language": "en", "string": "Is horse racing a sport?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> ASK WHERE { dbr:Horse_racing rdf:type dbo:Sport }"}, "entities": [], "relations": [{"URI": "http://dbpedia.org/ontology/raceHorse", "surface form": "horse"}, {"URI": "http://dbpedia.org/ontology/position", "surface form": "racing"}, {"URI": "http://dbpedia.org/ontology/sport", "surface form": "sport"}]}, {"id": "584", "question": [{"language": "en", "string": "Is Pluto really a planet?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> ASK WHERE { dbr:Pluto rdf:type dbo:Planet }"}, "entities": [{"URI": "http://dbpedia.org/resource/Pluto", "surface form": "Pluto"}], "relations": [{"URI": "http://dbpedia.org/property/planet", "surface form": "planet"}]}, {"id": "585", "question": [{"language": "en", "string": "Was Sigmund Freud married?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> ASK WHERE { dbr:Sigmund_Freud dbo:spouse ?uri }"}, "entities": [{"URI": "http://dbpedia.org/resource/Sigmund_Freud", "surface form": "Sigmund Freud married"}], "relations": []}, {"id": "374", "question": [{"language": "en", "string": "What form of government is found in South Africa?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?uri WHERE { dbr:South_Africa dbo:governmentType ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Unitary_state"}}, "entities": [{"URI": "http://dbpedia.org/resource/South_Africa", "surface form": "South Africa"}], "relations": [{"URI": "http://dbpedia.org/ontology/type", "surface form": "form"}, {"URI": "http://dbpedia.org/ontology/government", "surface form": "government"}]}, {"id": "375", "question": [{"language": "en", "string": "What is the largest state in the United States?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dct: <http://purl.org/dc/terms/> PREFIX dbc: <http://dbpedia.org/resource/Category:> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT ?uri WHERE { ?uri dct:subject dbc:States_of_the_United_States ; rdf:type dbo:AdministrativeRegion ; dbo:areaTotal ?area } ORDER BY DESC(?area) OFFSET 0 LIMIT 1"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alaska"}}, "entities": [{"URI": "http://dbpedia.org/resource/United_States", "surface form": "United States"}], "relations": [{"URI": "http://dbpedia.org/ontology/areaTotal", "surface form": "largest"}]}, {"id": "376", "question": [{"language": "en", "string": "What is the longest river in the world?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT ?uri WHERE { ?uri rdf:type dbo:BodyOfWater ; dbo:length ?length } ORDER BY DESC(?length) LIMIT 1"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Indian_Ocean"}}, "entities": [], "relations": [{"URI": "http://dbpedia.org/ontology/river", "surface form": "river"}]}, {"id": "589", "question": [{"language": "en", "string": "Which building after the Burj Khalifa has the most floors?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { res:Burj_Khalifa dbo:floorCount ?burj . ?uri rdf:type dbo:Building ; dbo:floorCount ?proj FILTER ( ?proj < ?burj ) } ORDER BY DESC(?proj) LIMIT 1"}, "entities": [{"URI": "http://dbpedia.org/resource/Burj_Khalifa", "surface form": "Burj Khalifa"}], "relations": [{"URI": "http://dbpedia.org/ontology/building", "surface form": "building"}, {"URI": "http://dbpedia.org/ontology/floorCount", "surface form": "floors"}]}, {"id": "377", "question": [{"language": "en", "string": "What is the wavelength of indigo?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?n WHERE { dbr:Indigo dbo:wavelength ?n }"}, "answers": {"n": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#double", "value": "4.2e-07"}}, "entities": [{"URI": "http://dbpedia.org/resource/Indigo", "surface form": "indigo"}], "relations": [{"URI": "http://dbpedia.org/ontology/wavelength", "surface form": "wavelength"}]}, {"id": "378", "question": [{"language": "en", "string": "What was the name of the famous battle in 1836 in San Antonio?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?uri WHERE { ?uri a dbo:MilitaryConflict ; dbo:place dbr:San_Antonio ; dbo:date ?date FILTER ( ?date > \"1835-12-31T00:00:00Z\"^^xsd:dateTime ) FILTER ( ?date <= \"1836-12-31T00:00:00Z\"^^xsd:dateTime ) }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Battle_of_the_Alamo"}}, "entities": [{"URI": "http://dbpedia.org/resource/1836", "surface form": "1836"}, {"URI": "http://dbpedia.org/resource/San_Antonio", "surface form": "San Antonio"}], "relations": [{"URI": "http://dbpedia.org/property/name", "surface form": "name"}, {"URI": "http://dbpedia.org/ontology/motto", "surface form": "famous battle"}]}, {"id": "379", "question": [{"language": "en", "string": "What were the names of the three ships used by Columbus?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dct: <http://purl.org/dc/terms/> PREFIX dbc: <http://dbpedia.org/resource/Category:> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT ?uri WHERE { ?uri rdf:type dbo:Ship ; dct:subject dbc:Christopher_Columbus ; dct:subject dbc:Exploration_ships }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pinta_(ship)"}}, "entities": [{"URI": "http://dbpedia.org/resource/Columbus", "surface form": "Columbus"}], "relations": [{"URI": "http://dbpedia.org/ontology/title", "surface form": "names"}, {"URI": "http://dbpedia.org/ontology/shipBeam", "surface form": "ships"}]}, {"id": "593", "question": [{"language": "en", "string": "What were the original 13 British colonies?"}], "query": {"sparql": "PREFIX dct: <http://purl.org/dc/terms/> PREFIX dbc: <http://dbpedia.org/resource/Category:> select distinct ?uri where { ?uri dct:subject dbc:Former_British_colonies. ?uri dct:subject dbc:Thirteen_Colonies. }"}, "entities": [{"URI": "http://dbpedia.org/resource/Colonial_empire", "surface form": "original 13 British colonies"}], "relations": []}, {"id": "380", "question": [{"language": "en", "string": "When did Muhammad die?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT xsd:date(?date) WHERE { res:Muhammad dbo:deathDate ?date }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#date", "value": "0632-06-08"}}, "entities": [{"URI": "http://dbpedia.org/resource/Muhammad", "surface form": "Muhammad"}], "relations": [{"URI": "http://dbpedia.org/ontology/deathDate", "surface form": "die"}]}, {"id": "381", "question": [{"language": "en", "string": "When was the De Beers company founded?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT xsd:date(?date) WHERE { res:De_Beers dbo:foundingYear ?date }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#date", "value": "1888-01-01"}}, "entities": [{"URI": "http://dbpedia.org/resource/De_Beers", "surface form": "De Beers company"}], "relations": [{"URI": "http://dbpedia.org/ontology/foundedBy", "surface form": "founded"}]}, {"id": "382", "question": [{"language": "en", "string": "When was John Adams born?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?date WHERE { res:John_Adams dbo:birthDate ?date }"}, "answers": {"date": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#date", "value": "1735-10-30"}}, "entities": [{"URI": "http://dbpedia.org/resource/John_Adams", "surface form": "John Adams"}], "relations": [{"URI": "http://dbpedia.org/ontology/birthDate", "surface form": "born"}]}, {"id": "383", "question": [{"language": "en", "string": "Which American presidents were in office during the Vietnam War?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX dct: <http://purl.org/dc/terms/> PREFIX dbc: <http://dbpedia.org/resource/Category:> SELECT ?uri WHERE { ?uri dct:subject dbc:Presidents_of_the_United_States . res:Vietnam_War dbo:commander ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Richard_Nixon"}}, "entities": [{"URI": "http://dbpedia.org/resource/Organization_of_American_States", "surface form": "American presidents"}, {"URI": "http://dbpedia.org/resource/Abimael_Guzm\u00e1n", "surface form": "American presidents"}, {"URI": "http://dbpedia.org/resource/Vietnam_War", "surface form": "Vietnam War"}], "relations": [{"URI": "http://dbpedia.org/ontology/office", "surface form": "office"}, {"URI": "http://dbpedia.org/ontology/country", "surface form": ""}]}, {"id": "384", "question": [{"language": "en", "string": "Which city has the oldest running metro?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT ?loc WHERE { ?uri dbo:type dbr:Rapid_transit ; dbo:openingYear ?date ; dbo:location ?loc . ?loc rdf:type dbo:City } ORDER BY ASC(?date) LIMIT 1"}, "answers": {"loc": {"type": "uri", "value": "http://dbpedia.org/resource/Klang_Valley"}}, "entities": [], "relations": [{"URI": "http://dbpedia.org/ontology/city", "surface form": "city"}, {"URI": "http://dbpedia.org/ontology/government", "surface form": "running"}, {"URI": "http://dbpedia.org/ontology/populationMetro", "surface form": "metro"}]}, {"id": "385", "question": [{"language": "en", "string": "Which holidays are celebrated around the world?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Holiday }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/1981_Handsworth_riots"}}}, {"id": "386", "question": [{"language": "en", "string": "Who assassinated President McKinley?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dct: <http://purl.org/dc/terms/> PREFIX dbc: <http://dbpedia.org/resource/Category:> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Person ; dct:subject dbc:American_assassins ; dct:subject dbc:Assassination_of_William_McKinley }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Leon_Czolgosz"}}, "entities": [{"URI": "http://dbpedia.org/resource/President_McKinley_Inauguration_Footage", "surface form": "Assassinated President McKinley"}], "relations": []}, {"id": "387", "question": [{"language": "en", "string": "Who discovered Pluto?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?uri WHERE { dbr:Pluto dbo:discoverer ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Clyde_Tombaugh"}}, "entities": [{"URI": "http://dbpedia.org/resource/Pluto", "surface form": "Pluto"}], "relations": [{"URI": "http://dbpedia.org/ontology/discovered", "surface form": "discovered"}]}, {"id": "388", "question": [{"language": "en", "string": "Who killed Caesar?"}], "query": {"sparql": "PREFIX dct: <http://purl.org/dc/terms/> PREFIX dbc: <http://dbpedia.org/resource/Category:> SELECT DISTINCT ?uri WHERE { ?uri dct:subject dbc:Assassins_of_Julius_Caesar }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Decimus_Junius_Brutus_Albinus"}}}, {"id": "603", "question": [{"language": "en", "string": "Who was buried in the Great Pyramid of Giza?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?uri WHERE { ?uri dbo:restingPlace dbr:Great_Pyramid_of_Giza }"}, "entities": [{"URI": "http://dbpedia.org/resource/Great_Pyramid_of_Giza", "surface form": "Great Pyramid of Giza"}], "relations": [{"URI": "http://dbpedia.org/ontology/weight", "surface form": "buried"}]}, {"id": "389", "question": [{"language": "en", "string": "Who was the first King of England?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX yago: <http://dbpedia.org/class/yago/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Royalty ; rdf:type yago:WikicatEnglishMonarchs ; dbo:activeYearsStartYear ?date } ORDER BY ASC(?date) OFFSET 0 LIMIT 1"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Harold_Godwinson"}}}, {"id": "390", "question": [{"language": "en", "string": "What was the final result of the War of the Roses?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT DISTINCT ?result WHERE { ?uri dbo:isPartOfMilitaryConflict dbr:Wars_of_the_Roses ; dbo:result ?result ; dbo:date ?date } ORDER BY DESC(?date) OFFSET 0 LIMIT 1"}, "answers": {"result": {"type": "literal", "value": "Decisive Tudor victory"}}}, {"id": "391", "question": [{"language": "en", "string": "Who writes the Farmers' Almanac?"}], "query": {"sparql": "PREFIX dbp: <http://dbpedia.org/property/> SELECT ?uri WHERE { <http://dbpedia.org/resource/Farmers'_Almanac> dbp:editor ?uri }"}, "answers": {"uri": {"type": "literal", "xml:lang": "en", "value": "Peter Geiger"}}}, {"id": "392", "question": [{"language": "en", "string": "How big is the earth's diameter?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT (( xsd:double(?radius) * 2 ) AS ?diameter) WHERE { res:Earth dbo:meanRadius ?radius }"}, "answers": {"diameter": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#double", "value": "1.2742e+07"}}}, {"id": "608", "question": [{"language": "en", "string": "When did Paraguay proclaim its independence?"}], "query": {"sparql": "SELECT DISTINCT ?date WHERE { <http://dbpedia.org/resource/Paraguay> <http://dbpedia.org/ontology/foundingDate> ?date }"}}, {"id": "393", "question": [{"language": "en", "string": "How many people live in Eurasia?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?population WHERE { res:Eurasia dbo:populationTotal ?population }"}, "answers": {"population": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#nonNegativeInteger", "value": "5360351985"}}}, {"id": "394", "question": [{"language": "en", "string": "Give me the runtime of Toy Story."}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?runtime WHERE { res:Toy_Story dbo:runtime ?runtime }"}, "answers": {"runtime": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#double", "value": "4860.0"}}}, {"id": "395", "question": [{"language": "en", "string": "What was the first name of the band Queens of the Stone Age?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?name WHERE { res:Queens_of_the_Stone_Age dbo:alias ?name }"}, "answers": {"name": {"type": "literal", "xml:lang": "en", "value": "Gamma Ray(1996)"}}}, {"id": "396", "question": [{"language": "en", "string": "Give me the birth place of Frank Sinatra."}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?place WHERE { res:Frank_Sinatra dbo:birthPlace ?place }"}, "answers": {"place": {"type": "uri", "value": "http://dbpedia.org/resource/Hoboken,_New_Jersey"}}, "entities": [{"URI": "http://dbpedia.org/resource/Frank_Sinatra", "surface form": "Frank Sinatra"}], "relations": [{"URI": "http://dbpedia.org/ontology/birthPlace", "surface form": "birth place"}]}, {"id": "397", "question": [{"language": "en", "string": "Which university did Angela Merkel attend?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?university WHERE { res:Angela_Merkel dbo:almaMater ?university }"}, "answers": {"university": {"type": "uri", "value": "http://dbpedia.org/resource/German_Academy_of_Sciences_at_Berlin"}}}, {"id": "398", "question": [{"language": "en", "string": "What is the alma mater of the chancellor of Germany Angela Merkel?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?Almamater WHERE { dbr:Angela_Merkel dbo:almaMater ?Almamater }"}, "answers": {"Almamater": {"type": "uri", "value": "http://dbpedia.org/resource/German_Academy_of_Sciences_at_Berlin"}}, "entities": [{"URI": "http://dbpedia.org/resource/Angela_Merkel", "surface form": "Germany Angela Merkel"}], "relations": [{"URI": "http://dbpedia.org/ontology/almaMater", "surface form": "alma mater"}, {"URI": "http://dbpedia.org/ontology/chancellor", "surface form": "chancellor"}]}, {"id": "615", "question": [{"language": "en", "string": "How large is the area of UK?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?area WHERE { dbr:United_Kingdom dbo:areaTotal ?area }"}}, {"id": "399", "question": [{"language": "en", "string": "Who is the author of the interpretation of dreams?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?Author WHERE { dbr:The_Interpretation_of_Dreams dbo:author ?Author }"}, "answers": {"Author": {"type": "uri", "value": "http://dbpedia.org/resource/Sigmund_Freud"}}}, {"id": "400", "question": [{"language": "en", "string": "What is the birth name of Adele?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?bn WHERE { dbr:Adele dbo:birthName ?bn }"}, "answers": {"bn": {"type": "literal", "xml:lang": "en", "value": "Adele Laurie Blue Adkins"}}}, {"id": "401", "question": [{"language": "en", "string": "What are the top selling luxury vehicle brands in Germany?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dct: <http://purl.org/dc/terms/> PREFIX dbc: <http://dbpedia.org/resource/Category:> 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)"}, "answers": {"company": {"type": "uri", "value": "http://dbpedia.org/resource/Mercedes-Benz_Group"}}, "entities": [{"URI": "http://dbpedia.org/resource/Luxury_vehicle", "surface form": "luxury vehicle brands"}, {"URI": "http://dbpedia.org/resource/Germany", "surface form": "Germany"}], "relations": [{"URI": "http://dbpedia.org/ontology/promotion", "surface form": "selling"}]}, {"id": "402", "question": [{"language": "en", "string": "How many awards has Bertrand Russell?"}], "query": {"sparql": "PREFIX dbr: <http://dbpedia.org/resource/> PREFIX dbp: <http://dbpedia.org/property/> SELECT (COUNT(?Awards) AS ?Counter) WHERE { dbr:Bertrand_Russell dbp:awards ?Awards }"}, "answers": {"Counter": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "6"}}}, {"id": "403", "question": [{"language": "en", "string": "Who is Dan Jurafsky?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?Dan WHERE {  VALUES ?Dan {dbr:Daniel_Jurafsky } }"}, "answers": {"Dan": {"type": "uri", "value": "http://dbpedia.org/resource/Daniel_Jurafsky"}}, "entities": [{"URI": "http://dbpedia.org/resource/Daniel_Jurafsky", "surface form": "Dan Jurafsky"}], "relations": []}, {"id": "621", "question": [{"language": "en", "string": "When will start the final match of the football world cup 2018?"}], "query": {"sparql": "PREFIX dbr: <http://dbpedia.org/resource/> PREFIX dbp: <http://dbpedia.org/property/> SELECT ?Date WHERE { dbr:2018_FIFA_World_Cup dbp:date ?Date } ORDER BY DESC(?Date) LIMIT 1"}}, {"id": "404", "question": [{"language": "en", "string": "how much is the elevation of D\u00fcsseldorf Airport ?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?ele WHERE { dbr:D\u00fcsseldorf_Airport dbo:elevation ?ele } LIMIT 1"}, "answers": {"ele": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#double", "value": "44.8"}}}, {"id": "405", "question": [{"language": "en", "string": "how much is the total population of  european union?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?europop WHERE { dbr:European_Union dbo:populationTotal ?europop }"}, "answers": {"europop": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#nonNegativeInteger", "value": "447007596"}}, "entities": [], "relations": [{"URI": "http://dbpedia.org/ontology/totalPopulation", "surface form": "total population"}, {"URI": "http://dbpedia.org/ontology/league", "surface form": "european union"}]}, {"id": "624", "question": [{"language": "en", "string": "when was the founding date of french fifth republic?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?ff WHERE { dbr:French_Fifth_Republic dbo:foundingDate ?ff }"}, "entities": [], "relations": [{"URI": "http://dbpedia.org/ontology/institution", "surface form": "founding"}, {"URI": "http://dbpedia.org/ontology/channel", "surface form": "french"}, {"URI": "http://dbpedia.org/ontology/state", "surface form": "republic"}]}, {"id": "625", "question": [{"language": "en", "string": "Who are the founders of  BlaBlaCar?"}], "query": {"sparql": "PREFIX dbr: <http://dbpedia.org/resource/> PREFIX dbp: <http://dbpedia.org/property/> SELECT ?founder WHERE { dbr:BlaBlaCar dbp:founders ?founder }"}}, {"id": "406", "question": [{"language": "en", "string": "how many foreigners speak German?"}], "query": {"sparql": "PREFIX dbr: <http://dbpedia.org/resource/> PREFIX dbp: <http://dbpedia.org/property/> SELECT ?Ger_lang WHERE { dbr:German_language dbp:speakers ?Ger_lang } OFFSET 1 LIMIT 1"}, "answers": {"Ger_lang": {"type": "literal", "xml:lang": "en", "value": "L2 speakers: 80\u201385 million"}}}, {"id": "407", "question": [{"language": "en", "string": "Where is the birthplace of Goethe?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?Goethe WHERE { dbr:Johann_Wolfgang_von_Goethe dbo:birthPlace ?Goethe }"}, "answers": {"Goethe": {"type": "uri", "value": "http://dbpedia.org/resource/Holy_Roman_Empire"}}}, {"id": "408", "question": [{"language": "en", "string": "Where is the origin of Carolina reaper?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/>PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?uri WHERE { dbr:Carolina_Reaper dbo:origin ?uri}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rock_Hill,_South_Carolina"}}}, {"id": "409", "question": [{"language": "en", "string": "How much is the population of Mexico City ?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?Mexico_City WHERE { dbr:Mexico_City dbo:populationTotal ?Mexico_City }"}, "answers": {"Mexico_City": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#nonNegativeInteger", "value": "9209944"}}}, {"id": "410", "question": [{"language": "en", "string": "What is the nick name of Baghdad?"}], "query": {"sparql": "PREFIX dbr: <http://dbpedia.org/resource/> PREFIX foaf: <http://xmlns.com/foaf/0.1/> SELECT ?nm WHERE { dbr:Baghdad foaf:nick ?nm }"}, "answers": {"nm": {"type": "literal", "xml:lang": "en", "value": "City of Peace (\u0645\u062f\u064a\u0646\u0629 \u0627\u0644\u0633\u0644\u0627\u0645)"}}}, {"id": "411", "question": [{"language": "en", "string": "Who is the novelist of the work a song of ice and fire?"}], "query": {"sparql": "PREFIX dbr: <http://dbpedia.org/resource/> PREFIX dbp: <http://dbpedia.org/property/> SELECT ?Novelist WHERE { dbr:A_Song_of_Ice_and_Fire dbp:author ?Novelist }"}, "answers": {"Novelist": {"type": "uri", "value": "http://dbpedia.org/resource/George_R._R._Martin"}}}, {"id": "412", "question": [{"language": "en", "string": "What is the percentage of area water in Brazil?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?percentage WHERE { dbr:Brazil dbo:percentageOfAreaWater ?percentage }"}, "answers": {"percentage": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#float", "value": "0.65"}}}, {"id": "413", "question": [{"language": "en", "string": "How much is the population of Iraq?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?pIraq WHERE { dbr:Iraq dbo:populationTotal ?pIraq }"}, "answers": {"pIraq": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#nonNegativeInteger", "value": "44222503"}}, "entities": [{"URI": "http://dbpedia.org/resource/Iraq", "surface form": "Iraq"}], "relations": [{"URI": "http://dbpedia.org/ontology/populationTotal", "surface form": "population"}]}, {"id": "414", "question": [{"language": "en", "string": "What is the population of Cairo?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?pop WHERE { dbr:Cairo dbo:populationTotal ?pop }"}, "answers": {"pop": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#nonNegativeInteger", "value": "10025657"}}}, {"id": "415", "question": [{"language": "en", "string": "How much is the population density rank of Germany?"}], "query": {"sparql": "PREFIX dbr: <http://dbpedia.org/resource/> PREFIX dbp: <http://dbpedia.org/property/> SELECT ?rank WHERE { dbr:Germany dbp:populationDensityRank ?rank }"}, "answers": {"rank": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "58"}}}, {"id": "416", "question": [{"language": "en", "string": "What is the relation between Resource Description Framework and Web Ontology Language?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?rdf_owl WHERE { dbr:Web_Ontology_Language dbo:abstract ?rdf_owl } LIMIT 1"}, "answers": {"rdf_owl": {"type": "literal", "xml:lang": "ca", "value": "OWL \u00e9s l'acr\u00f2nim de l'angl\u00e8s Web Ontology Language, un llenguatge de marcat per publicar i compartir dades usant ontologies en la WWW. OWL t\u00e9 com a objectiu facilitar un model de marcat constru\u00eft sobre RDF i codificat en XML. T\u00e9 com a antecedent DAML+OIL, en els quals es van inspirar els creadors de OWL per crear el llenguatge. Al costat de l'entorn RDF i altres components, aquestes eines fan possible el projecte de web sem\u00e0ntica."}}}, {"id": "417", "question": [{"language": "en", "string": "How large is the total area of North Rhine-Westphalia?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?tarea WHERE { dbr:North_Rhine-Westphalia dbo:areaTotal ?tarea }"}, "answers": {"tarea": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#double", "value": "3.40841e+10"}}}, {"id": "418", "question": [{"language": "en", "string": "What is the original title of the interpretation of dreams?"}], "query": {"sparql": "PREFIX dbr: <http://dbpedia.org/resource/> PREFIX foaf: <http://xmlns.com/foaf/0.1/> SELECT ?title WHERE { dbr:The_Interpretation_of_Dreams foaf:name ?title }"}, "answers": {"title": {"type": "literal", "xml:lang": "en", "value": "Die Traumdeutung"}}}, {"id": "639", "question": [{"language": "en", "string": "Who are the writers of the Wall album of Pink Floyd?"}], "query": {"sparql": "PREFIX dbr: <http://dbpedia.org/resource/> PREFIX dbp: <http://dbpedia.org/property/> SELECT ?writers WHERE { dbr:The_Wall dbp:writer ?writers }"}}, {"id": "419", "question": [{"language": "en", "string": "When was the death  of  Shakespeare?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?x WHERE { dbr:William_Shakespeare dbo:deathDate ?x } LIMIT 1"}, "answers": {"x": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#date", "value": "1616-04-23"}}}, {"id": "420", "question": [{"language": "en", "string": "With how many countries Iran has borders?"}], "query": {"sparql": "PREFIX dbr: <http://dbpedia.org/resource/> PREFIX dbp: <http://dbpedia.org/property/> SELECT ?border WHERE { dbr:Geography_of_Iran dbp:borders ?border } LIMIT 8"}, "answers": {"border": {"type": "uri", "value": "http://dbpedia.org/resource/Azerbaijan"}}}, {"id": "421", "question": [{"language": "en", "string": "What is the smallest city by area in Germany?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX skos: <http://www.w3.org/2004/02/skos/core#> PREFIX dbc: <http://dbpedia.org/resource/Category:> PREFIX dct: <http://purl.org/dc/terms/> SELECT ?city WHERE { ?m skos:broader dbc:Cities_in_Germany . ?city dct:subject ?m ; dbo:areaTotal ?area } ORDER BY ?area LIMIT 1"}, "answers": {"city": {"type": "uri", "value": "http://dbpedia.org/resource/Eckernf\u00f6rde"}}}, {"id": "422", "question": [{"language": "en", "string": "Which beer brewing comapnies are located in North-Rhine Westphalia?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dct: <http://purl.org/dc/terms/> PREFIX dbc: <http://dbpedia.org/resource/Category:> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT ?company WHERE { ?company dct:subject dbc:Companies_based_in_North_Rhine-Westphalia ; rdf:type dbo:Brewery }"}, "answers": {"company": {"type": "uri", "value": "http://dbpedia.org/resource/Veltins_Brewery"}}}, {"id": "423", "question": [{"language": "en", "string": "What is the largest city in america?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?lcity WHERE { dbr:United_States dbo:largestCity ?lcity }"}, "answers": {"lcity": {"type": "uri", "value": "http://dbpedia.org/resource/New_York_City"}}}, {"id": "424", "question": [{"language": "en", "string": "Who is the current federal minister of finance in Germany?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> SELECT ?leader WHERE { <http://dbpedia.org/resource/Federal_Ministry_of_Finance_(Germany)> dbo:leader ?leader }"}, "answers": {"leader": {"type": "uri", "value": "http://dbpedia.org/resource/Katja_Hessel"}}}, {"id": "425", "question": [{"language": "en", "string": "What is the highest mountain in the Bavarian Alps?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?m  WHERE { dbr:Bavarian_Alps dbp:highest ?m} "}, "answers": {"m": {"type": "uri", "value": "http://dbpedia.org/resource/Zugspitze"}}}, {"id": "426", "question": [{"language": "en", "string": "Who is 8th president of US?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbp: <http://dbpedia.org/property/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?name WHERE { dbr:8th_President_of_the_United_States dbo:wikiPageRedirects ?link . ?link dbp:name ?name }"}, "answers": {"name": {"type": "literal", "xml:lang": "en", "value": "Martin Van Buren"}}}, {"id": "648", "question": [{"language": "en", "string": "Where is the most deep point in the ocean?"}], "query": {"sparql": "PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> PREFIX dct: <http://purl.org/dc/terms/> PREFIX dbr: <http://dbpedia.org/resource/> 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"}}, {"id": "427", "question": [{"language": "en", "string": "In which state Penn State University is located?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?s WHERE { dbr:Pennsylvania_State_University dbo:state ?s }"}, "answers": {"s": {"type": "uri", "value": "http://dbpedia.org/resource/Pennsylvania"}}}, {"id": "650", "question": [{"language": "en", "string": "Which species does an elephant belong?"}], "query": {"sparql": "PREFIX dbr: <http://dbpedia.org/resource/> PREFIX dbp: <http://dbpedia.org/property/> SELECT ?species WHERE { dbr:Elephant dbp:species ?species }"}}, {"id": "428", "question": [{"language": "en", "string": "What is Donald Trump's main business?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?owner WHERE { ?owner dbo:owner dbr:Donald_Trump }"}, "answers": {"owner": {"type": "uri", "value": "http://dbpedia.org/resource/Trump_Model_Management"}}}, {"id": "429", "question": [{"language": "en", "string": "What is the last work of Dan Brown?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbp: <http://dbpedia.org/property/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?book WHERE { { ?book dbo:author dbr:Dan_Brown . ?book dbp:releaseDate ?date } UNION { ?book dbo:author dbr:Dan_Brown . ?book dbo:publicationDate ?date} } ORDER BY DESC(xsd:date(?date)) LIMIT 1"}, "answers": {"book": {"type": "uri", "value": "http://dbpedia.org/resource/Origin_(Brown_novel)"}}}, {"id": "653", "question": [{"language": "en", "string": "What other books have been written by the author of The Fault in Our Stars?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> SELECT ?books WHERE { ?books dbo:author <http://dbpedia.org/resource/John_Green_(author)> }"}}, {"id": "430", "question": [{"language": "en", "string": "When was the last episode of the TV series Friends aired?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?date WHERE { dbr:Friends dbo:completionDate ?date }"}, "answers": {"date": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#date", "value": "2004-05-06"}}}, {"id": "655", "question": [{"language": "en", "string": "Are Taiko some kind of Japanese musical instrument?"}], "query": {"sparql": "ASK WHERE { <http://dbpedia.org/resource/Taiko> a <http://dbpedia.org/class/yago/WikicatJapaneseMusicalInstruments> }"}}, {"id": "431", "question": [{"language": "en", "string": "What is Angela Merkel\u2019s birth name?"}], "query": {"sparql": "PREFIX res: <http://dbpedia.org/resource/> PREFIX dbp: <http://dbpedia.org/property/> SELECT DISTINCT ?string WHERE { res:Angela_Merkel dbp:birthName ?string }"}, "answers": {"string": {"type": "literal", "xml:lang": "en", "value": "Angela Dorothea Kasner"}}}, {"id": "432", "question": [{"language": "en", "string": "Which classes does the Millepede belong to?"}], "query": {"sparql": "PREFIX res: <http://dbpedia.org/resource/> PREFIX dbp: <http://dbpedia.org/property/> SELECT DISTINCT ?String WHERE { res:Millipede dbp:taxon ?String }"}, "answers": {"String": {"type": "literal", "xml:lang": "en", "value": "Diplopoda"}}}, {"id": "658", "question": [{"language": "en", "string": "Sean Parnell was the governor of which U.S. state?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Sean_Parnell dbo:region ?uri }"}}, {"id": "659", "question": [{"language": "en", "string": "How many students does the Free University of Amsterdam have?"}], "query": {"sparql": "SELECT DISTINCT ?num WHERE { dbr:Vrije_Universiteit_Amsterdam <http://dbpedia.org/ontology/numberOfStudents> ?num }"}}, {"id": "433", "question": [{"language": "en", "string": "How many James Bond movies do exist?"}], "query": {"sparql": "SELECT (COUNT(DISTINCT ?uri) AS ?c) WHERE { ?uri dct:subject <http://dbpedia.org/resource/Category:James_Bond_films> }"}, "answers": {"c": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "29"}}}, {"id": "661", "question": [{"language": "en", "string": "Give me all American presidents of the last 20 years."}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbp: <http://dbpedia.org/property/> PREFIX dct: <http://purl.org/dc/terms/> PREFIX dbc: <http://dbpedia.org/resource/Category:> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> 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 ) }"}}, {"id": "434", "question": [{"language": "en", "string": "What languages are spoken in Pakistan?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Pakistan> <http://dbpedia.org/ontology/language> ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Memoni_language"}}}, {"id": "435", "question": [{"language": "en", "string": "What is the wavelength of Indigo?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?n WHERE { dbr:Indigo dbo:wavelength ?n }"}, "answers": {"n": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#double", "value": "4.2e-07"}}, "entities": [{"URI": "http://dbpedia.org/resource/Indigo", "surface form": "Indigo"}], "relations": [{"URI": "http://dbpedia.org/ontology/wavelength", "surface form": "wavelength"}]}, {"id": "436", "question": [{"language": "en", "string": "Which daughters of British earls died at the same place they were born at?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX yago: <http://dbpedia.org/class/yago/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type yago:WikicatDaughtersOfBritishEarls ; dbo:birthPlace ?x ; dbo:deathPlace ?y FILTER ( ?x = ?y ) }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Megan_Lloyd_George"}}}, {"id": "665", "question": [{"language": "en", "string": "What is the name of the university where Obama's wife studied?"}], "query": {"sparql": "SELECT DISTINCT ?s WHERE { <http://dbpedia.org/resource/Barack_Obama> <http://dbpedia.org/ontology/spouse> ?x . ?x <http://dbpedia.org/ontology/almaMater> ?s }"}}, {"id": "437", "question": [{"language": "en", "string": "In which city is the headquarter of Air China?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Air_China> <http://dbpedia.org/ontology/headquarter> ?uri . ?uri a <http://dbpedia.org/class/yago/City108524735> }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Beijing"}}}, {"id": "438", "question": [{"language": "en", "string": "Give me all libraries established before 1400."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Library> ; <http://dbpedia.org/property/established> ?year FILTER ( ?year < 1400 ) }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Library_of_Pergamum"}}}, {"id": "439", "question": [{"language": "en", "string": "Which beer brewing companies are located in North-Rhine Westphalia?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dct: <http://purl.org/dc/terms/> PREFIX dbc: <http://dbpedia.org/resource/Category:> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT ?company WHERE { ?company dct:subject dbc:Companies_based_in_North_Rhine-Westphalia ; rdf:type dbo:Brewery }"}, "answers": {"company": {"type": "uri", "value": "http://dbpedia.org/resource/Veltins_Brewery"}}}, {"id": "440", "question": [{"language": "en", "string": "What were the names of the three ships by Columbus?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dct: <http://purl.org/dc/terms/> PREFIX dbc: <http://dbpedia.org/resource/Category:> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT ?uri WHERE { ?uri rdf:type dbo:Ship ; dct:subject dbc:Christopher_Columbus ; dct:subject dbc:Exploration_ships }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pinta_(ship)"}}, "entities": [{"URI": "http://dbpedia.org/resource/Columbus", "surface form": "Columbus"}], "relations": [{"URI": "http://dbpedia.org/ontology/title", "surface form": "names"}, {"URI": "http://dbpedia.org/ontology/shipBeam", "surface form": "ships"}]}, {"id": "441", "question": [{"language": "en", "string": "What is the highest mountain in Saxony Germany?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?m WHERE { ?m dbo:mountainRange dbr:Ore_Mountains ; dbo:elevation ?height } ORDER BY DESC(?height) LIMIT 1"}, "answers": {"m": {"type": "uri", "value": "http://dbpedia.org/resource/Kl\u00ednovec"}}}, {"id": "442", "question": [{"language": "en", "string": "How much is the population of mexico city ?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?Mexico_City WHERE { dbr:Mexico_City dbo:populationTotal ?Mexico_City }"}, "answers": {"Mexico_City": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#nonNegativeInteger", "value": "9209944"}}}, {"id": "672", "question": [{"language": "en", "string": "Where is Sungkyunkwan University?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT DISTINCT ?country WHERE { dbr:Sungkyunkwan_University dbo:city ?city ; dbo:country ?country }"}}, {"id": "443", "question": [{"language": "en", "string": "how big is the total area of North Rhine- Westphalia?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?tarea WHERE { dbr:North_Rhine-Westphalia dbo:areaTotal ?tarea }"}, "answers": {"tarea": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#double", "value": "3.40841e+10"}}}, {"id": "444", "question": [{"language": "en", "string": "how much is the population  Iraq?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?pIraq WHERE { dbr:Iraq dbo:populationTotal ?pIraq }"}, "answers": {"pIraq": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#nonNegativeInteger", "value": "44222503"}}}, {"id": "445", "question": [{"language": "en", "string": "how much is the population densty rank of germany?"}], "query": {"sparql": "PREFIX dbr: <http://dbpedia.org/resource/> PREFIX dbp: <http://dbpedia.org/property/> SELECT ?rank WHERE { dbr:Germany dbp:populationDensityRank ?rank }"}, "answers": {"rank": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "58"}}}, {"id": "446", "question": [{"language": "en", "string": "Which holidays are celebrated around the world?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Holiday }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/1981_Handsworth_riots"}}}]}
\ No newline at end of file
+{
+  "questions": [
+    {
+      "id": "1",
+      "question": [
+        {
+          "language": "en",
+          "string": "Who is the daughter of Bill Clinton married to?"
+        }
+      ],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> PREFIX dbp: <http://dbpedia.org/property/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { dbr:Bill_Clinton dbo:child ?child . ?child dbo:spouse ?uri . ?uri rdfs:label ?string }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Marc_Mezvinsky"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Bill_Clinton",
+          "surface form": "Bill Clinton"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/child",
+          "surface form": "daughter"
+        },
+        {
+          "URI": "http://dbpedia.org/ontology/spouse",
+          "surface form": "married"
+        }
+      ]
+    },
+    {
+      "id": "2",
+      "question": [
+        {
+          "language": "en",
+          "string": "Which river does the Brooklyn Bridge cross?"
+        }
+      ],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Brooklyn_Bridge dbo:crosses ?uri }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/East_River"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Brooklyn_Bridge",
+          "surface form": "Brooklyn Bridge"
+        }
+      ],
+      "relations": [
+        { "URI": "http://dbpedia.org/ontology/river", "surface form": "river" },
+        {
+          "URI": "http://dbpedia.org/ontology/crosses",
+          "surface form": "cross"
+        }
+      ]
+    },
+    {
+      "id": "3",
+      "question": [
+        {
+          "language": "en",
+          "string": "How many monarchical countries are there in Europe?"
+        }
+      ],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/>PREFIX yago: <http://dbpedia.org/class/yago/>PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>SELECT COUNT(DISTINCT ?uri) WHERE {\t?uri rdf:type yago:EuropeanCountries .        ?uri dbo:governmentType ?govern .        FILTER regex(?govern,'monarchy') .}"
+      },
+      "answers": {
+        "callret-0": {
+          "type": "typed-literal",
+          "datatype": "http://www.w3.org/2001/XMLSchema#integer",
+          "value": "0"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Monarchical_order",
+          "surface form": "monarchical countries"
+        },
+        {
+          "URI": "http://dbpedia.org/resource/Europe",
+          "surface form": "Europe"
+        }
+      ],
+      "relations": []
+    },
+    {
+      "id": "4",
+      "question": [
+        {
+          "language": "en",
+          "string": "Which U.S. states possess gold minerals?"
+        }
+      ],
+      "query": {
+        "sparql": "PREFIX yago: <http://dbpedia.org/class/yago/> PREFIX dbp: <http://dbpedia.org/property/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type yago:WikicatStatesOfTheUnitedStates ; dbp:mineral ?mineral FILTER regex(?mineral, \"gold\", \"i\") }"
+      },
+      "answers": {
+        "uri": { "type": "uri", "value": "http://dbpedia.org/resource/Alaska" }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/United_States",
+          "surface form": "US"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/owner",
+          "surface form": "possess"
+        },
+        {
+          "URI": "http://dbpedia.org/ontology/champion",
+          "surface form": "gold minerals"
+        }
+      ]
+    },
+    {
+      "id": "5",
+      "question": [
+        { "language": "en", "string": "How tall is Claudia Schiffer?" }
+      ],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?height WHERE { res:Claudia_Schiffer dbo:height ?height }"
+      },
+      "answers": {
+        "height": {
+          "type": "typed-literal",
+          "datatype": "http://www.w3.org/2001/XMLSchema#double",
+          "value": "1.8"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Claudia_Schiffer",
+          "surface form": "Claudia Schiffer"
+        }
+      ],
+      "relations": [
+        { "URI": "http://dbpedia.org/ontology/height", "surface form": "tall" }
+      ]
+    },
+    {
+      "id": "6",
+      "question": [{ "language": "en", "string": "Who created Goofy?" }],
+      "query": {
+        "sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Goofy> <http://dbpedia.org/ontology/creator> ?uri }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Bob_Ogle"
+        }
+      },
+      "entities": [
+        { "URI": "http://dbpedia.org/resource/Goofy", "surface form": "Goofy" }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/creator",
+          "surface form": "created"
+        }
+      ]
+    },
+    {
+      "id": "7",
+      "question": [
+        {
+          "language": "en",
+          "string": "Which museum exhibits The Scream by Munch?"
+        }
+      ],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:The_Scream dbo:museum ?uri }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/National_Gallery_(Norway)"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/The_Scream",
+          "surface form": "The Scream by Munch"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/museum",
+          "surface form": "museum"
+        },
+        {
+          "URI": "http://dbpedia.org/ontology/sport",
+          "surface form": "exhibits"
+        }
+      ]
+    },
+    {
+      "id": "8",
+      "question": [
+        { "language": "en", "string": "In which country is the Limerick Lake?" }
+      ],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Limerick_Lake dbo:country ?uri }"
+      },
+      "answers": {
+        "uri": { "type": "uri", "value": "http://dbpedia.org/resource/Canada" }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Limerick_Lake",
+          "surface form": "Limerick Lake"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/country",
+          "surface form": "country"
+        }
+      ]
+    },
+    {
+      "id": "9",
+      "question": [
+        {
+          "language": "en",
+          "string": "Which television shows were created by Walt Disney?"
+        }
+      ],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:TelevisionShow ; dbo:creator res:Walt_Disney }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Disney_anthology_television_series"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Walt_Disney",
+          "surface form": "Walt Disney"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/televisionSeries",
+          "surface form": "television shows"
+        },
+        {
+          "URI": "http://dbpedia.org/ontology/creator",
+          "surface form": "created"
+        }
+      ]
+    },
+    {
+      "id": "10",
+      "question": [
+        {
+          "language": "en",
+          "string": "Which mountain is the highest after the Annapurna?"
+        }
+      ],
+      "query": {
+        "sparql": "SELECT DISTINCT ?uri WHERE {  <http://dbpedia.org/resource/Annapurna> <http://dbpedia.org/ontology/elevation> ?elevation .  ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Mountain> .  ?uri <http://dbpedia.org/ontology/elevation> ?otherelevation .  FILTER (?otherelevation < ?elevation) . } ORDER BY DESC(?otherelevation) OFFSET 0 LIMIT 1 "
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Gasherbrum_I"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Annapurna_I_Middle_Peak",
+          "surface form": "Annapurna"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/mountainRange",
+          "surface form": "mountain"
+        },
+        {
+          "URI": "http://dbpedia.org/ontology/elevation",
+          "surface form": "highest"
+        }
+      ]
+    },
+    {
+      "id": "11",
+      "question": [
+        {
+          "language": "en",
+          "string": "In which films directed by Garry Marshall was Julia Roberts starring?"
+        }
+      ],
+      "query": {
+        "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Film> ; <http://dbpedia.org/ontology/starring> <http://dbpedia.org/resource/Julia_Roberts> ; <http://dbpedia.org/ontology/director> <http://dbpedia.org/resource/Garry_Marshall> }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Valentine's_Day_(2010_film)"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Garry_Marshall",
+          "surface form": "Garry Marshall was Julia Roberts"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/numberOfFilms",
+          "surface form": "films"
+        },
+        {
+          "URI": "http://dbpedia.org/ontology/president",
+          "surface form": "directed"
+        },
+        {
+          "URI": "http://dbpedia.org/ontology/starring",
+          "surface form": "starring"
+        }
+      ]
+    },
+    {
+      "id": "12",
+      "question": [
+        {
+          "language": "en",
+          "string": "Which bridges are of the same type as the Manhattan Bridge?"
+        }
+      ],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX dbr: <http://dbpedia.org/resource/> SELECT DISTINCT ?bridge WHERE { dbr:Manhattan_Bridge dbo:type ?type . ?bridge dbo:type ?type ; rdf:type dbo:Bridge }"
+      },
+      "answers": {
+        "bridge": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Ambassador_Bridge"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Manhattan_Bridge",
+          "surface form": "Manhattan Bridge"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/abstract",
+          "surface form": "bridges"
+        },
+        { "URI": "http://dbpedia.org/ontology/type", "surface form": "type" }
+      ]
+    },
+    {
+      "id": "13",
+      "question": [
+        { "language": "en", "string": "Who is the author of WikiLeaks?" }
+      ],
+      "query": {
+        "sparql": "PREFIX res: <http://dbpedia.org/resource/> PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT ?uri WHERE { res:WikiLeaks onto:author ?uri }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Julian_Assange"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/WikiLeaks",
+          "surface form": "WikiLeaks"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/author",
+          "surface form": "author"
+        }
+      ]
+    },
+    {
+      "id": "14",
+      "question": [
+        {
+          "language": "en",
+          "string": "Which state of the United States of America has the highest density?"
+        }
+      ],
+      "query": {
+        "sparql": "PREFIX yago: <http://dbpedia.org/class/yago/> PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> PREFIX dbp: <http://dbpedia.org/property/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT ?uri WHERE { ?uri dbp:densityrank ?density } ORDER BY ASC(?density) LIMIT 1"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Prince_Edward_Island"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/United_States",
+          "surface form": "United States of America"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/populationDensity",
+          "surface form": "highest density"
+        }
+      ]
+    },
+    {
+      "id": "15",
+      "question": [
+        {
+          "language": "en",
+          "string": "What is the currency of the Czech Republic?"
+        }
+      ],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Czech_Republic dbo:currency ?uri }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Czech_koruna"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Czech_Republic",
+          "surface form": "Czech Republic"
+        },
+        {
+          "URI": "http://dbpedia.org/resource/Czech_Republic",
+          "surface form": "Czech Republic"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/currency",
+          "surface form": "currency"
+        },
+        { "URI": "http://dbpedia.org/ontology/country", "surface form": "" }
+      ]
+    },
+    {
+      "id": "16",
+      "question": [
+        {
+          "language": "en",
+          "string": "Which countries in the European Union adopted the Euro?"
+        }
+      ],
+      "query": {
+        "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Country> { ?uri <http://dbpedia.org/ontology/currency> <http://dbpedia.org/resource/Euro> } UNION { ?uri <http://dbpedia.org/property/currencyCode> \"EUR\"@en } }"
+      },
+      "answers": {
+        "uri": { "type": "uri", "value": "http://dbpedia.org/resource/Andorra" }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Countries_of_the_United_Kingdom",
+          "surface form": "countries"
+        },
+        {
+          "URI": "http://dbpedia.org/resource/Europe",
+          "surface form": "European Union adopted the Euro"
+        },
+        {
+          "URI": "http://dbpedia.org/resource/The_Adopted",
+          "surface form": "European Union adopted the Euro"
+        }
+      ],
+      "relations": [
+        { "URI": "http://dbpedia.org/ontology/country", "surface form": "" }
+      ]
+    },
+    {
+      "id": "17",
+      "question": [
+        { "language": "en", "string": "What is the area code of Berlin?" }
+      ],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?string WHERE { res:Berlin dbo:areaCode ?string }"
+      },
+      "answers": { "string": { "type": "literal", "value": "030" } },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Berlin",
+          "surface form": "Berlin"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/areaCode",
+          "surface form": "area code"
+        }
+      ]
+    },
+    {
+      "id": "18",
+      "question": [
+        {
+          "language": "en",
+          "string": "Which countries have more than two official languages?"
+        }
+      ],
+      "query": {
+        "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Country> ; <http://dbpedia.org/ontology/officialLanguage> ?language } GROUP BY ?uri HAVING ( COUNT(?language) > 2 )"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Democratic_Federal_Yugoslavia"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Countries_of_the_United_Kingdom",
+          "surface form": "countries"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/property/languages",
+          "surface form": "official languages"
+        }
+      ]
+    },
+    {
+      "id": "19",
+      "question": [
+        {
+          "language": "en",
+          "string": "What is the highest mountain in Germany?"
+        }
+      ],
+      "query": {
+        "sparql": "PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT ?uri WHERE { ?uri rdf:type onto:Mountain ; onto:elevation ?elevation ; onto:locatedInArea <http://dbpedia.org/resource/Germany> } ORDER BY DESC(?elevation) LIMIT 1"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Zugspitze"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Germany",
+          "surface form": "Germany"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/elevation",
+          "surface form": "highest mountain"
+        }
+      ]
+    },
+    {
+      "id": "20",
+      "question": [
+        { "language": "en", "string": "Give me all soccer clubs in Spain." }
+      ],
+      "query": {
+        "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/SoccerClub> { ?uri <http://dbpedia.org/ontology/ground> <http://dbpedia.org/resource/Spain> } UNION { ?uri <http://dbpedia.org/property/ground> ?ground FILTER regex(?ground, \"Spain\") } }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/And\u00e9s_CF"
+        }
+      },
+      "entities": [
+        { "URI": "http://dbpedia.org/resource/Spain", "surface form": "Spain" }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/clubsRecordGoalscorer",
+          "surface form": "soccer clubs"
+        }
+      ]
+    },
+    {
+      "id": "21",
+      "question": [
+        {
+          "language": "en",
+          "string": "What are the official languages of the Philippines?"
+        }
+      ],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Philippines dbo:officialLanguage ?uri }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/English_language"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Philippines",
+          "surface form": "Philippines"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/officialLanguage",
+          "surface form": "official languages"
+        }
+      ]
+    },
+    {
+      "id": "22",
+      "question": [
+        { "language": "en", "string": "Who designed the Brooklyn Bridge?" }
+      ],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Brooklyn_Bridge dbo:architect ?uri }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/John_A._Roebling"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Brooklyn_Bridge",
+          "surface form": "Brooklyn Bridge"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/property/designer",
+          "surface form": "designed"
+        }
+      ]
+    },
+    {
+      "id": "23",
+      "question": [
+        {
+          "language": "en",
+          "string": "Which telecommunications organizations are located in Belgium?"
+        }
+      ],
+      "query": {
+        "sparql": "SELECT (COUNT(DISTINCT ?uri) AS ?c) WHERE { ?uri a <http://dbpedia.org/ontology/Organisation> { ?uri <http://dbpedia.org/ontology/industry> <http://dbpedia.org/resource/Telecommunication> } UNION { ?uri <http://dbpedia.org/property/industry> ?industry FILTER regex(?industry, \"Telecommunications\") } { ?uri <http://dbpedia.org/ontology/location> <http://dbpedia.org/resource/Belgium> } UNION { ?uri <http://dbpedia.org/property/locationCountry> \"Belgium\"@en } }"
+      },
+      "answers": {
+        "c": {
+          "type": "typed-literal",
+          "datatype": "http://www.w3.org/2001/XMLSchema#integer",
+          "value": "7"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Complex_organizations",
+          "surface form": "telecommunications organizations"
+        },
+        {
+          "URI": "http://dbpedia.org/resource/Belgium",
+          "surface form": "Belgium"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/place",
+          "surface form": "located"
+        }
+      ]
+    },
+    {
+      "id": "24",
+      "question": [
+        {
+          "language": "en",
+          "string": "What is the profession of Frank Herbert?"
+        }
+      ],
+      "query": {
+        "sparql": "PREFIX dbpedia2: <http://dbpedia.org/property/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?string WHERE { res:Frank_Herbert dbpedia2:occupation ?string }"
+      },
+      "answers": {
+        "string": { "type": "literal", "xml:lang": "en", "value": "Novelist" }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Frank_Herbert",
+          "surface form": "Frank Herbert"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/profession",
+          "surface form": "profession"
+        }
+      ]
+    },
+    {
+      "id": "25",
+      "question": [
+        {
+          "language": "en",
+          "string": "What is the highest place of Karakoram?"
+        }
+      ],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Karakoram dbp:highest ?uri }"
+      },
+      "answers": {
+        "uri": { "type": "uri", "value": "http://dbpedia.org/resource/K2" }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Karakoram",
+          "surface form": "Karakoram"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/elevation",
+          "surface form": "highest place"
+        }
+      ]
+    },
+    {
+      "id": "26",
+      "question": [
+        { "language": "en", "string": "Give me the homepage of Forbes." }
+      ],
+      "query": {
+        "sparql": "PREFIX res: <http://dbpedia.org/resource/> PREFIX foaf: <http://xmlns.com/foaf/0.1/> SELECT DISTINCT ?string WHERE { res:Forbes foaf:homepage ?string }"
+      },
+      "answers": {
+        "string": {
+          "type": "uri",
+          "value": "https://www.forbes.com/%7Cforbes.com"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Forbes",
+          "surface form": "Forbes"
+        }
+      ],
+      "relations": []
+    },
+    {
+      "id": "27",
+      "question": [
+        { "language": "en", "string": "Which presidents were born in 1945?" }
+      ],
+      "query": {
+        "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/President> ; <http://dbpedia.org/ontology/birthDate> ?date FILTER regex(?date, \"^1945\") }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Vladislav_Ardzinba"
+        }
+      },
+      "entities": [
+        { "URI": "http://dbpedia.org/resource/1945", "surface form": "1945" }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/country",
+          "surface form": "presidents"
+        },
+        {
+          "URI": "http://dbpedia.org/ontology/birthPlace",
+          "surface form": "born"
+        }
+      ]
+    },
+    {
+      "id": "28",
+      "question": [
+        { "language": "en", "string": "Who was the wife of President Lincoln?" }
+      ],
+      "query": {
+        "sparql": "PREFIX dbr: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT ?uri ?string WHERE { dbr:Abraham_Lincoln onto:spouse ?uri }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Mary_Todd_Lincoln"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/USS_President_Lincoln_(1907)",
+          "surface form": "President Lincoln"
+        }
+      ],
+      "relations": [
+        { "URI": "http://dbpedia.org/ontology/spouse", "surface form": "wife" }
+      ]
+    },
+    {
+      "id": "29",
+      "question": [
+        {
+          "language": "en",
+          "string": "Who developed the video game World of Warcraft?"
+        }
+      ],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:World_of_Warcraft dbo:developer ?uri }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Blizzard_Entertainment"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/World_of_Warcraft",
+          "surface form": "video game World of Warcraft"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/developer",
+          "surface form": "developed"
+        }
+      ]
+    },
+    {
+      "id": "30",
+      "question": [
+        { "language": "en", "string": "Who produced the most films?" }
+      ],
+      "query": {
+        "sparql": "SELECT DISTINCT ?uri WHERE { ?film <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film> . ?film <http://dbpedia.org/ontology/producer> ?uri . } ORDER BY DESC(COUNT(?film)) OFFSET 0 LIMIT 1"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Jesse_L._Lasky"
+        }
+      },
+      "entities": [],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/wineProduced",
+          "surface form": "produced"
+        },
+        {
+          "URI": "http://dbpedia.org/ontology/numberOfFilms",
+          "surface form": "films"
+        }
+      ]
+    },
+    {
+      "id": "31",
+      "question": [
+        {
+          "language": "en",
+          "string": "Which mountains are higher than the Nanga Parbat?"
+        }
+      ],
+      "query": {
+        "sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Nanga_Parbat> <http://dbpedia.org/ontology/elevation> ?elevation . ?uri a <http://dbpedia.org/ontology/Mountain> { ?uri <http://dbpedia.org/ontology/elevation> ?otherelevation } UNION { ?uri <http://dbpedia.org/property/elevationM> ?otherelevation } FILTER ( ?otherelevation > ?elevation ) }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/1974_French_Mount_Everest_expedition"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Nanga_Parbat",
+          "surface form": "Nanga Parbat"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/elevation",
+          "surface form": "mountains"
+        },
+        {
+          "URI": "http://dbpedia.org/ontology/elevation",
+          "surface form": "higher"
+        }
+      ]
+    },
+    {
+      "id": "32",
+      "question": [
+        {
+          "language": "en",
+          "string": "Give me all actors starring in Batman Begins."
+        }
+      ],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/>PREFIX res: <http://dbpedia.org/resource/>PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>SELECT DISTINCT ?uri ?string WHERE {\tres:Batman_Begins dbo:starring ?uri .\tOPTIONAL { ?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Gary_Oldman"
+        },
+        "string": {
+          "type": "literal",
+          "xml:lang": "en",
+          "value": "Gary Oldman"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Batman_Begins",
+          "surface form": "Batman Begins"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/artist",
+          "surface form": "actors"
+        },
+        {
+          "URI": "http://dbpedia.org/ontology/starring",
+          "surface form": "starring"
+        }
+      ]
+    },
+    {
+      "id": "33",
+      "question": [
+        {
+          "language": "en",
+          "string": "Give me the websites of companies with more than 500000 employees."
+        }
+      ],
+      "query": {
+        "sparql": "PREFIX foaf: <http://xmlns.com/foaf/0.1/> PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> SELECT distinct ?web WHERE { ?sub dbo:numberOfEmployees ?obj . ?sub foaf:homepage ?web FILTER( xsd:integer(?obj) > 500000 ) . }"
+      },
+      "answers": { "web": { "type": "uri", "value": "https://www.aus.com/" } },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Websites_blocked_in_Pakistan",
+          "surface form": "websites"
+        },
+        {
+          "URI": "http://dbpedia.org/resource/Companies_listed_on_the_New_York_Stock_Exchange_(J)",
+          "surface form": "companies"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/numberOfEmployees",
+          "surface form": "500000 employees"
+        }
+      ]
+    },
+    {
+      "id": "34",
+      "question": [
+        { "language": "en", "string": "Which actors were born in Germany?" }
+      ],
+      "query": {
+        "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Actor> { ?uri <http://dbpedia.org/ontology/birthPlace> <http://dbpedia.org/resource/Germany> } UNION { ?uri <http://dbpedia.org/ontology/birthPlace> ?place . ?place <http://dbpedia.org/ontology/country> <http://dbpedia.org/resource/Germany> } }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Friederike_Caroline_Neuber"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Germany",
+          "surface form": "Germany"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/award",
+          "surface form": "actors"
+        },
+        {
+          "URI": "http://dbpedia.org/ontology/birthPlace",
+          "surface form": "born"
+        }
+      ]
+    },
+    {
+      "id": "35",
+      "question": [
+        { "language": "en", "string": "Who was Tom Hanks married to?" }
+      ],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> SELECT DISTINCT ?uri WHERE { dbr:Tom_Hanks dbo:spouse ?uri }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Rita_Wilson"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Tom_Hanks",
+          "surface form": "Tom Hanks"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/property/spouse",
+          "surface form": "married"
+        }
+      ]
+    },
+    {
+      "id": "36",
+      "question": [
+        { "language": "en", "string": "Which people were born in Heraklion?" }
+      ],
+      "query": {
+        "sparql": "PREFIX yago: <http://dbpedia.org/class/yago/> PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Person ; onto:birthPlace <http://dbpedia.org/resource/Heraklion>. }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Anastasios_Triantafyllou"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Heraklion",
+          "surface form": "Heraklion"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/birthPlace",
+          "surface form": "born"
+        }
+      ]
+    },
+    {
+      "id": "37",
+      "question": [
+        {
+          "language": "en",
+          "string": "Which caves have more than 3 entrances?"
+        }
+      ],
+      "query": {
+        "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Cave> ; <http://dbpedia.org/property/entranceCount> ?entrance FILTER ( ?entrance > 3 ) }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Amat\u00e9rsk\u00e1_Cave"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Caves_of_Aggtelek_Karst_and_Slovak_Karst",
+          "surface form": "caves"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/iso6393Code",
+          "surface form": "3 entrances"
+        }
+      ]
+    },
+    {
+      "id": "38",
+      "question": [
+        {
+          "language": "en",
+          "string": "Give me all films produced by Hal Roach."
+        }
+      ],
+      "query": {
+        "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Film> ; <http://dbpedia.org/ontology/producer> <http://dbpedia.org/resource/Hal_Roach> }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/All_Aboard_(1917_film)"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Hal_Roach",
+          "surface form": "Hal Roach"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/numberOfFilms",
+          "surface form": "films"
+        },
+        {
+          "URI": "http://dbpedia.org/ontology/wineProduced",
+          "surface form": "produced"
+        }
+      ]
+    },
+    {
+      "id": "39",
+      "question": [
+        {
+          "language": "en",
+          "string": "Which software has been published by Mean Hamster Software?"
+        }
+      ],
+      "query": {
+        "sparql": "PREFIX res: <http://dbpedia.org/resource/> PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Software { ?uri prop:publisher \"Mean Hamster Software\"@en } UNION { ?uri onto:publisher res:Mean_Hamster_Software } }"
+      },
+      "answers": {
+        "uri": { "type": "uri", "value": "http://dbpedia.org/resource/Riven" }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Software",
+          "surface form": "software"
+        },
+        {
+          "URI": "http://dbpedia.org/resource/Mean_Hamster_Software",
+          "surface form": "Mean Hamster Software"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/publisher",
+          "surface form": "published"
+        }
+      ]
+    },
+    {
+      "id": "40",
+      "question": [{ "language": "en", "string": "Who owns Aldi?" }],
+      "query": {
+        "sparql": "PREFIX res: <http://dbpedia.org/resource/> PREFIX dbp: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Aldi dbp:founders ?uri }"
+      },
+      "answers": {
+        "uri": {
+          "type": "literal",
+          "xml:lang": "en",
+          "value": "Karl and Theo Albrecht"
+        }
+      },
+      "entities": [
+        { "URI": "http://dbpedia.org/resource/Aldi", "surface form": "Aldi" }
+      ],
+      "relations": [
+        { "URI": "http://dbpedia.org/ontology/family", "surface form": "owns" }
+      ]
+    },
+    {
+      "id": "41",
+      "question": [
+        {
+          "language": "en",
+          "string": "Which music albums contain the song Last Christmas?"
+        }
+      ],
+      "query": {
+        "sparql": "SELECT DISTINCT ?uri WHERE { ?single <http://dbpedia.org/ontology/album> ?uri ; <http://www.w3.org/2000/01/rdf-schema#label> \"Last Christmas\"@en }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Music_from_the_Edge_of_Heaven"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/The_Last_Song_(film)",
+          "surface form": "song Last Christmas"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/musicComposer",
+          "surface form": "music albums"
+        }
+      ]
+    },
+    {
+      "id": "42",
+      "question": [
+        {
+          "language": "en",
+          "string": "Which books were written by Danielle Steel?"
+        }
+      ],
+      "query": {
+        "sparql": "PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX foaf: <http://xmlns.com/foaf/0.1/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT ?uri WHERE { ?uri rdf:type onto:Book ; onto:author <http://dbpedia.org/resource/Danielle_Steel> }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Amazing_Grace_(novel)"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Danielle_Steel",
+          "surface form": "Danielle Steel"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/volume",
+          "surface form": "books"
+        },
+        {
+          "URI": "http://dbpedia.org/ontology/writer",
+          "surface form": "written"
+        }
+      ]
+    },
+    {
+      "id": "43",
+      "question": [
+        {
+          "language": "en",
+          "string": "Which country has the most official languages?"
+        }
+      ],
+      "query": {
+        "sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Country> . ?uri <http://dbpedia.org/property/officialLanguages> ?language . } ORDER BY DESC(COUNT(?language)) OFFSET 0 LIMIT 1"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/South_Africa"
+        }
+      },
+      "entities": [],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/country",
+          "surface form": "country"
+        },
+        {
+          "URI": "http://dbpedia.org/ontology/incumbent",
+          "surface form": "official languages"
+        }
+      ]
+    },
+    {
+      "id": "44",
+      "question": [
+        {
+          "language": "en",
+          "string": "In which programming language is GIMP written?"
+        }
+      ],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:GIMP dbo:programmingLanguage ?uri }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/C_(programming_language)"
+        }
+      },
+      "entities": [
+        { "URI": "http://dbpedia.org/resource/GIMP", "surface form": "GIMP" }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/programmingLanguage",
+          "surface form": "programming language"
+        },
+        {
+          "URI": "http://dbpedia.org/ontology/writer",
+          "surface form": "written"
+        }
+      ]
+    },
+    {
+      "id": "45",
+      "question": [
+        {
+          "language": "en",
+          "string": "Who produced films starring Natalie Portman?"
+        }
+      ],
+      "query": {
+        "sparql": "SELECT DISTINCT ?uri WHERE { ?film a <http://dbpedia.org/ontology/Film> ; <http://dbpedia.org/ontology/starring> <http://dbpedia.org/resource/Natalie_Portman> ; <http://dbpedia.org/ontology/producer> ?uri }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/The_Wachowskis"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Natalie_Portman",
+          "surface form": "produced films films starring Natalie Portman"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/wineProduced",
+          "surface form": "produced"
+        }
+      ]
+    },
+    {
+      "id": "46",
+      "question": [
+        {
+          "language": "en",
+          "string": "In which films did Julia Roberts as well as Richard Gere play?"
+        }
+      ],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Film ; dbo:starring res:Julia_Roberts ; dbo:starring res:Richard_Gere }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Pretty_Woman"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Julia_Roberts",
+          "surface form": "Julia Roberts"
+        },
+        {
+          "URI": "http://dbpedia.org/resource/Richard_Gere",
+          "surface form": "Richard Gere"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/numberOfFilms",
+          "surface form": "films"
+        },
+        {
+          "URI": "http://dbpedia.org/ontology/starring",
+          "surface form": "play"
+        }
+      ]
+    },
+    {
+      "id": "47",
+      "question": [
+        {
+          "language": "en",
+          "string": "Who wrote the book The pillars of the Earth?"
+        }
+      ],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> SELECT DISTINCT ?uri WHERE { res:The_Pillars_of_the_Earth dbo:author ?uri }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Ken_Follett"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/The_Pillars_of_the_Earth",
+          "surface form": "The Pillars of the Earth"
+        }
+      ],
+      "relations": [
+        { "URI": "http://dbpedia.org/ontology/author", "surface form": "wrote" }
+      ]
+    },
+    {
+      "id": "48",
+      "question": [
+        {
+          "language": "en",
+          "string": "How many films did Leonardo DiCaprio star in?"
+        }
+      ],
+      "query": {
+        "sparql": "SELECT (COUNT(DISTINCT ?uri) AS ?c) WHERE { ?uri a <http://dbpedia.org/ontology/Film> ; <http://dbpedia.org/ontology/starring> <http://dbpedia.org/resource/Leonardo_DiCaprio> }"
+      },
+      "answers": {
+        "c": {
+          "type": "typed-literal",
+          "datatype": "http://www.w3.org/2001/XMLSchema#integer",
+          "value": "33"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Leonardo_DiCaprio",
+          "surface form": "Leonardo DiCaprio star"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/numberOfFilms",
+          "surface form": "films"
+        }
+      ]
+    },
+    {
+      "id": "49",
+      "question": [
+        {
+          "language": "en",
+          "string": "Give me all soccer clubs in the Premier League."
+        }
+      ],
+      "query": {
+        "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/SoccerClub> ; <http://dbpedia.org/ontology/league> <http://dbpedia.org/resource/Premier_League> }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/2010\u201311_Tottenham_Hotspur_F.C._season"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Premier_League",
+          "surface form": "Premier League"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/clubsRecordGoalscorer",
+          "surface form": "soccer clubs"
+        }
+      ]
+    },
+    {
+      "id": "50",
+      "question": [{ "language": "en", "string": "When was Capcom founded?" }],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/>PREFIX res: <http://dbpedia.org/resource/>SELECT DISTINCT ?date WHERE { res:Capcom dbo:foundingDate ?date .}"
+      },
+      "answers": {
+        "date": {
+          "type": "typed-literal",
+          "datatype": "http://www.w3.org/2001/XMLSchema#date",
+          "value": "1979-05-30"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Capcom",
+          "surface form": "Capcom"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/foundingYear",
+          "surface form": "founded"
+        }
+      ]
+    },
+    {
+      "id": "51",
+      "question": [
+        {
+          "language": "en",
+          "string": "Which organizations were founded in 1950?"
+        }
+      ],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbp: <http://dbpedia.org/property/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> 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\") }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Danish_Defence_Intelligence_Service"
+        }
+      },
+      "entities": [
+        { "URI": "http://dbpedia.org/resource/1950", "surface form": "1950" }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/company",
+          "surface form": "organizations"
+        },
+        {
+          "URI": "http://dbpedia.org/ontology/author",
+          "surface form": "founded"
+        }
+      ]
+    },
+    {
+      "id": "52",
+      "question": [
+        { "language": "en", "string": "What is the highest mountain?" }
+      ],
+      "query": {
+        "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Mountain> ; <http://dbpedia.org/ontology/elevation> ?elevation } ORDER BY DESC(?elevation) OFFSET 0 LIMIT 1"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Pico_Alto"
+        }
+      },
+      "entities": [],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/highestMountain",
+          "surface form": "highest mountain"
+        }
+      ]
+    },
+    {
+      "id": "53",
+      "question": [
+        {
+          "language": "en",
+          "string": "Which German cities have more than 250000 inhabitants?"
+        }
+      ],
+      "query": {
+        "sparql": "SELECT DISTINCT ?uri WHERE { { ?uri a <http://dbpedia.org/ontology/City> } UNION { ?uri a <http://dbpedia.org/ontology/Town> } ?uri <http://dbpedia.org/ontology/country> <http://dbpedia.org/resource/Germany> ; <http://dbpedia.org/ontology/populationTotal> ?population FILTER ( ?population > 250000 ) }"
+      },
+      "answers": {
+        "uri": { "type": "uri", "value": "http://dbpedia.org/resource/Berlin" }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Germany",
+          "surface form": "German cities"
+        },
+        {
+          "URI": "http://dbpedia.org/resource/German",
+          "surface form": "German cities"
+        },
+        {
+          "URI": "http://dbpedia.org/resource/Population",
+          "surface form": "250000 inhabitants"
+        }
+      ],
+      "relations": [
+        { "URI": "http://dbpedia.org/ontology/country", "surface form": "" },
+        { "URI": "http://dbpedia.org/ontology/country", "surface form": "" }
+      ]
+    },
+    {
+      "id": "54",
+      "question": [
+        {
+          "language": "en",
+          "string": "What is the second highest mountain on Earth?"
+        }
+      ],
+      "query": {
+        "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Mountain> ; <http://dbpedia.org/ontology/elevation> ?elevation } ORDER BY DESC(?elevation) OFFSET 1 LIMIT 1"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Alpide_belt"
+        }
+      },
+      "entities": [
+        { "URI": "http://dbpedia.org/resource/Earth", "surface form": "Earth" }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/elevation",
+          "surface form": "highest mountain"
+        }
+      ]
+    },
+    {
+      "id": "55",
+      "question": [
+        { "language": "en", "string": "When was Alberta admitted as province?" }
+      ],
+      "query": {
+        "sparql": "SELECT DISTINCT ?date WHERE { <http://dbpedia.org/resource/Alberta> <http://dbpedia.org/property/admittancedate> ?date }"
+      },
+      "answers": {
+        "date": {
+          "type": "typed-literal",
+          "datatype": "http://www.w3.org/2001/XMLSchema#date",
+          "value": "1905-09-01"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Alberta",
+          "surface form": "Alberta"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/property/known",
+          "surface form": "admitted"
+        },
+        {
+          "URI": "http://dbpedia.org/ontology/province",
+          "surface form": "province"
+        }
+      ]
+    },
+    {
+      "id": "56",
+      "question": [
+        {
+          "language": "en",
+          "string": "To which countries does the Himalayan mountain system extend?"
+        }
+      ],
+      "query": {
+        "sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Himalayas> <http://dbpedia.org/ontology/country> ?uri }"
+      },
+      "answers": {
+        "uri": { "type": "uri", "value": "http://dbpedia.org/resource/Kashmir" }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Countries_of_the_United_Kingdom",
+          "surface form": "countries"
+        },
+        {
+          "URI": "http://dbpedia.org/resource/Himalayan",
+          "surface form": "Himalayan mountain"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/border",
+          "surface form": "extend"
+        }
+      ]
+    },
+    {
+      "id": "57",
+      "question": [
+        {
+          "language": "en",
+          "string": "Give me a list of all trumpet players that were bandleaders."
+        }
+      ],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { ?uri dbo:occupation res:Bandleader ; dbo:instrument res:Trumpet }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Danny_Davis_(country_musician)"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Trumpet",
+          "surface form": "trumpet players"
+        },
+        {
+          "URI": "http://dbpedia.org/resource/List_of_American_big_band_bandleaders",
+          "surface form": "bandleaders"
+        }
+      ],
+      "relations": []
+    },
+    {
+      "id": "58",
+      "question": [
+        {
+          "language": "en",
+          "string": "What is the total amount of men and women serving in the FDNY?"
+        }
+      ],
+      "query": {
+        "sparql": "SELECT DISTINCT ?num WHERE { <http://dbpedia.org/resource/New_York_City_Fire_Department> <http://dbpedia.org/property/employees> ?num }"
+      },
+      "answers": {
+        "num": {
+          "type": "typed-literal",
+          "datatype": "http://www.w3.org/2001/XMLSchema#integer",
+          "value": "17321"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/FDNY_Racing",
+          "surface form": "FDNY"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/populationTotal",
+          "surface form": "total"
+        },
+        {
+          "URI": "http://dbpedia.org/ontology/authority",
+          "surface form": "men"
+        },
+        {
+          "URI": "http://dbpedia.org/ontology/person",
+          "surface form": "women"
+        },
+        {
+          "URI": "http://dbpedia.org/ontology/service",
+          "surface form": "serving"
+        }
+      ]
+    },
+    {
+      "id": "59",
+      "question": [
+        {
+          "language": "en",
+          "string": "Who is the Formula 1 race driver with the most races?"
+        }
+      ],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:FormulaOneRacer ; dbo:races ?x } ORDER BY DESC(?x) OFFSET 0 LIMIT 1"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Jenson_Button"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Race_Driver:_Create_&_Race",
+          "surface form": "Formula 1 race driver"
+        }
+      ],
+      "relations": [
+        { "URI": "http://dbpedia.org/ontology/races", "surface form": "races" }
+      ]
+    },
+    {
+      "id": "60",
+      "question": [
+        {
+          "language": "en",
+          "string": "Give me all world heritage sites designated within the past five years."
+        }
+      ],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/>PREFIX dbp: <http://dbpedia.org/property/>PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>SELECT DISTINCT ?uri WHERE {\t?uri rdf:type dbo:WorldHeritageSite .\t?uri dbp:year ?x .\tFILTER ( ?x >= \"2008\"^^xsd:integer)}"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Amami-\u014cshima_Island,_Tokunoshima_Island,_northern_part_of_Okinawa_Island,_and_Iriomote_Island"
+        }
+      },
+      "entities": [],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/fate",
+          "surface form": "heritage sites"
+        },
+        {
+          "URI": "http://dbpedia.org/ontology/class",
+          "surface form": "designated"
+        }
+      ]
+    },
+    {
+      "id": "61",
+      "question": [
+        {
+          "language": "en",
+          "string": "Who is the youngest player in the Premier League?"
+        }
+      ],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { ?uri dbo:team ?team . ?league dbo:league res:Premier_League . ?league dbo:team ?team . ?uri dbo:birthDate ?date } ORDER BY DESC(?date) LIMIT 1"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Ben_Doak"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Premier_League",
+          "surface form": "Premier League"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/participant",
+          "surface form": "player"
+        }
+      ]
+    },
+    {
+      "id": "62",
+      "question": [
+        { "language": "en", "string": "Give me all members of Prodigy." }
+      ],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:The_Prodigy dbo:bandMember ?uri }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Maxim_(musician)"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/The_Prodigy",
+          "surface form": "Prodigy"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/bandMember",
+          "surface form": "members"
+        }
+      ]
+    },
+    {
+      "id": "63",
+      "question": [
+        { "language": "en", "string": "What is the longest river?" }
+      ],
+      "query": {
+        "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/River> { ?uri <http://dbpedia.org/ontology/length> ?l } UNION { ?uri <http://dbpedia.org/property/length> ?l } } ORDER BY DESC(?l) OFFSET 0 LIMIT 1"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Indian_Ocean"
+        }
+      },
+      "entities": [],
+      "relations": [
+        { "URI": "http://dbpedia.org/ontology/river", "surface form": "river" }
+      ]
+    },
+    {
+      "id": "64",
+      "question": [
+        {
+          "language": "en",
+          "string": "Give me all cars that are produced in Germany."
+        }
+      ],
+      "query": {
+        "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Automobile> { ?uri <http://dbpedia.org/ontology/assembly> <http://dbpedia.org/resource/Germany> } UNION { ?uri <http://dbpedia.org/property/assembly> <http://dbpedia.org/resource/Germany> } UNION { { ?uri <http://dbpedia.org/ontology/manufacturer> ?x } UNION { ?uri <http://dbpedia.org/property/manufacturer> ?x } { ?x <http://dbpedia.org/ontology/locationCountry> <http://dbpedia.org/resource/Germany> } UNION { ?x <http://dbpedia.org/ontology/location> <http://dbpedia.org/resource/Germany> } } }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Wanderer_W24"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Germany",
+          "surface form": "Germany"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/management",
+          "surface form": "cars"
+        },
+        {
+          "URI": "http://dbpedia.org/ontology/author",
+          "surface form": "produced"
+        }
+      ]
+    },
+    {
+      "id": "65",
+      "question": [
+        {
+          "language": "en",
+          "string": "Give me all people that were born in Vienna and died in Berlin."
+        }
+      ],
+      "query": {
+        "sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/birthPlace> <http://dbpedia.org/resource/Vienna> ; <http://dbpedia.org/ontology/deathPlace> <http://dbpedia.org/resource/Berlin> }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Hans_Fidesser"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Vienna",
+          "surface form": "Vienna"
+        },
+        {
+          "URI": "http://dbpedia.org/resource/Berlin",
+          "surface form": "Berlin"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/birthPlace",
+          "surface form": "born"
+        },
+        { "URI": "http://dbpedia.org/ontology/flag", "surface form": "died" }
+      ]
+    },
+    {
+      "id": "66",
+      "question": [
+        { "language": "en", "string": "How tall is Michael Jordan?" }
+      ],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?num WHERE { res:Michael_Jordan dbo:height ?num }"
+      },
+      "answers": {
+        "num": {
+          "type": "typed-literal",
+          "datatype": "http://www.w3.org/2001/XMLSchema#double",
+          "value": "1.9812"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Michael_Jordan",
+          "surface form": "Michael Jordan"
+        }
+      ],
+      "relations": [
+        { "URI": "http://dbpedia.org/ontology/height", "surface form": "tall" }
+      ]
+    },
+    {
+      "id": "67",
+      "question": [
+        { "language": "en", "string": "What is the capital of Canada?" }
+      ],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Canada dbo:capital ?uri }"
+      },
+      "answers": {
+        "uri": { "type": "uri", "value": "http://dbpedia.org/resource/Ottawa" }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Canada",
+          "surface form": "Canada"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/capital",
+          "surface form": "capital"
+        }
+      ]
+    },
+    {
+      "id": "68",
+      "question": [
+        { "language": "en", "string": "Who is the governor of Texas?" }
+      ],
+      "query": {
+        "sparql": "PREFIX res: <http://dbpedia.org/resource/> PREFIX dbp: <http://dbpedia.org/property/> SELECT DISTINCT ?string WHERE { res:Texas dbp:governor ?string }"
+      },
+      "answers": {
+        "string": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Greg_Abbott"
+        }
+      },
+      "entities": [
+        { "URI": "http://dbpedia.org/resource/Texas", "surface form": "Texas" }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/governor",
+          "surface form": "governor"
+        }
+      ]
+    },
+    {
+      "id": "69",
+      "question": [
+        {
+          "language": "en",
+          "string": "Which U.S. state has been admitted latest?"
+        }
+      ],
+      "query": {
+        "sparql": "PREFIX dbc: <http://dbpedia.org/resource/Category:> PREFIX dct: <http://purl.org/dc/terms/> SELECT DISTINCT ?uri WHERE { ?uri dct:subject dbc:States_of_the_United_States ; <http://dbpedia.org/property/admittancedate> ?x } ORDER BY DESC(?x) LIMIT 1"
+      },
+      "answers": {
+        "uri": { "type": "uri", "value": "http://dbpedia.org/resource/Hawaii" }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/United_States",
+          "surface form": "US"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/property/known",
+          "surface form": "admitted"
+        }
+      ]
+    },
+    {
+      "id": "70",
+      "question": [
+        {
+          "language": "en",
+          "string": "How many official languages are spoken on the Seychelles?"
+        }
+      ],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/>PREFIX res: <http://dbpedia.org/resource/>SELECT COUNT(DISTINCT ?x) WHERE {        res:Seychelles dbo:officialLanguage ?x .}"
+      },
+      "answers": {
+        "callret-0": {
+          "type": "typed-literal",
+          "datatype": "http://www.w3.org/2001/XMLSchema#integer",
+          "value": "3"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Seychelles",
+          "surface form": "Seychelles"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/officialLanguage",
+          "surface form": "official languages"
+        },
+        {
+          "URI": "http://dbpedia.org/ontology/spokenIn",
+          "surface form": "spoken"
+        }
+      ]
+    },
+    {
+      "id": "71",
+      "question": [
+        {
+          "language": "en",
+          "string": "Give me all movies directed by Francis Ford Coppola."
+        }
+      ],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Film ; dbo:director res:Francis_Ford_Coppola }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Dementia_13"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Francis_Ford_Coppola",
+          "surface form": "Francis Ford Coppola"
+        }
+      ],
+      "relations": [
+        { "URI": "http://dbpedia.org/ontology/film", "surface form": "movies" },
+        {
+          "URI": "http://dbpedia.org/ontology/president",
+          "surface form": "directed"
+        }
+      ]
+    },
+    {
+      "id": "72",
+      "question": [
+        {
+          "language": "en",
+          "string": "Give me all actors starring in movies directed by and starring William Shatner."
+        }
+      ],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX dbp: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { ?x dbo:director res:William_Shatner ; dbo:starring res:William_Shatner { ?x dbo:starring ?uri } UNION { ?x dbp:starring ?uri } }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/DeForest_Kelley"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/William_Shatner",
+          "surface form": "William Shatner"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/artist",
+          "surface form": "actors"
+        },
+        {
+          "URI": "http://dbpedia.org/ontology/starring",
+          "surface form": "starring"
+        },
+        { "URI": "http://dbpedia.org/ontology/film", "surface form": "movies" },
+        {
+          "URI": "http://dbpedia.org/property/directedby",
+          "surface form": "directed"
+        },
+        {
+          "URI": "http://dbpedia.org/ontology/starring",
+          "surface form": "starring"
+        }
+      ]
+    },
+    {
+      "id": "73",
+      "question": [
+        {
+          "language": "en",
+          "string": "What is the birth name of Angela Merkel?"
+        }
+      ],
+      "query": {
+        "sparql": "SELECT DISTINCT ?string WHERE { <http://dbpedia.org/resource/Angela_Merkel> <http://dbpedia.org/property/birthName> ?string }"
+      },
+      "answers": {
+        "string": {
+          "type": "literal",
+          "xml:lang": "en",
+          "value": "Angela Dorothea Kasner"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Angela_Merkel",
+          "surface form": "Angela Merkel"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/property/birthName",
+          "surface form": "birth name"
+        }
+      ]
+    },
+    {
+      "id": "74",
+      "question": [
+        { "language": "en", "string": "How often did Nicole Kidman marry?" }
+      ],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/>PREFIX res: <http://dbpedia.org/resource/>SELECT COUNT(DISTINCT ?x) WHERE {               res:Nicole_Kidman dbo:spouse ?x .}"
+      },
+      "answers": {
+        "callret-0": {
+          "type": "typed-literal",
+          "datatype": "http://www.w3.org/2001/XMLSchema#integer",
+          "value": "2"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Nicole_Kidman",
+          "surface form": "Nicole Kidman"
+        }
+      ],
+      "relations": [
+        { "URI": "http://dbpedia.org/ontology/spouse", "surface form": "marry" }
+      ]
+    },
+    {
+      "id": "75",
+      "question": [
+        {
+          "language": "en",
+          "string": "Give me all Australian nonprofit organizations."
+        }
+      ],
+      "query": {
+        "sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/type> <http://dbpedia.org/resource/Nonprofit_organization> { ?uri <http://dbpedia.org/ontology/locationCountry> <http://dbpedia.org/resource/Australia> } UNION { ?uri <http://dbpedia.org/ontology/location> ?x . ?x <http://dbpedia.org/ontology/country> <http://dbpedia.org/resource/Australia> } }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/YourView"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Australia",
+          "surface form": "Australian nonprofit organizations"
+        },
+        {
+          "URI": "http://dbpedia.org/resource/Master_of_Nonprofit_Organizations",
+          "surface form": "Australian nonprofit organizations"
+        }
+      ],
+      "relations": [
+        { "URI": "http://dbpedia.org/ontology/country", "surface form": "" }
+      ]
+    },
+    {
+      "id": "76",
+      "question": [
+        {
+          "language": "en",
+          "string": "In which military conflicts did Lawrence of Arabia participate?"
+        }
+      ],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:T._E._Lawrence dbo:battle ?uri }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Battle_of_Megiddo_(1918)"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/T._E._Lawrence",
+          "surface form": "Lawrence of Arabia"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/militaryBranch",
+          "surface form": "military conflicts"
+        },
+        {
+          "URI": "http://dbpedia.org/ontology/participant",
+          "surface form": "participate"
+        }
+      ]
+    },
+    {
+      "id": "77",
+      "question": [{ "language": "en", "string": "Who developed Skype?" }],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> SELECT DISTINCT ?uri WHERE { res:Skype dbo:developer ?uri. }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Skype_Technologies"
+        }
+      },
+      "entities": [
+        { "URI": "http://dbpedia.org/resource/Skype", "surface form": "Skype" }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/developer",
+          "surface form": "developed"
+        }
+      ]
+    },
+    {
+      "id": "78",
+      "question": [
+        { "language": "en", "string": "Give me all companies in Munich." }
+      ],
+      "query": {
+        "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Company> { ?uri <http://dbpedia.org/ontology/location> <http://dbpedia.org/resource/Munich> } UNION { ?uri <http://dbpedia.org/ontology/headquarter> <http://dbpedia.org/resource/Munich> } UNION { ?uri <http://dbpedia.org/ontology/locationCity> <http://dbpedia.org/resource/Munich> } }"
+      },
+      "answers": {
+        "uri": { "type": "uri", "value": "http://dbpedia.org/resource/Allianz" }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Companies_listed_on_the_New_York_Stock_Exchange_(J)",
+          "surface form": "companies"
+        },
+        {
+          "URI": "http://dbpedia.org/resource/Munich",
+          "surface form": "Munich"
+        }
+      ],
+      "relations": []
+    },
+    {
+      "id": "79",
+      "question": [
+        { "language": "en", "string": "List all boardgames by GMT." }
+      ],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> SELECT ?uri WHERE { ?uri dbo:publisher res:GMT_Games }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Fields_of_Fire_(game)"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Generic_Mapping_Tools",
+          "surface form": "GMT"
+        },
+        {
+          "URI": "http://dbpedia.org/resource/Belarus",
+          "surface form": "Boardgames by"
+        }
+      ],
+      "relations": []
+    },
+    {
+      "id": "80",
+      "question": [
+        {
+          "language": "en",
+          "string": "Give me all breeds of the German Shepherd dog."
+        }
+      ],
+      "query": {
+        "sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/breed> <http://dbpedia.org/resource/German_Shepherd> }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Mancs_(dog)"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Germany",
+          "surface form": "German Shepherd dog"
+        },
+        {
+          "URI": "http://dbpedia.org/resource/German_Shepherd",
+          "surface form": "German Shepherd dog"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/genre",
+          "surface form": "breeds"
+        },
+        { "URI": "http://dbpedia.org/ontology/country", "surface form": "" }
+      ]
+    },
+    {
+      "id": "81",
+      "question": [
+        {
+          "language": "en",
+          "string": "Give me all Frisian islands that belong to the Netherlands."
+        }
+      ],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX yago: <http://dbpedia.org/class/yago/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type yago:WikicatFrisianIslands ; dbo:country res:Netherlands }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Frisian_Islands"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Frisian_Islands",
+          "surface form": "Frisian islands"
+        },
+        {
+          "URI": "http://dbpedia.org/resource/Netherlands_Antilles_at_the_2007_Pan_American_Games",
+          "surface form": "Netherlands"
+        }
+      ],
+      "relations": [
+        { "URI": "http://dbpedia.org/property/rank", "surface form": "belong" }
+      ]
+    },
+    {
+      "id": "82",
+      "question": [
+        {
+          "language": "en",
+          "string": "What are the nicknames of San Francisco?"
+        }
+      ],
+      "query": {
+        "sparql": "PREFIX res: <http://dbpedia.org/resource/> PREFIX dbp: <http://dbpedia.org/property/> PREFIX foaf:<http://xmlns.com/foaf/0.1/> SELECT DISTINCT ?string WHERE { res:San_Francisco foaf:nick ?string }"
+      },
+      "answers": {
+        "string": {
+          "type": "literal",
+          "xml:lang": "en",
+          "value": "SeeList of nicknames for San Francisco"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/San_Francisco",
+          "surface form": "San Francisco"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/mascot",
+          "surface form": "nicknames"
+        }
+      ]
+    },
+    {
+      "id": "83",
+      "question": [
+        { "language": "en", "string": "Give me the Apollo 14 astronauts." }
+      ],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { ?uri dbo:mission res:Apollo_14 }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Alan_Shepard"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Apollo_14",
+          "surface form": "Apollo 14 astronauts"
+        }
+      ],
+      "relations": []
+    },
+    {
+      "id": "84",
+      "question": [
+        {
+          "language": "en",
+          "string": "What is the time zone of Salt Lake City?"
+        }
+      ],
+      "query": {
+        "sparql": "PREFIX res: <http://dbpedia.org/resource/> PREFIX dbp: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Salt_Lake_City <http://dbpedia.org/ontology/timeZone> ?uri }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Mountain_Time_Zone"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Salt_Lake_City",
+          "surface form": "Salt Lake City"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/timeZone",
+          "surface form": "time zone"
+        }
+      ]
+    },
+    {
+      "id": "85",
+      "question": [
+        {
+          "language": "en",
+          "string": "Which U.S. states are in the same timezone as Utah?"
+        }
+      ],
+      "query": {
+        "sparql": "PREFIX yago: <http://dbpedia.org/class/yago/> PREFIX res: <http://dbpedia.org/resource/> PREFIX dbp: <http://dbpedia.org/property/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { res:Utah dbp:timezone ?x . ?uri rdf:type yago:WikicatStatesOfTheUnitedStates ; dbp:timezone ?x FILTER ( ?uri != res:Utah ) }"
+      },
+      "answers": {
+        "uri": { "type": "uri", "value": "http://dbpedia.org/resource/Montana" }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Usk,_Washington",
+          "surface form": "US"
+        },
+        { "URI": "http://dbpedia.org/resource/Utah", "surface form": "Utah" }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/timeZone",
+          "surface form": "timezone"
+        }
+      ]
+    },
+    {
+      "id": "86",
+      "question": [
+        {
+          "language": "en",
+          "string": "Give me a list of all lakes in Denmark."
+        }
+      ],
+      "query": {
+        "sparql": "SELECT DISTINCT ?uri WHERE { { ?uri a <http://dbpedia.org/ontology/Lake> ; <http://dbpedia.org/ontology/country> <http://dbpedia.org/resource/Denmark> } UNION { ?uri a <http://dbpedia.org/class/yago/LakesOfDenmark> } }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Fures\u00f8_(lake)"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Denmark",
+          "surface form": "Denmark"
+        }
+      ],
+      "relations": [
+        { "URI": "http://dbpedia.org/ontology/lake", "surface form": "lakes" }
+      ]
+    },
+    {
+      "id": "87",
+      "question": [
+        {
+          "language": "en",
+          "string": "How many space missions have there been?"
+        }
+      ],
+      "query": {
+        "sparql": " PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT COUNT(DISTINCT ?uri) WHERE {         ?uri rdf:type dbo:SpaceMission . } "
+      },
+      "answers": {
+        "callret-0": {
+          "type": "typed-literal",
+          "datatype": "http://www.w3.org/2001/XMLSchema#integer",
+          "value": "3433"
+        }
+      },
+      "entities": [],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/missions",
+          "surface form": "space missions"
+        }
+      ]
+    },
+    {
+      "id": "88",
+      "question": [
+        { "language": "en", "string": "Give me all Argentine films." }
+      ],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX yago: <http://dbpedia.org/class/yago/> PREFIX res: <http://dbpedia.org/resource/> PREFIX dbp: <http://dbpedia.org/property/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> 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 } } }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/All\u00e1_en_el_Norte"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Argentina",
+          "surface form": "Argentine films"
+        },
+        {
+          "URI": "http://dbpedia.org/resource/Lists_of_Argentine_films",
+          "surface form": "Argentine films"
+        }
+      ],
+      "relations": [
+        { "URI": "http://dbpedia.org/ontology/country", "surface form": "" }
+      ]
+    },
+    {
+      "id": "89",
+      "question": [
+        {
+          "language": "en",
+          "string": "Give me all launch pads operated by NASA."
+        }
+      ],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:LaunchPad ; dbo:operator res:NASA }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Wallops_Flight_Facility_Launch_Area_3"
+        }
+      },
+      "entities": [
+        { "URI": "http://dbpedia.org/resource/NASA", "surface form": "NASA" }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/institution",
+          "surface form": "launch"
+        },
+        {
+          "URI": "http://dbpedia.org/ontology/operatedBy",
+          "surface form": "pads operated"
+        }
+      ]
+    },
+    {
+      "id": "90",
+      "question": [
+        {
+          "language": "en",
+          "string": "Which ships were called after Benjamin Franklin?"
+        }
+      ],
+      "query": {
+        "sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/shipNamesake> <http://dbpedia.org/resource/Benjamin_Franklin> }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Ben_Franklin_(PX-15)"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Benjamin_Franklin",
+          "surface form": "Benjamin Franklin"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/shipBeam",
+          "surface form": "ships"
+        },
+        {
+          "URI": "http://dbpedia.org/property/nickname",
+          "surface form": "called"
+        }
+      ]
+    },
+    {
+      "id": "91",
+      "question": [
+        { "language": "en", "string": "When was the Statue of Liberty built?" }
+      ],
+      "query": {
+        "sparql": "SELECT DISTINCT ?date WHERE { <http://dbpedia.org/resource/Statue_of_Liberty> <http://dbpedia.org/property/beginningDate> ?date }"
+      },
+      "answers": {
+        "date": {
+          "type": "typed-literal",
+          "datatype": "http://www.w3.org/2001/XMLSchema#date",
+          "value": "1886-10-28"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Statue_of_Liberty",
+          "surface form": "Statue of Liberty"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/numberBuilt",
+          "surface form": "built"
+        }
+      ]
+    },
+    {
+      "id": "92",
+      "question": [
+        {
+          "language": "en",
+          "string": "How many children did Benjamin Franklin have?"
+        }
+      ],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT (COUNT(DISTINCT ?uri) AS ?c) WHERE { res:Benjamin_Franklin dbo:child ?uri }"
+      },
+      "answers": {
+        "c": {
+          "type": "typed-literal",
+          "datatype": "http://www.w3.org/2001/XMLSchema#integer",
+          "value": "3"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Benjamin_Franklin",
+          "surface form": "Benjamin Franklin"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/property/children",
+          "surface form": "children"
+        }
+      ]
+    },
+    {
+      "id": "93",
+      "question": [
+        { "language": "en", "string": "When did Michael Jackson die?" }
+      ],
+      "query": {
+        "sparql": "SELECT DISTINCT ?date WHERE { <http://dbpedia.org/resource/Michael_Jackson> <http://dbpedia.org/ontology/deathDate> ?date }"
+      },
+      "answers": {
+        "date": {
+          "type": "typed-literal",
+          "datatype": "http://www.w3.org/2001/XMLSchema#date",
+          "value": "2009-06-25"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Michael_Jackson",
+          "surface form": "Michael Jackson"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/deathDate",
+          "surface form": "die"
+        }
+      ]
+    },
+    {
+      "id": "94",
+      "question": [
+        {
+          "language": "en",
+          "string": "List the children of Margaret Thatcher."
+        }
+      ],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Margaret_Thatcher dbo:child ?uri }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Mark_Thatcher"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Margaret_Thatcher",
+          "surface form": "Margaret Thatcher"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/child",
+          "surface form": "children"
+        }
+      ]
+    },
+    {
+      "id": "95",
+      "question": [{ "language": "en", "string": "Who was called Scarface?" }],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> SELECT ?uri WHERE { ?uri dbo:alias ?alias FILTER contains(lcase(?alias), \"scarface\") }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/%22Scarface%22_John_Williams"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Scarface",
+          "surface form": "Scarface"
+        }
+      ],
+      "relations": [
+        { "URI": "http://dbpedia.org/ontology/alias", "surface form": "called" }
+      ]
+    },
+    {
+      "id": "96",
+      "question": [
+        {
+          "language": "en",
+          "string": "Give me all books by William Goldman with more than 300 pages."
+        }
+      ],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Book ; dbo:author res:William_Goldman ; dbo:numberOfPages ?x FILTER ( ?x > 300 ) }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Boys_and_Girls_Together"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/William_Goldman",
+          "surface form": "William Goldman"
+        },
+        { "URI": "http://dbpedia.org/resource/300", "surface form": "300" }
+      ],
+      "relations": [
+        { "URI": "http://dbpedia.org/ontology/volume", "surface form": "books" }
+      ]
+    },
+    {
+      "id": "97",
+      "question": [
+        {
+          "language": "en",
+          "string": "Which books by Kerouac were published by Viking Press?"
+        }
+      ],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Book ; dbo:publisher res:Viking_Press ; dbo:author res:Jack_Kerouac }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Atop_an_Underwood"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Jack_Kerouac",
+          "surface form": "Kerouac"
+        },
+        {
+          "URI": "http://dbpedia.org/resource/Viking_Press",
+          "surface form": "Viking Press"
+        }
+      ],
+      "relations": [
+        { "URI": "http://dbpedia.org/ontology/title", "surface form": "books" },
+        {
+          "URI": "http://dbpedia.org/ontology/publisher",
+          "surface form": "published"
+        }
+      ]
+    },
+    {
+      "id": "98",
+      "question": [
+        { "language": "en", "string": "Who created the comic Captain America?" }
+      ],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Captain_America dbo:creator ?uri }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Jack_Kirby"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Captain_Comic",
+          "surface form": "comic Captain America"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/creator",
+          "surface form": "created"
+        }
+      ]
+    },
+    {
+      "id": "99",
+      "question": [
+        {
+          "language": "en",
+          "string": "How many people live in the capital of Australia?"
+        }
+      ],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?num WHERE { res:Australia dbo:capital ?x . ?x dbo:populationTotal ?num }"
+      },
+      "answers": {
+        "num": {
+          "type": "typed-literal",
+          "datatype": "http://www.w3.org/2001/XMLSchema#nonNegativeInteger",
+          "value": "453558"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Australia",
+          "surface form": "Australia"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/populationTotal",
+          "surface form": "live"
+        },
+        {
+          "URI": "http://dbpedia.org/ontology/capital",
+          "surface form": "capital"
+        }
+      ]
+    },
+    {
+      "id": "100",
+      "question": [
+        { "language": "en", "string": "What is the largest city in Australia?" }
+      ],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Australia dbo:largestCity ?uri }"
+      },
+      "answers": {
+        "uri": { "type": "uri", "value": "http://dbpedia.org/resource/Sydney" }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Australia",
+          "surface form": "Australia"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/largestCity",
+          "surface form": "largest city"
+        }
+      ]
+    },
+    {
+      "id": "101",
+      "question": [
+        {
+          "language": "en",
+          "string": "Which films starring Clint Eastwood did he direct himself?"
+        }
+      ],
+      "query": {
+        "sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/director> <http://dbpedia.org/resource/Clint_Eastwood> ; <http://dbpedia.org/ontology/starring> <http://dbpedia.org/resource/Clint_Eastwood> }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Dirty_Harry_(film_series)"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Clint_Eastwood",
+          "surface form": "Clint Eastwood"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/numberOfFilms",
+          "surface form": "films"
+        },
+        {
+          "URI": "http://dbpedia.org/ontology/starring",
+          "surface form": "starring"
+        },
+        {
+          "URI": "http://dbpedia.org/ontology/director",
+          "surface form": "direct"
+        }
+      ]
+    },
+    {
+      "id": "102",
+      "question": [
+        {
+          "language": "en",
+          "string": "Where is the residence of the prime minister of Spain?"
+        }
+      ],
+      "query": {
+        "sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Prime_Minister_of_Spain> <http://dbpedia.org/property/residence> ?uri }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Palacio_de_la_Moncloa"
+        }
+      },
+      "entities": [
+        { "URI": "http://dbpedia.org/resource/Spain", "surface form": "Spain" }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/residence",
+          "surface form": "residence"
+        },
+        {
+          "URI": "http://dbpedia.org/ontology/primeMinister",
+          "surface form": "prime minister"
+        }
+      ]
+    },
+    {
+      "id": "103",
+      "question": [
+        {
+          "language": "en",
+          "string": "Show me all songs from Bruce Springsteen released between 1980 and 1990."
+        }
+      ],
+      "query": {
+        "sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Song> . ?uri <http://dbpedia.org/ontology/artist> <http://dbpedia.org/resource/Bruce_Springsteen> . ?uri <http://dbpedia.org/ontology/releaseDate> ?date . FILTER (?date >= '1980-01-01'^^xsd:date && ?date <= '1990-12-31'^^xsd:date) }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Johnny_99_(song)"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Bruce_Springsteen",
+          "surface form": "Bruce Springsteen"
+        },
+        { "URI": "http://dbpedia.org/resource/1980", "surface form": "1980" },
+        { "URI": "http://dbpedia.org/resource/1990", "surface form": "1990" }
+      ],
+      "relations": [
+        { "URI": "http://dbpedia.org/ontology/show", "surface form": "show" },
+        {
+          "URI": "http://dbpedia.org/ontology/anthem",
+          "surface form": "songs"
+        },
+        {
+          "URI": "http://dbpedia.org/property/released",
+          "surface form": "released"
+        }
+      ]
+    },
+    {
+      "id": "104",
+      "question": [
+        {
+          "language": "en",
+          "string": "Who wrote the lyrics for the Polish national anthem?"
+        }
+      ],
+      "query": {
+        "sparql": "SELECT DISTINCT ?uri WHERE {  <http://dbpedia.org/resource/Poland> <http://dbpedia.org/ontology/anthem> ?x .  ?x <http://dbpedia.org/property/author> ?uri . } "
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/J\u00f3zef_Wybicki"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Poland",
+          "surface form": "Polish national anthem"
+        },
+        {
+          "URI": "http://dbpedia.org/resource/Afghan_National_Anthem",
+          "surface form": "Polish national anthem"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/property/author",
+          "surface form": "wrote"
+        },
+        {
+          "URI": "http://dbpedia.org/ontology/lyrics",
+          "surface form": "lyrics"
+        },
+        { "URI": "http://dbpedia.org/ontology/country", "surface form": "" }
+      ]
+    },
+    {
+      "id": "105",
+      "question": [
+        {
+          "language": "en",
+          "string": "Who painted The Storm on the Sea of Galilee?"
+        }
+      ],
+      "query": {
+        "sparql": "PREFIX res: <http://dbpedia.org/resource/> PREFIX dbp: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:The_Storm_on_the_Sea_of_Galilee dbo:author ?uri }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Rembrandt"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/The_Storm_on_the_Sea_of_Galilee",
+          "surface form": "The Storm on the Sea of Galilee"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/property/artist",
+          "surface form": "painted"
+        }
+      ]
+    },
+    {
+      "id": "106",
+      "question": [
+        {
+          "language": "en",
+          "string": "For which label did Elvis record his first album?"
+        }
+      ],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?x rdf:type dbo:Album ; dbo:artist res:Elvis_Presley ; dbo:releaseDate ?y ; dbo:recordLabel ?uri } ORDER BY ASC(?y) OFFSET 0 LIMIT 1"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/RCA_Records"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Elvis_(1973_album)",
+          "surface form": "Elvis"
+        }
+      ],
+      "relations": [
+        { "URI": "http://dbpedia.org/property/label", "surface form": "label" },
+        {
+          "URI": "http://dbpedia.org/ontology/recordLabel",
+          "surface form": "record"
+        },
+        { "URI": "http://dbpedia.org/ontology/album", "surface form": "album" }
+      ]
+    },
+    {
+      "id": "107",
+      "question": [
+        {
+          "language": "en",
+          "string": "Give me the birthdays of all actors of the television show Charmed."
+        }
+      ],
+      "query": {
+        "sparql": "SELECT DISTINCT ?date WHERE { <http://dbpedia.org/resource/Charmed> <http://dbpedia.org/ontology/starring> ?actor . ?actor <http://dbpedia.org/ontology/birthDate> ?date }"
+      },
+      "answers": {
+        "date": {
+          "type": "typed-literal",
+          "datatype": "http://www.w3.org/2001/XMLSchema#date",
+          "value": "1972-12-19"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Charmed",
+          "surface form": "television show Charmed"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/birthDate",
+          "surface form": "birthdays"
+        },
+        {
+          "URI": "http://dbpedia.org/ontology/background",
+          "surface form": "actors"
+        }
+      ]
+    },
+    {
+      "id": "108",
+      "question": [
+        {
+          "language": "en",
+          "string": "Which countries have places with more than two caves?"
+        }
+      ],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?cave rdf:type dbo:Cave ; dbo:location ?uri . ?uri rdf:type dbo:Country } GROUP BY ?uri HAVING ( COUNT(?cave) > 2 )"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Georgia_(country)"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Countries_of_the_United_Kingdom",
+          "surface form": "countries"
+        },
+        {
+          "URI": "http://dbpedia.org/resource/Caves_of_Aggtelek_Karst_and_Slovak_Karst",
+          "surface form": "caves"
+        }
+      ],
+      "relations": [
+        { "URI": "http://dbpedia.org/ontology/place", "surface form": "places" }
+      ]
+    },
+    {
+      "id": "109",
+      "question": [
+        {
+          "language": "en",
+          "string": "Give me the capitals of all countries in Africa."
+        }
+      ],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbc: <http://dbpedia.org/resource/Category:> PREFIX dct: <http://purl.org/dc/terms/> SELECT DISTINCT ?uri WHERE { ?country dct:subject dbc:Countries_in_Africa ; dbo:capital ?uri }"
+      },
+      "answers": {
+        "uri": { "type": "uri", "value": "http://dbpedia.org/resource/Buea" }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Countries_of_the_United_Kingdom",
+          "surface form": "countries"
+        },
+        {
+          "URI": "http://dbpedia.org/resource/Africa",
+          "surface form": "Africa"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/principal",
+          "surface form": "capitals"
+        }
+      ]
+    },
+    {
+      "id": "110",
+      "question": [
+        { "language": "en", "string": "How many employees does IBM have?" }
+      ],
+      "query": {
+        "sparql": "SELECT DISTINCT ?number WHERE { <http://dbpedia.org/resource/IBM> <http://dbpedia.org/ontology/numberOfEmployees> ?number }"
+      },
+      "answers": {
+        "number": {
+          "type": "typed-literal",
+          "datatype": "http://www.w3.org/2001/XMLSchema#nonNegativeInteger",
+          "value": "282100"
+        }
+      },
+      "entities": [
+        { "URI": "http://dbpedia.org/resource/IBM", "surface form": "IBM" }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/numberOfEmployees",
+          "surface form": "employees"
+        }
+      ]
+    },
+    {
+      "id": "111",
+      "question": [
+        { "language": "en", "string": "Which states border Illinois?" }
+      ],
+      "query": {
+        "sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Illinois> <http://dbpedia.org/property/borderingstates> ?uri }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Kentucky"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Illinois",
+          "surface form": "Illinois"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/border",
+          "surface form": "border"
+        }
+      ]
+    },
+    {
+      "id": "112",
+      "question": [
+        {
+          "language": "en",
+          "string": "Which European countries have a constitutional monarchy?"
+        }
+      ],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dct: <http://purl.org/dc/terms/> PREFIX dbc: <http://dbpedia.org/resource/Category:> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?uri WHERE { ?uri dct:subject dbc:Countries_in_Europe ; dbo:governmentType dbr:Constitutional_monarchy }"
+      },
+      "answers": {
+        "uri": { "type": "uri", "value": "http://dbpedia.org/resource/Andorra" }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Europe",
+          "surface form": "European countries"
+        },
+        {
+          "URI": "http://dbpedia.org/resource/List_of_fictional_European_countries",
+          "surface form": "European countries"
+        },
+        {
+          "URI": "http://dbpedia.org/resource/Constitutional_monarchy",
+          "surface form": "constitutional monarchy"
+        }
+      ],
+      "relations": [
+        { "URI": "http://dbpedia.org/ontology/country", "surface form": "" }
+      ]
+    },
+    {
+      "id": "113",
+      "question": [
+        {
+          "language": "en",
+          "string": "What is the highest mountain in Australia?"
+        }
+      ],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Mountain ; dbo:locatedInArea res:Australia ; dbo:elevation ?elevation } ORDER BY DESC(?elevation) LIMIT 1"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Mawson_Peak"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Australia",
+          "surface form": "Australia"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/property/elevation",
+          "surface form": "highest mountain"
+        }
+      ]
+    },
+    {
+      "id": "114",
+      "question": [
+        {
+          "language": "en",
+          "string": "Give me all companies in the advertising industry."
+        }
+      ],
+      "query": {
+        "sparql": "SELECT (COUNT(DISTINCT ?uri) AS ?c) WHERE { ?uri a <http://dbpedia.org/ontology/Company> { ?uri <http://dbpedia.org/ontology/industry> <http://dbpedia.org/resource/Advertising> } UNION { ?uri <http://dbpedia.org/ontology/industry> ?industry FILTER regex(?industry, \"advertising\", \"i\") } }"
+      },
+      "answers": {
+        "c": {
+          "type": "typed-literal",
+          "datatype": "http://www.w3.org/2001/XMLSchema#integer",
+          "value": "361"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Companies_listed_on_the_New_York_Stock_Exchange_(J)",
+          "surface form": "companies"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/property/industry",
+          "surface form": "advertising industry"
+        }
+      ]
+    },
+    {
+      "id": "115",
+      "question": [
+        {
+          "language": "en",
+          "string": "Who was the wife of U.S. president Lincoln?"
+        }
+      ],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Abraham_Lincoln dbo:spouse ?uri }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Mary_Todd_Lincoln"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Abraham_Lincoln",
+          "surface form": "Lincoln"
+        }
+      ],
+      "relations": [
+        { "URI": "http://dbpedia.org/ontology/spouse", "surface form": "wife" }
+      ]
+    },
+    {
+      "id": "116",
+      "question": [
+        {
+          "language": "en",
+          "string": "Give me all video games published by Mean Hamster Software."
+        }
+      ],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:VideoGame ; dbo:publisher res:Mean_Hamster_Software }"
+      },
+      "answers": {
+        "uri": { "type": "uri", "value": "http://dbpedia.org/resource/Riven" }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Mean_Hamster_Software",
+          "surface form": "Mean Hamster Software"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/film",
+          "surface form": "video games"
+        },
+        {
+          "URI": "http://dbpedia.org/ontology/publisher",
+          "surface form": "published"
+        }
+      ]
+    },
+    {
+      "id": "117",
+      "question": [
+        { "language": "en", "string": "Which languages are spoken in Estonia?" }
+      ],
+      "query": {
+        "sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/spokenIn> <http://dbpedia.org/resource/Estonia> }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/V\u00f5ro_language"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Estonia",
+          "surface form": "Estonia"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/language",
+          "surface form": "languages"
+        },
+        {
+          "URI": "http://dbpedia.org/ontology/spokenIn",
+          "surface form": "spoken"
+        }
+      ]
+    },
+    {
+      "id": "118",
+      "question": [
+        { "language": "en", "string": "How many films did Hal Roach produce?" }
+      ],
+      "query": {
+        "sparql": "SELECT (COUNT(DISTINCT ?uri) AS ?c) WHERE { ?uri <http://dbpedia.org/ontology/producer> <http://dbpedia.org/resource/Hal_Roach> }"
+      },
+      "answers": {
+        "c": {
+          "type": "typed-literal",
+          "datatype": "http://www.w3.org/2001/XMLSchema#integer",
+          "value": "539"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Hal_Roach",
+          "surface form": "Hal Roach"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/numberOfFilms",
+          "surface form": "films"
+        },
+        {
+          "URI": "http://dbpedia.org/ontology/producer",
+          "surface form": "produce"
+        }
+      ]
+    },
+    {
+      "id": "119",
+      "question": [
+        {
+          "language": "en",
+          "string": "Give me all books written by Danielle Steel."
+        }
+      ],
+      "query": {
+        "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Book> ; <http://dbpedia.org/ontology/author> <http://dbpedia.org/resource/Danielle_Steel> }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Amazing_Grace_(novel)"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Danielle_Steel",
+          "surface form": "Danielle Steel"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/volume",
+          "surface form": "books"
+        },
+        {
+          "URI": "http://dbpedia.org/ontology/writer",
+          "surface form": "written"
+        }
+      ]
+    },
+    {
+      "id": "120",
+      "question": [
+        {
+          "language": "en",
+          "string": "Which airports are located in California, USA?"
+        }
+      ],
+      "query": {
+        "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Airport> { ?uri <http://dbpedia.org/ontology/location> <http://dbpedia.org/resource/California> } UNION { ?uri <http://dbpedia.org/ontology/city> <http://dbpedia.org/resource/California> } UNION { ?uri <http://dbpedia.org/ontology/city> ?city . ?city <http://dbpedia.org/ontology/isPartOf> <http://dbpedia.org/resource/California> } UNION { ?uri <http://dbpedia.org/ontology/operator> <http://dbpedia.org/resource/California> } }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Amboy_Airfield"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/United_States",
+          "surface form": "USA"
+        },
+        {
+          "URI": "http://dbpedia.org/resource/California,_Cincinnati",
+          "surface form": "California,"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/targetAirport",
+          "surface form": "airports"
+        },
+        {
+          "URI": "http://dbpedia.org/ontology/place",
+          "surface form": "located"
+        }
+      ]
+    },
+    {
+      "id": "121",
+      "question": [
+        {
+          "language": "en",
+          "string": "Give me all Canadian Grunge record labels."
+        }
+      ],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:RecordLabel ; dbo:genre res:Grunge ; dbo:country res:Canada }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Murderecords"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Canada",
+          "surface form": "Canadian Grunge record labels"
+        },
+        {
+          "URI": "http://dbpedia.org/resource/Canadian_independent_record_labels",
+          "surface form": "Canadian Grunge record labels"
+        }
+      ],
+      "relations": [
+        { "URI": "http://dbpedia.org/ontology/country", "surface form": "" }
+      ]
+    },
+    {
+      "id": "122",
+      "question": [
+        { "language": "en", "string": "Give me all movies with Tom Cruise." }
+      ],
+      "query": {
+        "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Film> ; <http://dbpedia.org/ontology/starring> <http://dbpedia.org/resource/Tom_Cruise> }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/All_the_Right_Moves_(film)"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Tom_Cruise",
+          "surface form": "Tom Cruise"
+        }
+      ],
+      "relations": [
+        { "URI": "http://dbpedia.org/ontology/film", "surface form": "movies" }
+      ]
+    },
+    {
+      "id": "123",
+      "question": [
+        { "language": "en", "string": "Give me all female German chancellors." }
+      ],
+      "query": {
+        "sparql": "PREFIX res: <http://dbpedia.org/resource/> PREFIX dbp: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Chancellor_of_Germany dbp:incumbent ?uri }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Olaf_Scholz"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/List_of_German_female_artists",
+          "surface form": "female German chancellors"
+        }
+      ],
+      "relations": []
+    },
+    {
+      "id": "124",
+      "question": [
+        { "language": "en", "string": "Who is the governor of Wyoming?" }
+      ],
+      "query": {
+        "sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Wyoming> <http://dbpedia.org/property/governor> ?uri }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Mark_Gordon"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Wyoming",
+          "surface form": "Wyoming"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/governor",
+          "surface form": "governor"
+        }
+      ]
+    },
+    {
+      "id": "125",
+      "question": [{ "language": "en", "string": "Who developed Minecraft?" }],
+      "query": {
+        "sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Minecraft> <http://dbpedia.org/ontology/developer> ?uri }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Mojang_Studios"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Minecraft",
+          "surface form": "Minecraft"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/developer",
+          "surface form": "developed"
+        }
+      ]
+    },
+    {
+      "id": "126",
+      "question": [{ "language": "en", "string": "List all games by GMT." }],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { ?uri dbo:publisher res:GMT_Games }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Fields_of_Fire_(game)"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Generic_Mapping_Tools",
+          "surface form": "GMT"
+        }
+      ],
+      "relations": [
+        { "URI": "http://dbpedia.org/ontology/games", "surface form": "games" }
+      ]
+    },
+    {
+      "id": "127",
+      "question": [
+        {
+          "language": "en",
+          "string": "In which U.S. state is Fort Knox located?"
+        }
+      ],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX dbp: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Fort_Knox dbo:location ?uri . ?uri dbo:country res:United_States }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Kentucky"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/United_States",
+          "surface form": "U.S."
+        },
+        {
+          "URI": "http://dbpedia.org/resource/Fort_Knox",
+          "surface form": "Fort Knox"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/property/location",
+          "surface form": "located"
+        },
+        {
+          "URI": "http://dbpedia.org/ontology/country",
+          "surface form": "state"
+        }
+      ]
+    },
+    {
+      "id": "128",
+      "question": [
+        { "language": "en", "string": "In which city did John F. Kennedy die?" }
+      ],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { res:John_F._Kennedy dbo:deathPlace ?uri . ?uri rdf:type dbo:City }"
+      },
+      "answers": {
+        "uri": { "type": "uri", "value": "http://dbpedia.org/resource/Dallas" }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/John_F._Kennedy",
+          "surface form": "John F. Kennedy"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/deathPlace",
+          "surface form": "die"
+        }
+      ]
+    },
+    {
+      "id": "129",
+      "question": [
+        {
+          "language": "en",
+          "string": "Give me all actors starring in Last Action Hero."
+        }
+      ],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Last_Action_Hero dbo:starring ?uri }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Art_Carney"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Last_Action_Hero",
+          "surface form": "Last Action Hero"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/starring",
+          "surface form": "starring"
+        }
+      ]
+    },
+    {
+      "id": "130",
+      "question": [
+        {
+          "language": "en",
+          "string": "Who wrote the book Les Piliers de la terre?"
+        }
+      ],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:The_Pillars_of_the_Earth dbo:author ?uri }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Ken_Follett"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/La_Terre",
+          "surface form": "book Les Piliers de la terre"
+        }
+      ],
+      "relations": [
+        { "URI": "http://dbpedia.org/ontology/author", "surface form": "wrote" }
+      ]
+    },
+    {
+      "id": "131",
+      "question": [{ "language": "en", "string": "Give me all taikonauts." }],
+      "query": {
+        "sparql": "SELECT DISTINCT ?uri WHERE { { ?uri a <http://dbpedia.org/ontology/Astronaut> ; <http://dbpedia.org/ontology/nationality> <http://dbpedia.org/resource/People's_Republic_of_China> } UNION { ?uri a <http://dbpedia.org/ontology/Astronaut> ; <http://dbpedia.org/ontology/nationality> <http://dbpedia.org/resource/China> } }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Tang_Hongbo"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Astronaut",
+          "surface form": "Taikonauts"
+        }
+      ],
+      "relations": []
+    },
+    {
+      "id": "132",
+      "question": [
+        {
+          "language": "en",
+          "string": "How many languages are spoken in Colombia?"
+        }
+      ],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT (COUNT(DISTINCT ?uri) AS ?c) WHERE { ?uri rdf:type dbo:Language . res:Colombia dbo:language ?uri }"
+      },
+      "answers": {
+        "c": {
+          "type": "typed-literal",
+          "datatype": "http://www.w3.org/2001/XMLSchema#integer",
+          "value": "0"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Colombia",
+          "surface form": "Colombia"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/language",
+          "surface form": "languages"
+        },
+        {
+          "URI": "http://dbpedia.org/ontology/spokenIn",
+          "surface form": "spoken"
+        }
+      ]
+    },
+    {
+      "id": "133",
+      "question": [
+        { "language": "en", "string": "Which poet wrote the most books?" }
+      ],
+      "query": {
+        "sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/occupation> <http://dbpedia.org/resource/Poet> . ?x <http://dbpedia.org/ontology/author> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Book> . } ORDER BY DESC(COUNT(?x)) OFFSET 0 LIMIT 1"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Jules_Verne"
+        }
+      },
+      "entities": [],
+      "relations": [
+        { "URI": "http://dbpedia.org/ontology/author", "surface form": "poet" },
+        {
+          "URI": "http://dbpedia.org/ontology/composer",
+          "surface form": "wrote"
+        },
+        { "URI": "http://dbpedia.org/ontology/volume", "surface form": "books" }
+      ]
+    },
+    {
+      "id": "134",
+      "question": [
+        {
+          "language": "en",
+          "string": "How many programming languages are there?"
+        }
+      ],
+      "query": {
+        "sparql": "SELECT (COUNT(DISTINCT ?uri) AS ?c) WHERE { ?uri a <http://dbpedia.org/ontology/ProgrammingLanguage> }"
+      },
+      "answers": {
+        "c": {
+          "type": "typed-literal",
+          "datatype": "http://www.w3.org/2001/XMLSchema#integer",
+          "value": "3328"
+        }
+      },
+      "entities": [],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/programmingLanguage",
+          "surface form": "programming languages"
+        }
+      ]
+    },
+    {
+      "id": "135",
+      "question": [
+        { "language": "en", "string": "Give me all Dutch parties." }
+      ],
+      "query": {
+        "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/PoliticalParty> ; <http://dbpedia.org/ontology/country> <http://dbpedia.org/resource/Netherlands> }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Democratic_Political_Turning_Point"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Cura\u00e7ao",
+          "surface form": "Dutch parties"
+        },
+        {
+          "URI": "http://dbpedia.org/resource/Dutch",
+          "surface form": "Dutch parties"
+        }
+      ],
+      "relations": [
+        { "URI": "http://dbpedia.org/ontology/country", "surface form": "" },
+        { "URI": "http://dbpedia.org/ontology/country", "surface form": "" }
+      ]
+    },
+    {
+      "id": "136",
+      "question": [
+        { "language": "en", "string": "When was Carlo Giuliani shot?" }
+      ],
+      "query": {
+        "sparql": "PREFIX res: <http://dbpedia.org/resource/> PREFIX dbp: <http://dbpedia.org/property/> SELECT DISTINCT xsd:date(?date) WHERE { res:Death_of_Carlo_Giuliani dbo:deathDate ?date }"
+      },
+      "answers": {
+        "callret-0": {
+          "type": "typed-literal",
+          "datatype": "http://www.w3.org/2001/XMLSchema#date",
+          "value": "2001-07-20"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Carlo_Giuliani,_Boy",
+          "surface form": "Carlo Giuliani"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/discharge",
+          "surface form": "shot"
+        }
+      ]
+    },
+    {
+      "id": "137",
+      "question": [
+        { "language": "en", "string": "Which rivers flow into a German lake?" }
+      ],
+      "query": {
+        "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/River> . ?x <http://dbpedia.org/ontology/inflow> ?uri ; a <http://dbpedia.org/ontology/Lake> ; <http://dbpedia.org/ontology/country> <http://dbpedia.org/resource/Germany> }"
+      },
+      "answers": {
+        "uri": { "type": "uri", "value": "http://dbpedia.org/resource/Alster" }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Germany",
+          "surface form": "German lake"
+        },
+        {
+          "URI": "http://dbpedia.org/resource/German_Lake",
+          "surface form": "German lake"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/operator",
+          "surface form": "rivers"
+        },
+        { "URI": "http://dbpedia.org/property/float", "surface form": "flow" },
+        { "URI": "http://dbpedia.org/ontology/country", "surface form": "" }
+      ]
+    },
+    {
+      "id": "138",
+      "question": [
+        { "language": "en", "string": "Who is the youngest Darts player?" }
+      ],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:DartsPlayer ; dbo:birthDate ?date } ORDER BY DESC(?date) OFFSET 0 LIMIT 1"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Aurora_Fochesato"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Andrew_Gilding",
+          "surface form": "Darts player"
+        }
+      ],
+      "relations": []
+    },
+    {
+      "id": "139",
+      "question": [
+        { "language": "en", "string": "Give me all animals that are extinct." }
+      ],
+      "query": {
+        "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Animal> ; <http://dbpedia.org/ontology/conservationStatus> \"EX\" }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Advena_campbelli"
+        }
+      },
+      "entities": [],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/animal",
+          "surface form": "animals"
+        },
+        {
+          "URI": "http://dbpedia.org/ontology/quote",
+          "surface form": "extinct"
+        }
+      ]
+    },
+    {
+      "id": "140",
+      "question": [
+        {
+          "language": "en",
+          "string": "How many pages does War and Peace have?"
+        }
+      ],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?n WHERE { res:War_and_Peace dbo:numberOfPages ?n }"
+      },
+      "answers": {
+        "n": {
+          "type": "typed-literal",
+          "datatype": "http://www.w3.org/2001/XMLSchema#positiveInteger",
+          "value": "1225"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/War_and_Peace",
+          "surface form": "War and Peace"
+        }
+      ],
+      "relations": []
+    },
+    {
+      "id": "141",
+      "question": [
+        {
+          "language": "en",
+          "string": "Which ingredients do I need for carrot cake?"
+        }
+      ],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Carrot_cake dbo:ingredient ?uri }"
+      },
+      "answers": {
+        "uri": { "type": "uri", "value": "http://dbpedia.org/resource/Carrot" }
+      },
+      "entities": [
+        { "URI": "http://dbpedia.org/resource/I", "surface form": "I" },
+        {
+          "URI": "http://dbpedia.org/resource/Carrot_cake",
+          "surface form": "carrot cake"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/ingredient",
+          "surface form": "ingredients"
+        }
+      ]
+    },
+    {
+      "id": "142",
+      "question": [
+        { "language": "en", "string": "What is the most frequent death cause?" }
+      ],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/>SELECT DISTINCT ?xWHERE {        ?uri dbo:deathCause ?x . }ORDER BY DESC(COUNT(DISTINCT ?uri)) OFFSET 0 LIMIT 1"
+      },
+      "answers": {},
+      "entities": [],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/fate",
+          "surface form": "frequent death"
+        }
+      ]
+    },
+    {
+      "id": "143",
+      "question": [
+        { "language": "en", "string": "Who has Tom Cruise been married to?" }
+      ],
+      "query": {
+        "sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/spouse> <http://dbpedia.org/resource/Tom_Cruise> }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Katie_Holmes"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Tom_Cruise",
+          "surface form": "Tom Cruise"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/spouse",
+          "surface form": "married"
+        }
+      ]
+    },
+    {
+      "id": "144",
+      "question": [
+        {
+          "language": "en",
+          "string": "What is the bridge with the longest span?"
+        }
+      ],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Bridge ; dbo:mainspan ?s } ORDER BY DESC(?s) OFFSET 0 LIMIT 1"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/C\u1ea7n_Gi\u1edd_Bridge"
+        }
+      },
+      "entities": [],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/discipline",
+          "surface form": "bridge"
+        },
+        {
+          "URI": "http://dbpedia.org/ontology/mainspan",
+          "surface form": "span"
+        }
+      ]
+    },
+    {
+      "id": "145",
+      "question": [
+        {
+          "language": "en",
+          "string": "Give me all films produced by Steven Spielberg with a budget of at least $80 million."
+        }
+      ],
+      "query": {
+        "sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film> . ?uri <http://dbpedia.org/ontology/director> <http://dbpedia.org/resource/Steven_Spielberg> . ?uri <http://dbpedia.org/ontology/budget> ?b . FILTER( xsd:double(?b) >= 8.0E7 ) }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/War_of_the_Worlds_(2005_film)"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Steven_Spielberg",
+          "surface form": "Steven Spielberg"
+        },
+        {
+          "URI": "http://dbpedia.org/resource/Boeing_80",
+          "surface form": "$80"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/production",
+          "surface form": "films"
+        },
+        {
+          "URI": "http://dbpedia.org/ontology/manufacturer",
+          "surface form": "produced"
+        },
+        {
+          "URI": "http://dbpedia.org/ontology/budget",
+          "surface form": "budget"
+        }
+      ]
+    },
+    {
+      "id": "146",
+      "question": [
+        {
+          "language": "en",
+          "string": "Which actor was casted in the most movies?"
+        }
+      ],
+      "query": {
+        "sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Actor> . ?f <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film> . ?f <http://dbpedia.org/ontology/starring> ?uri . } ORDER BY DESC(COUNT(DISTINCT(?f))) OFFSET 0 LIMIT 1"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Amitabh_Bachchan"
+        }
+      },
+      "entities": [],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/artist",
+          "surface form": "actor"
+        },
+        {
+          "URI": "http://dbpedia.org/ontology/class",
+          "surface form": "casted"
+        },
+        { "URI": "http://dbpedia.org/ontology/film", "surface form": "movies" }
+      ]
+    },
+    {
+      "id": "147",
+      "question": [{ "language": "en", "string": "Where was Bach born?" }],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Johann_Sebastian_Bach dbo:birthPlace ?uri }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Eisenach"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Johann_Sebastian_Bach",
+          "surface form": "Bach"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/birthPlace",
+          "surface form": "born"
+        }
+      ]
+    },
+    {
+      "id": "148",
+      "question": [
+        {
+          "language": "en",
+          "string": "Which of Tim Burton's films had the highest budget?"
+        }
+      ],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { ?uri dbo:director res:Tim_Burton ; dbo:budget ?b } ORDER BY ?b OFFSET 0 LIMIT 1"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Big_Eyes"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Tim_Burton",
+          "surface form": "Tim Burton"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/numberOfFilms",
+          "surface form": " films"
+        },
+        {
+          "URI": "http://dbpedia.org/ontology/elevation",
+          "surface form": "highest budget"
+        }
+      ]
+    },
+    {
+      "id": "149",
+      "question": [
+        {
+          "language": "en",
+          "string": "Who are the four youngest MVP basketball players?"
+        }
+      ],
+      "query": {
+        "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/BasketballPlayer> ; <http://dbpedia.org/ontology/birthDate> ?date ; <http://dbpedia.org/property/highlights> ?h FILTER regex(?h, \"MVP\") } ORDER BY DESC(?date) OFFSET 0 LIMIT 4"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Robert_Dillingham"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/NBA_Most_Valuable_Player_Award",
+          "surface form": "MVP"
+        },
+        {
+          "URI": "http://dbpedia.org/resource/National_Basketball_Players_Association",
+          "surface form": "basketball players"
+        }
+      ],
+      "relations": []
+    },
+    {
+      "id": "150",
+      "question": [
+        {
+          "language": "en",
+          "string": "What are the top-10 action role-playing video games according to IGN?"
+        }
+      ],
+      "query": {
+        "sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://purl.org/dc/terms/subject> <http://dbpedia.org/resource/Category:Action_role-playing_video_games> ; <http://dbpedia.org/property/ign> ?score } ORDER BY DESC(?score) LIMIT 10"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Battleheart_Legacy"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Action_role-playing_games",
+          "surface form": "top-10 action role-playing video games"
+        },
+        { "URI": "http://dbpedia.org/resource/IGN", "surface form": "IGN" }
+      ],
+      "relations": []
+    },
+    {
+      "id": "151",
+      "question": [
+        {
+          "language": "en",
+          "string": "Give me all actors who were born in Berlin."
+        }
+      ],
+      "query": {
+        "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Actor> ; <http://dbpedia.org/ontology/birthPlace> <http://dbpedia.org/resource/Berlin> }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Walter_Bluhm"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Berlin",
+          "surface form": "Berlin"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/award",
+          "surface form": "actors"
+        },
+        {
+          "URI": "http://dbpedia.org/ontology/birthPlace",
+          "surface form": "born"
+        }
+      ]
+    },
+    {
+      "id": "152",
+      "question": [
+        {
+          "language": "en",
+          "string": "Give me all actors who were born in Paris after 1950."
+        }
+      ],
+      "query": {
+        "sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Actor> . ?uri <http://dbpedia.org/ontology/birthPlace> <http://dbpedia.org/resource/Paris> . ?uri <http://dbpedia.org/ontology/birthDate> ?date . FILTER ( ?date >= xsd:dateTime('1950-12-31T00:00:00Z')) }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Fran\u00e7ois_Hadji-Lazaro"
+        }
+      },
+      "entities": [
+        { "URI": "http://dbpedia.org/resource/Paris", "surface form": "Paris" },
+        { "URI": "http://dbpedia.org/resource/1950", "surface form": "1950" }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/artist",
+          "surface form": "actors"
+        },
+        {
+          "URI": "http://dbpedia.org/ontology/birthPlace",
+          "surface form": "born"
+        }
+      ]
+    },
+    {
+      "id": "153",
+      "question": [
+        {
+          "language": "en",
+          "string": "What was Brazil's lowest rank in the FIFA World Ranking?"
+        }
+      ],
+      "query": {
+        "sparql": "SELECT DISTINCT ?n WHERE { <http://dbpedia.org/resource/Brazil_national_football_team> <http://dbpedia.org/property/fifaMin> ?n }"
+      },
+      "answers": {
+        "n": {
+          "type": "typed-literal",
+          "datatype": "http://www.w3.org/2001/XMLSchema#integer",
+          "value": "22"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Brazil",
+          "surface form": "Brazil"
+        },
+        {
+          "URI": "http://dbpedia.org/resource/RANK",
+          "surface form": " lowest rank"
+        },
+        { "URI": "http://dbpedia.org/resource/FIFA", "surface form": "FIFA" },
+        {
+          "URI": "http://dbpedia.org/resource/WBSC_World_Rankings",
+          "surface form": "World Ranking"
+        }
+      ],
+      "relations": []
+    },
+    {
+      "id": "154",
+      "question": [
+        {
+          "language": "en",
+          "string": "Give me all Australian metalcore bands."
+        }
+      ],
+      "query": {
+        "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Band> ; <http://dbpedia.org/ontology/genre> <http://dbpedia.org/resource/Metalcore> { ?uri <http://dbpedia.org/ontology/hometown> <http://dbpedia.org/resource/Australia> } UNION { ?uri <http://dbpedia.org/ontology/hometown> ?h . ?h <http://dbpedia.org/ontology/country> <http://dbpedia.org/resource/Australia> } }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Dream_On,_Dreamer"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Australia",
+          "surface form": "Australian metalcore bands"
+        },
+        {
+          "URI": "http://dbpedia.org/resource/List_of_metalcore_bands",
+          "surface form": "Australian metalcore bands"
+        }
+      ],
+      "relations": [
+        { "URI": "http://dbpedia.org/ontology/country", "surface form": "" }
+      ]
+    },
+    {
+      "id": "155",
+      "question": [{ "language": "en", "string": "When is Halloween?" }],
+      "query": {
+        "sparql": "SELECT DISTINCT ?date WHERE {  <http://dbpedia.org/resource/Halloween> <http://dbpedia.org/property/date> ?date . } "
+      },
+      "answers": {
+        "date": {
+          "type": "typed-literal",
+          "datatype": "http://www.w3.org/2001/XMLSchema#gMonthDay",
+          "value": "--10-31"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Halloween",
+          "surface form": "Halloween"
+        }
+      ],
+      "relations": [
+        { "URI": "http://dbpedia.org/property/date", "surface form": "when" }
+      ]
+    },
+    {
+      "id": "156",
+      "question": [
+        {
+          "language": "en",
+          "string": "How many inhabitants does the largest city in Canada have?"
+        }
+      ],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?num WHERE { res:Canada dbo:largestCity ?city . ?city dbo:populationTotal ?num }"
+      },
+      "answers": {
+        "num": {
+          "type": "typed-literal",
+          "datatype": "http://www.w3.org/2001/XMLSchema#nonNegativeInteger",
+          "value": "2794356"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Canada",
+          "surface form": "Canada"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/property/country",
+          "surface form": "inhabitants"
+        },
+        {
+          "URI": "http://dbpedia.org/ontology/largestCity",
+          "surface form": "largest city"
+        }
+      ]
+    },
+    {
+      "id": "157",
+      "question": [
+        {
+          "language": "en",
+          "string": "In which countries can you pay using the West African CFA franc?"
+        }
+      ],
+      "query": {
+        "sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/currency> <http://dbpedia.org/resource/West_African_CFA_franc> }"
+      },
+      "answers": {
+        "uri": { "type": "uri", "value": "http://dbpedia.org/resource/Benin" }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Countries_of_the_United_Kingdom",
+          "surface form": "countries"
+        },
+        { "URI": "http://dbpedia.org/resource/CFA", "surface form": "CFA" },
+        {
+          "URI": "http://dbpedia.org/resource/West_African_CFA_franc",
+          "surface form": "West African  franc"
+        }
+      ],
+      "relations": [
+        { "URI": "http://dbpedia.org/ontology/currency", "surface form": "pay" }
+      ]
+    },
+    {
+      "id": "158",
+      "question": [
+        {
+          "language": "en",
+          "string": "Give me the capitals of all countries that the Himalayas run through."
+        }
+      ],
+      "query": {
+        "sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Himalayas> <http://dbpedia.org/ontology/country> ?country . ?country <http://dbpedia.org/ontology/capital> ?uri }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/New_Delhi"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Countries_of_the_United_Kingdom",
+          "surface form": "countries"
+        },
+        {
+          "URI": "http://dbpedia.org/resource/Himalayas",
+          "surface form": "Himalayas"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/capital",
+          "surface form": "capitals"
+        },
+        { "URI": "http://dbpedia.org/property/work", "surface form": "run" }
+      ]
+    },
+    {
+      "id": "159",
+      "question": [
+        {
+          "language": "en",
+          "string": "Who was the first to climb Mount Everest?"
+        }
+      ],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Mount_Everest dbo:firstAscentPerson ?uri }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Tenzing_Norgay"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Mount_Everest",
+          "surface form": "Mount Everest"
+        }
+      ],
+      "relations": [
+        { "URI": "http://dbpedia.org/ontology/board", "surface form": "climb" }
+      ]
+    },
+    {
+      "id": "160",
+      "question": [
+        {
+          "language": "en",
+          "string": "To which artistic movement did the painter of The Three Dancers belong?"
+        }
+      ],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:The_Three_Dancers dbo:author ?person . ?person dbo:movement ?uri }"
+      },
+      "answers": {
+        "uri": { "type": "uri", "value": "http://dbpedia.org/resource/Cubism" }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/The_Three_Dancers",
+          "surface form": "The Three Dancers"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/movement",
+          "surface form": "artistic movement"
+        },
+        {
+          "URI": "http://dbpedia.org/ontology/painter",
+          "surface form": "painter"
+        },
+        { "URI": "http://dbpedia.org/ontology/date", "surface form": "belong" }
+      ]
+    },
+    {
+      "id": "161",
+      "question": [
+        { "language": "en", "string": "Which pope succeeded John Paul II?" }
+      ],
+      "query": {
+        "sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Pope_John_Paul_II> <http://dbpedia.org/property/successor> ?uri }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Pope_Benedict_XVI"
+        }
+      },
+      "entities": [
+        { "URI": "http://dbpedia.org/resource/Ii", "surface form": "II" },
+        {
+          "URI": "http://dbpedia.org/resource/John_Paul",
+          "surface form": "John Paul"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/property/popeElected",
+          "surface form": "pope"
+        },
+        {
+          "URI": "http://dbpedia.org/ontology/successor",
+          "surface form": "succeeded"
+        }
+      ]
+    },
+    {
+      "id": "162",
+      "question": [
+        {
+          "language": "en",
+          "string": "What was the last movie with Alec Guinness?"
+        }
+      ],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Film ; dbo:starring res:Alec_Guinness ; dbo:releaseDate ?date } ORDER BY DESC(?date) LIMIT 1"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Star_Wars_original_trilogy"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Alec_Guinness",
+          "surface form": "Alec Guinness"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/picture",
+          "surface form": "movie"
+        }
+      ]
+    },
+    {
+      "id": "163",
+      "question": [
+        { "language": "en", "string": "How many James Bond movies are there?" }
+      ],
+      "query": {
+        "sparql": "SELECT (COUNT(DISTINCT ?uri) as ?c) WHERE {  ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/class/yago/JamesBondFilms> . } "
+      },
+      "answers": {
+        "c": {
+          "type": "typed-literal",
+          "datatype": "http://www.w3.org/2001/XMLSchema#integer",
+          "value": "0"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/James_Bond",
+          "surface form": "James Bond movies"
+        }
+      ],
+      "relations": []
+    },
+    {
+      "id": "164",
+      "question": [
+        { "language": "en", "string": "Which actor played Chewbacca?" }
+      ],
+      "query": {
+        "sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Chewbacca> <http://dbpedia.org/ontology/portrayer> ?uri }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Joonas_Suotamo"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Chewbacca",
+          "surface form": "Chewbacca"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/artist",
+          "surface form": "actor"
+        },
+        {
+          "URI": "http://dbpedia.org/ontology/portrayer",
+          "surface form": "played"
+        }
+      ]
+    },
+    {
+      "id": "165",
+      "question": [
+        {
+          "language": "en",
+          "string": "Give me the grandchildren of Bruce Lee."
+        }
+      ],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Bruce_Lee dbo:child ?child . ?child <http://dbpedia.org/property/children> ?uri }"
+      },
+      "answers": {
+        "uri": {
+          "type": "typed-literal",
+          "datatype": "http://www.w3.org/2001/XMLSchema#integer",
+          "value": "1"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Bruce_Lee",
+          "surface form": "Bruce Lee"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/child",
+          "surface form": "grandchildren"
+        }
+      ]
+    },
+    {
+      "id": "166",
+      "question": [
+        {
+          "language": "en",
+          "string": "Give me all writers that won the Nobel Prize in literature."
+        }
+      ],
+      "query": {
+        "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Writer> ; <http://dbpedia.org/ontology/award> <http://dbpedia.org/resource/Nobel_Prize_in_Literature> }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Aleksandr_Solzhenitsyn"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Nobel_Prize",
+          "surface form": "Nobel Prize"
+        },
+        {
+          "URI": "http://dbpedia.org/resource/Literature",
+          "surface form": "literature"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/writer",
+          "surface form": "writers"
+        },
+        { "URI": "http://dbpedia.org/ontology/award", "surface form": "won" }
+      ]
+    },
+    {
+      "id": "167",
+      "question": [
+        {
+          "language": "en",
+          "string": "What is the official color of the University of Oxford?"
+        }
+      ],
+      "query": {
+        "sparql": "SELECT DISTINCT ?string WHERE { <http://dbpedia.org/resource/University_of_Oxford> <http://dbpedia.org/ontology/officialSchoolColour> ?string }"
+      },
+      "answers": { "string": { "type": "literal", "value": "" } },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/University_of_Oxford",
+          "surface form": "University of Oxford"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/incumbent",
+          "surface form": "official color"
+        }
+      ]
+    },
+    {
+      "id": "168",
+      "question": [{ "language": "en", "string": "How deep is Lake Placid?" }],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> SELECT DISTINCT ?n WHERE { <http://dbpedia.org/resource/Lake_Placid_(Texas)> dbo:maximumDepth ?n }"
+      },
+      "answers": {
+        "n": {
+          "type": "typed-literal",
+          "datatype": "http://www.w3.org/2001/XMLSchema#double",
+          "value": "12.192"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Lake_Placid",
+          "surface form": "Lake Placid"
+        }
+      ],
+      "relations": [
+        { "URI": "http://dbpedia.org/ontology/capital", "surface form": "deep" }
+      ]
+    },
+    {
+      "id": "169",
+      "question": [
+        {
+          "language": "en",
+          "string": "Which spaceflights were launched from Baikonur?"
+        }
+      ],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/launchPad> res:Baikonur_Cosmodrome }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Salyut_1"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Baikonur_Cosmodrome_Site_110",
+          "surface form": "Baikonur"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/countryWithFirstSpaceflight",
+          "surface form": "spaceflights"
+        },
+        {
+          "URI": "http://dbpedia.org/ontology/totalLaunches",
+          "surface form": "launched"
+        }
+      ]
+    },
+    {
+      "id": "170",
+      "question": [{ "language": "en", "string": "Give me all cosmonauts." }],
+      "query": {
+        "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Astronaut> { ?uri <http://dbpedia.org/ontology/nationality> <http://dbpedia.org/resource/Russia> } UNION { ?uri <http://dbpedia.org/ontology/nationality> <http://dbpedia.org/resource/Soviet_Union> } }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Valery_Kubasov"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Cosmonauts_Alley",
+          "surface form": "Cosmonauts"
+        }
+      ],
+      "relations": []
+    },
+    {
+      "id": "171",
+      "question": [
+        {
+          "language": "en",
+          "string": "Give me a list of all bandleaders that play trumpet."
+        }
+      ],
+      "query": {
+        "sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/occupation> <http://dbpedia.org/resource/Bandleader> ; <http://dbpedia.org/ontology/instrument> <http://dbpedia.org/resource/Trumpet> }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Danny_Davis_(country_musician)"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Geraldo_(bandleader)",
+          "surface form": "bandleaders"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/starring",
+          "surface form": "play"
+        },
+        { "URI": "http://dbpedia.org/ontology/head", "surface form": "trumpet" }
+      ]
+    },
+    {
+      "id": "172",
+      "question": [
+        {
+          "language": "en",
+          "string": "Which countries have more than ten caves?"
+        }
+      ],
+      "query": {
+        "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Country> . ?cave a <http://dbpedia.org/ontology/Cave> { ?cave <http://dbpedia.org/ontology/location> ?uri } UNION { ?cave <http://dbpedia.org/ontology/location> ?loc . ?loc <http://dbpedia.org/ontology/country> ?uri } } GROUP BY ?uri HAVING ( COUNT(?cave) > 10 )"
+      },
+      "answers": {
+        "uri": { "type": "uri", "value": "http://dbpedia.org/resource/Jamaica" }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Countries_of_the_United_Kingdom",
+          "surface form": "countries"
+        },
+        {
+          "URI": "http://dbpedia.org/resource/Caves_of_Aggtelek_Karst_and_Slovak_Karst",
+          "surface form": "caves"
+        }
+      ],
+      "relations": []
+    },
+    {
+      "id": "173",
+      "question": [
+        {
+          "language": "en",
+          "string": "Give me all world heritage sites designated within the past two years."
+        }
+      ],
+      "query": {
+        "sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/WorldHeritageSite> . { ?uri <http://dbpedia.org/property/year> '2013'^^xsd:integer . } UNION { ?uri <http://dbpedia.org/property/year> '2014'^^xsd:integer . } }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Descent_of_the_Holy_Spirit_Church"
+        }
+      },
+      "entities": [],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/fate",
+          "surface form": "heritage sites"
+        },
+        {
+          "URI": "http://dbpedia.org/ontology/class",
+          "surface form": "designated"
+        }
+      ]
+    },
+    {
+      "id": "174",
+      "question": [
+        {
+          "language": "en",
+          "string": "How many languages are spoken in Turkmenistan?"
+        }
+      ],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT (COUNT(DISTINCT ?x) AS ?c) WHERE { res:Turkmenistan dbo:language ?x }"
+      },
+      "answers": {
+        "c": {
+          "type": "typed-literal",
+          "datatype": "http://www.w3.org/2001/XMLSchema#integer",
+          "value": "0"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Turkmenistan",
+          "surface form": "Turkmenistan"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/language",
+          "surface form": "languages"
+        },
+        {
+          "URI": "http://dbpedia.org/ontology/spokenIn",
+          "surface form": "spoken"
+        }
+      ]
+    },
+    {
+      "id": "175",
+      "question": [
+        {
+          "language": "en",
+          "string": "Give me all actors starring in movies directed by William Shatner."
+        }
+      ],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { ?x dbo:director res:William_Shatner ; dbo:starring ?uri }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/DeForest_Kelley"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/William_Shatner",
+          "surface form": "William Shatner"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/artist",
+          "surface form": "actors"
+        },
+        {
+          "URI": "http://dbpedia.org/ontology/starring",
+          "surface form": "starring"
+        },
+        { "URI": "http://dbpedia.org/ontology/film", "surface form": "movies" },
+        {
+          "URI": "http://dbpedia.org/property/directedby",
+          "surface form": "directed"
+        }
+      ]
+    },
+    {
+      "id": "176",
+      "question": [
+        { "language": "en", "string": "Give me all Methodist politicians." }
+      ],
+      "query": {
+        "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Politician> ; <http://dbpedia.org/ontology/religion> <http://dbpedia.org/resource/Methodism> }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Bourke_B._Hickenlooper"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Chicago_Politicians",
+          "surface form": "Methodist politicians"
+        }
+      ],
+      "relations": []
+    },
+    {
+      "id": "177",
+      "question": [
+        { "language": "en", "string": "How often did Jane Fonda marry?" }
+      ],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT (COUNT(DISTINCT ?uri) AS ?c) WHERE { res:Jane_Fonda dbo:spouse ?uri }"
+      },
+      "answers": {
+        "c": {
+          "type": "typed-literal",
+          "datatype": "http://www.w3.org/2001/XMLSchema#integer",
+          "value": "3"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Jane_Fonda",
+          "surface form": "Jane Fonda"
+        }
+      ],
+      "relations": [
+        { "URI": "http://dbpedia.org/ontology/spouse", "surface form": "marry" }
+      ]
+    },
+    {
+      "id": "178",
+      "question": [
+        {
+          "language": "en",
+          "string": "Give me all islands that belong to Japan."
+        }
+      ],
+      "query": {
+        "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Island> ; <http://dbpedia.org/ontology/country> <http://dbpedia.org/resource/Japan> }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Amami_Islands"
+        }
+      },
+      "entities": [
+        { "URI": "http://dbpedia.org/resource/Japan", "surface form": "Japan" }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/numberOfIslands",
+          "surface form": "islands"
+        },
+        { "URI": "http://dbpedia.org/ontology/date", "surface form": "belong" }
+      ]
+    },
+    {
+      "id": "179",
+      "question": [
+        { "language": "en", "string": "Give me all Apollo 14 astronauts." }
+      ],
+      "query": {
+        "sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/mission> <http://dbpedia.org/resource/Apollo_14> }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Alan_Shepard"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Apollo_14",
+          "surface form": "Apollo 14 astronauts"
+        }
+      ],
+      "relations": []
+    },
+    {
+      "id": "180",
+      "question": [
+        {
+          "language": "en",
+          "string": "Which U.S. states are in the same time zone as Utah?"
+        }
+      ],
+      "query": {
+        "sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Utah> <http://dbpedia.org/property/timezone> ?x . ?uri a <http://dbpedia.org/class/yago/WikicatStatesOfTheUnitedStates> ; <http://dbpedia.org/property/timezone> ?x FILTER ( ?uri != <http://dbpedia.org/resource/Utah> ) }"
+      },
+      "answers": {
+        "uri": { "type": "uri", "value": "http://dbpedia.org/resource/Montana" }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Usk,_Washington",
+          "surface form": "US"
+        },
+        { "URI": "http://dbpedia.org/resource/Utah", "surface form": "Utah" }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/property/timezone",
+          "surface form": "time zone"
+        }
+      ]
+    },
+    {
+      "id": "181",
+      "question": [{ "language": "en", "string": "Give me all Danish films." }],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Film ; dbo:country res:Denmark }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/De_Udstillede"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Denmark",
+          "surface form": "Danish films"
+        },
+        {
+          "URI": "http://dbpedia.org/resource/List_of_Danish_films",
+          "surface form": "Danish films"
+        }
+      ],
+      "relations": [
+        { "URI": "http://dbpedia.org/ontology/country", "surface form": "" }
+      ]
+    },
+    {
+      "id": "182",
+      "question": [
+        {
+          "language": "en",
+          "string": "Which Chess players died in the same place they were born in?"
+        }
+      ],
+      "query": {
+        "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/ChessPlayer> ; <http://dbpedia.org/ontology/birthPlace> ?x ; <http://dbpedia.org/ontology/deathPlace> ?y FILTER ( ?x = ?y ) }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Bertus_Enklaar"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/The_Chess_Players_(film)",
+          "surface form": "Chess players"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/deathDate",
+          "surface form": "died"
+        },
+        { "URI": "http://dbpedia.org/ontology/place", "surface form": "place" },
+        {
+          "URI": "http://dbpedia.org/ontology/birthPlace",
+          "surface form": "born"
+        }
+      ]
+    },
+    {
+      "id": "183",
+      "question": [
+        { "language": "en", "string": "Which countries adopted the Euro?" }
+      ],
+      "query": {
+        "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Country> { ?uri <http://dbpedia.org/ontology/currency> <http://dbpedia.org/resource/Euro> } UNION { ?uri <http://dbpedia.org/property/currencyCode> \"EUR\"@en } }"
+      },
+      "answers": {
+        "uri": { "type": "uri", "value": "http://dbpedia.org/resource/Andorra" }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Countries_of_the_United_Kingdom",
+          "surface form": "countries"
+        },
+        { "URI": "http://dbpedia.org/resource/Euro", "surface form": "Euro" }
+      ],
+      "relations": []
+    },
+    {
+      "id": "184",
+      "question": [
+        {
+          "language": "en",
+          "string": "What is the official language of Suriname?"
+        }
+      ],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Suriname dbo:officialLanguage ?uri }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Surinamese_Dutch"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Suriname",
+          "surface form": "Suriname"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/officialLanguage",
+          "surface form": "official language"
+        }
+      ]
+    },
+    {
+      "id": "185",
+      "question": [
+        {
+          "language": "en",
+          "string": "What is the highest place of the Urals?"
+        }
+      ],
+      "query": {
+        "sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Ural_Mountains> <http://dbpedia.org/property/highest> ?uri }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Mount_Narodnaya"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Urals_Mussorgsky_State_Conservatoire",
+          "surface form": "Urals"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/highestPlace",
+          "surface form": "highest place"
+        }
+      ]
+    },
+    {
+      "id": "186",
+      "question": [
+        {
+          "language": "en",
+          "string": "How many countries are there in Europe?"
+        }
+      ],
+      "query": {
+        "sparql": "SELECT (COUNT(DISTINCT ?uri) as ?c) WHERE {  ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/class/yago/EuropeanCountries> . } "
+      },
+      "answers": {
+        "c": {
+          "type": "typed-literal",
+          "datatype": "http://www.w3.org/2001/XMLSchema#integer",
+          "value": "0"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Countries_of_the_United_Kingdom",
+          "surface form": "countries"
+        },
+        {
+          "URI": "http://dbpedia.org/resource/Europe",
+          "surface form": "Europe"
+        }
+      ],
+      "relations": []
+    },
+    {
+      "id": "187",
+      "question": [
+        {
+          "language": "en",
+          "string": "Give me all libraries established earlier than 1400."
+        }
+      ],
+      "query": {
+        "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Library> ; <http://dbpedia.org/property/established> ?year FILTER ( ?year < 1400 ) }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Library_of_Pergamum"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Libraries_in_Brighton_and_Hove",
+          "surface form": "libraries"
+        },
+        { "URI": "http://dbpedia.org/resource/1400", "surface form": "1400" }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/established",
+          "surface form": "established"
+        },
+        { "URI": "http://dbpedia.org/ontology/date", "surface form": "when" }
+      ]
+    },
+    {
+      "id": "188",
+      "question": [
+        {
+          "language": "en",
+          "string": "Give me all federal chancellors of Germany."
+        }
+      ],
+      "query": {
+        "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Person> { ?uri <http://dbpedia.org/ontology/office> \"Chancellor of Germany\" } UNION { ?uri <http://dbpedia.org/property/office> <http://dbpedia.org/resource/Chancellor_of_Germany> } }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Franz_von_Papen"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Germany",
+          "surface form": "Germany"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/federalState",
+          "surface form": "federal chancellors"
+        }
+      ]
+    },
+    {
+      "id": "189",
+      "question": [
+        { "language": "en", "string": "How many Aldi stores are there?" }
+      ],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?number WHERE { res:Aldi dbo:numberOfLocations ?number }"
+      },
+      "answers": {
+        "number": {
+          "type": "typed-literal",
+          "datatype": "http://www.w3.org/2001/XMLSchema#nonNegativeInteger",
+          "value": "11235"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Aldi",
+          "surface form": "Aldi stores"
+        }
+      ],
+      "relations": []
+    },
+    {
+      "id": "190",
+      "question": [
+        { "language": "en", "string": "Give me all female given names." }
+      ],
+      "query": {
+        "sparql": "SELECT DISTINCT ?uri WHERE {  ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/GivenName> .  ?uri <http://dbpedia.org/ontology/gender> <http://dbpedia.org/resource/Female> . } "
+      },
+      "answers": {
+        "uri": { "type": "uri", "value": "http://dbpedia.org/resource/Amy" }
+      },
+      "entities": [],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/championInSingleFemale",
+          "surface form": "female"
+        },
+        {
+          "URI": "http://dbpedia.org/ontology/athletics",
+          "surface form": "names"
+        }
+      ]
+    },
+    {
+      "id": "191",
+      "question": [
+        {
+          "language": "en",
+          "string": "Who wrote the book The Pillars of the Earth?"
+        }
+      ],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:The_Pillars_of_the_Earth dbo:author ?uri }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Ken_Follett"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/The_Pillars_of_the_Earth",
+          "surface form": "The Pillars of the Earth"
+        }
+      ],
+      "relations": [
+        { "URI": "http://dbpedia.org/ontology/author", "surface form": "wrote" }
+      ]
+    },
+    {
+      "id": "192",
+      "question": [
+        {
+          "language": "en",
+          "string": "In which U.S. state is Mount McKinley located?"
+        }
+      ],
+      "query": {
+        "sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Mount_McKinley> dbo:wikiPageRedirects ?x . ?x <http://dbpedia.org/ontology/locatedInArea> ?uri. ?uri rdf:type yago:WikicatStatesOfTheUnitedStates }"
+      },
+      "answers": {
+        "uri": { "type": "uri", "value": "http://dbpedia.org/resource/Alaska" }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/United_States",
+          "surface form": "US"
+        },
+        {
+          "URI": "http://dbpedia.org/resource/Denali",
+          "surface form": "Mount McKinley"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/locatedInArea",
+          "surface form": "located"
+        }
+      ]
+    },
+    {
+      "id": "193",
+      "question": [
+        {
+          "language": "en",
+          "string": "Which organizations were founded in 1930?"
+        }
+      ],
+      "query": {
+        "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Organisation> { ?uri <http://dbpedia.org/ontology/formationYear> ?date } UNION { ?uri <http://dbpedia.org/ontology/foundingYear> ?date } FILTER regex(?date, \"^1930\") }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/American_Popular_Revolutionary_Alliance"
+        }
+      },
+      "entities": [
+        { "URI": "http://dbpedia.org/resource/1930", "surface form": "1930" }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/company",
+          "surface form": "organizations"
+        },
+        {
+          "URI": "http://dbpedia.org/ontology/foundingYear",
+          "surface form": "founded"
+        }
+      ]
+    },
+    {
+      "id": "194",
+      "question": [
+        { "language": "en", "string": "Give me all ESA astronauts." }
+      ],
+      "query": {
+        "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Astronaut> ; <http://dbpedia.org/property/type> <http://dbpedia.org/resource/European_Space_Agency> }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Dirk_Frimout"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/European_Free_Trade_Association_Surveillance_Authority",
+          "surface form": "ESA"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/countryWithFirstAstronaut",
+          "surface form": "astronauts"
+        }
+      ]
+    },
+    {
+      "id": "195",
+      "question": [
+        { "language": "en", "string": "Give me all Swedish holidays." }
+      ],
+      "query": {
+        "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Holiday> ; <http://dbpedia.org/ontology/country> <http://dbpedia.org/resource/Sweden> }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Saint_Knut's_Day"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Sweden",
+          "surface form": "Swedish holidays"
+        },
+        {
+          "URI": "http://dbpedia.org/resource/Swedish",
+          "surface form": "Swedish holidays"
+        }
+      ],
+      "relations": [
+        { "URI": "http://dbpedia.org/ontology/country", "surface form": "" },
+        { "URI": "http://dbpedia.org/ontology/country", "surface form": "" }
+      ]
+    },
+    {
+      "id": "196",
+      "question": [
+        {
+          "language": "en",
+          "string": "Who is the youngest Pulitzer Prize winner?"
+        }
+      ],
+      "query": {
+        "sparql": "SELECT DISTINCT ?uri WHERE {  ?uri <http://dbpedia.org/ontology/award> <http://dbpedia.org/resource/Pulitzer_Prize> .  ?uri <http://dbpedia.org/ontology/birthDate> ?d . } ORDER BY DESC(?d) OFFSET 0 LIMIT 1 "
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Mohammad_Ponir_Hossain"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Pulitzer-Prize",
+          "surface form": "Pulitzer Prize winner"
+        }
+      ],
+      "relations": []
+    },
+    {
+      "id": "197",
+      "question": [
+        {
+          "language": "en",
+          "string": "Which animals are critically endangered?"
+        }
+      ],
+      "query": {
+        "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Animal> ; <http://dbpedia.org/ontology/conservationStatus> \"CR\" }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Africallagma_cuneistigma"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Endangered_Species_(H.A.W.K._album)",
+          "surface form": "Endangered"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/animal",
+          "surface form": "animals"
+        },
+        {
+          "URI": "http://dbpedia.org/ontology/principal",
+          "surface form": "critically"
+        }
+      ]
+    },
+    {
+      "id": "198",
+      "question": [
+        {
+          "language": "en",
+          "string": "Which soccer players were born on Malta?"
+        }
+      ],
+      "query": {
+        "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/SoccerPlayer> ; <http://dbpedia.org/ontology/birthPlace> <http://dbpedia.org/resource/Malta> }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Andrei_Agius"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/American_professional_soccer_players_abroad",
+          "surface form": "soccer players"
+        },
+        { "URI": "http://dbpedia.org/resource/Malta", "surface form": "Malta" }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/birthPlace",
+          "surface form": "born"
+        }
+      ]
+    },
+    {
+      "id": "199",
+      "question": [
+        {
+          "language": "en",
+          "string": "Which programming languages were influenced by Perl?"
+        }
+      ],
+      "query": {
+        "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/ProgrammingLanguage> { ?uri <http://dbpedia.org/ontology/influencedBy> <http://dbpedia.org/resource/Perl> } UNION { <http://dbpedia.org/resource/Perl> <http://dbpedia.org/ontology/influenced> ?uri } }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/BeanShell"
+        }
+      },
+      "entities": [
+        { "URI": "http://dbpedia.org/resource/Perl", "surface form": "Perl" }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/property/programmingLanguage",
+          "surface form": "programming languages"
+        },
+        {
+          "URI": "http://dbpedia.org/ontology/influenced",
+          "surface form": "influenced"
+        }
+      ]
+    },
+    {
+      "id": "200",
+      "question": [
+        {
+          "language": "en",
+          "string": "How many children does Eddie Murphy have?"
+        }
+      ],
+      "query": {
+        "sparql": "SELECT DISTINCT ?n WHERE { <http://dbpedia.org/resource/Eddie_Murphy> <http://dbpedia.org/property/children> ?n }"
+      },
+      "answers": {
+        "n": {
+          "type": "typed-literal",
+          "datatype": "http://www.w3.org/2001/XMLSchema#integer",
+          "value": "10"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Eddie_Murphy",
+          "surface form": "Eddie Murphy"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/property/children",
+          "surface form": "children"
+        }
+      ]
+    },
+    {
+      "id": "201",
+      "question": [
+        {
+          "language": "en",
+          "string": "Which frequent flyer program has the most airlines?"
+        }
+      ],
+      "query": {
+        "sparql": "SELECT ?uri WHERE { ?airline <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Airline> . ?airline <http://dbpedia.org/property/frequentFlyer> ?uri. } GROUP BY ?uri ORDER BY DESC(COUNT(DISTINCT ?airline)) OFFSET 0 LIMIT 1"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Miles_&_More"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Frequent-flyer_program",
+          "surface form": "frequent flyer program"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/icaoAirlineCode",
+          "surface form": "airlines"
+        }
+      ]
+    },
+    {
+      "id": "202",
+      "question": [
+        {
+          "language": "en",
+          "string": "In which city is Air China headquartered?"
+        }
+      ],
+      "query": {
+        "sparql": "SELECT DISTINCT ?uri WHERE {  <http://dbpedia.org/resource/Air_China> <http://dbpedia.org/ontology/headquarter> ?uri .  ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/class/yago/City108524735> . } "
+      },
+      "answers": {
+        "uri": { "type": "uri", "value": "http://dbpedia.org/resource/Beijing" }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Air_China",
+          "surface form": "Air China"
+        }
+      ],
+      "relations": [
+        { "URI": "http://dbpedia.org/ontology/city", "surface form": "city" },
+        {
+          "URI": "http://dbpedia.org/ontology/headquarter",
+          "surface form": "headquartered"
+        }
+      ]
+    },
+    {
+      "id": "203",
+      "question": [
+        {
+          "language": "en",
+          "string": "Which artists were born on the same date as Rachel Stevens?"
+        }
+      ],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { ?uri a dbo:Artist . dbr:Rachel_Stevens dbo:birthDate ?birthdate . ?uri dbo:birthDate ?birthdate }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Vesna_Pisarovi\u0107"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Rachel_Stevens",
+          "surface form": "Rachel Stevens"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/property/artist",
+          "surface form": "artists"
+        },
+        {
+          "URI": "http://dbpedia.org/ontology/birthPlace",
+          "surface form": "born"
+        }
+      ]
+    },
+    {
+      "id": "204",
+      "question": [
+        {
+          "language": "en",
+          "string": "How many scientists graduated from an Ivy League university?"
+        }
+      ],
+      "query": {
+        "sparql": "SELECT (COUNT(DISTINCT ?uri) AS ?c) WHERE { ?uri a <http://dbpedia.org/ontology/Scientist> ; <http://dbpedia.org/ontology/almaMater> ?university . ?university <http://dbpedia.org/ontology/affiliation> <http://dbpedia.org/resource/Ivy_League> ; a <http://dbpedia.org/ontology/University> }"
+      },
+      "answers": {
+        "c": {
+          "type": "typed-literal",
+          "datatype": "http://www.w3.org/2001/XMLSchema#integer",
+          "value": "0"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Scientists_for_Global_Responsibility",
+          "surface form": "scientists"
+        },
+        {
+          "URI": "http://dbpedia.org/resource/Ivy_League",
+          "surface form": "Ivy League university"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/effectiveRadiatedPower",
+          "surface form": "graduated"
+        }
+      ]
+    },
+    {
+      "id": "205",
+      "question": [
+        { "language": "en", "string": "Which types of grapes grow in Oregon?" }
+      ],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Oregon_wine dbo:growingGrape ?uri }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Dolcetto"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Oregon",
+          "surface form": "Oregon"
+        }
+      ],
+      "relations": [
+        { "URI": "http://dbpedia.org/property/type", "surface form": "types" },
+        {
+          "URI": "http://dbpedia.org/property/grass",
+          "surface form": "grapes"
+        },
+        { "URI": "http://dbpedia.org/property/flag", "surface form": "grow" }
+      ]
+    },
+    {
+      "id": "206",
+      "question": [
+        {
+          "language": "en",
+          "string": "Who is starring in Spanish movies produced by Benicio del Toro?"
+        }
+      ],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?film rdf:type dbo:Film ; dbo:country res:Spain ; dbo:producer res:Benicio_del_Toro ; dbo:starring ?uri . ?uri rdf:type dbo:Person }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Benicio_del_Toro"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Spain",
+          "surface form": "Spanish movies"
+        },
+        {
+          "URI": "http://dbpedia.org/resource/The_Movies_(film)",
+          "surface form": "Spanish movies"
+        },
+        {
+          "URI": "http://dbpedia.org/resource/Benicio_del_Toro",
+          "surface form": "Benicio del Toro"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/starring",
+          "surface form": "starring"
+        },
+        {
+          "URI": "http://dbpedia.org/ontology/wineProduced",
+          "surface form": "produced"
+        },
+        { "URI": "http://dbpedia.org/ontology/country", "surface form": "" }
+      ]
+    },
+    {
+      "id": "207",
+      "question": [
+        { "language": "en", "string": "Give me the currency of China." }
+      ],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:China dbo:currency ?uri }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Renminbi"
+        }
+      },
+      "entities": [
+        { "URI": "http://dbpedia.org/resource/China", "surface form": "China" }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/currency",
+          "surface form": "currency"
+        }
+      ]
+    },
+    {
+      "id": "208",
+      "question": [
+        {
+          "language": "en",
+          "string": "Which movies starring Brad Pitt were directed by Guy Ritchie?"
+        }
+      ],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Film ; dbo:starring res:Brad_Pitt ; dbo:director res:Guy_Ritchie }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Snatch_(film)__Snatch__1"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Brad_Pitt",
+          "surface form": "Brad Pitt"
+        },
+        {
+          "URI": "http://dbpedia.org/resource/Guy_Ritchie",
+          "surface form": "Guy Ritchie"
+        }
+      ],
+      "relations": [
+        { "URI": "http://dbpedia.org/ontology/film", "surface form": "movies" },
+        {
+          "URI": "http://dbpedia.org/ontology/starring",
+          "surface form": "starring"
+        },
+        {
+          "URI": "http://dbpedia.org/ontology/president",
+          "surface form": "directed"
+        }
+      ]
+    },
+    {
+      "id": "209",
+      "question": [
+        {
+          "language": "en",
+          "string": "How many companies were founded by the founder of Facebook?"
+        }
+      ],
+      "query": {
+        "sparql": "SELECT (COUNT(DISTINCT ?x) AS ?c) WHERE { <http://dbpedia.org/resource/Facebook> <http://dbpedia.org/ontology/foundedBy> ?uri . ?x <http://dbpedia.org/ontology/foundedBy> ?uri }"
+      },
+      "answers": {
+        "c": {
+          "type": "typed-literal",
+          "datatype": "http://www.w3.org/2001/XMLSchema#integer",
+          "value": "0"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Companies_listed_on_the_New_York_Stock_Exchange_(J)",
+          "surface form": "companies"
+        },
+        {
+          "URI": "http://dbpedia.org/resource/Facebook",
+          "surface form": "Facebook"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/foundingYear",
+          "surface form": "founded"
+        },
+        {
+          "URI": "http://dbpedia.org/ontology/founder",
+          "surface form": "founder"
+        }
+      ]
+    },
+    {
+      "id": "210",
+      "question": [
+        {
+          "language": "en",
+          "string": "How many companies were founded in the same year as Google?"
+        }
+      ],
+      "query": {
+        "sparql": "SELECT (COUNT(DISTINCT ?uri) as ?c) WHERE {  ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Company> .  ?uri <http://dbpedia.org/ontology/foundingYear> ?year .  <http://dbpedia.org/resource/Google> <http://dbpedia.org/ontology/foundingYear> ?year . } "
+      },
+      "answers": {
+        "c": {
+          "type": "typed-literal",
+          "datatype": "http://www.w3.org/2001/XMLSchema#integer",
+          "value": "1343"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Companies_listed_on_the_New_York_Stock_Exchange_(J)",
+          "surface form": "companies"
+        },
+        {
+          "URI": "http://dbpedia.org/resource/Google",
+          "surface form": "Google"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/foundingYear",
+          "surface form": "founded"
+        }
+      ]
+    },
+    {
+      "id": "211",
+      "question": [
+        {
+          "language": "en",
+          "string": "How many airlines are members of the Star Alliance?"
+        }
+      ],
+      "query": {
+        "sparql": "SELECT (COUNT(DISTINCT ?uri) AS ?c) WHERE { ?uri a <http://dbpedia.org/ontology/Airline> ; <http://dbpedia.org/ontology/alliance> <http://dbpedia.org/resource/Star_Alliance> }"
+      },
+      "answers": {
+        "c": {
+          "type": "typed-literal",
+          "datatype": "http://www.w3.org/2001/XMLSchema#integer",
+          "value": "107"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Star_Alliance",
+          "surface form": "Star Alliance"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/icaoAirlineCode",
+          "surface form": "airlines"
+        },
+        {
+          "URI": "http://dbpedia.org/property/members",
+          "surface form": "members"
+        }
+      ]
+    },
+    {
+      "id": "212",
+      "question": [
+        {
+          "language": "en",
+          "string": "Give me all spacecrafts that flew to Mars."
+        }
+      ],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbc: <http://dbpedia.org/resource/Category:> PREFIX dct: <http://purl.org/dc/terms/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?s WHERE { ?s dct:subject dbc:Mars_rovers ; rdf:type ?type FILTER ( ?type IN (dbo:Satellite, dbo:ArtificialSatellite) ) }"
+      },
+      "answers": {
+        "s": { "type": "uri", "value": "http://dbpedia.org/resource/Mars_2" }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Spacecraft",
+          "surface form": "spacecrafts"
+        },
+        { "URI": "http://dbpedia.org/resource/Mars", "surface form": "Mars" }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/circulation",
+          "surface form": "flew"
+        }
+      ]
+    },
+    {
+      "id": "213",
+      "question": [
+        { "language": "en", "string": "Which musician wrote the most books?" }
+      ],
+      "query": {
+        "sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/occupation> <http://dbpedia.org/resource/Musician> . ?x <http://dbpedia.org/ontology/author> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Book> . } ORDER BY DESC(COUNT(?x)) OFFSET 0 LIMIT 1"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Julius_Lester"
+        }
+      },
+      "entities": [],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/show",
+          "surface form": "musician"
+        },
+        {
+          "URI": "http://dbpedia.org/ontology/composer",
+          "surface form": "wrote"
+        },
+        { "URI": "http://dbpedia.org/ontology/volume", "surface form": "books" }
+      ]
+    },
+    {
+      "id": "214",
+      "question": [
+        {
+          "language": "en",
+          "string": "Show me everyone who was born on Halloween."
+        }
+      ],
+      "query": {
+        "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Person> { ?uri <http://dbpedia.org/ontology/birthDate> ?date } UNION { ?uri <http://dbpedia.org/property/birthDate> ?date } <http://dbpedia.org/resource/Halloween> <http://dbpedia.org/property/date> ?date }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Mathias_Braschler_and_Monika_Fischer"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Halloween",
+          "surface form": "Halloween"
+        }
+      ],
+      "relations": [
+        { "URI": "http://dbpedia.org/ontology/show", "surface form": "show" },
+        {
+          "URI": "http://dbpedia.org/ontology/birthPlace",
+          "surface form": "born"
+        }
+      ]
+    },
+    {
+      "id": "215",
+      "question": [
+        {
+          "language": "en",
+          "string": "Give me all Swiss non-profit organizations."
+        }
+      ],
+      "query": {
+        "sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/type> <http://dbpedia.org/resource/Nonprofit_organization> { ?uri <http://dbpedia.org/ontology/location> <http://dbpedia.org/resource/Switzerland> } UNION { ?uri <http://dbpedia.org/ontology/location> ?x . ?x <http://dbpedia.org/ontology/country> <http://dbpedia.org/resource/Switzerland> } }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Aiducation"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Non\u2013profit_organizations_based_in_California",
+          "surface form": "Swiss non-profit organizations"
+        }
+      ],
+      "relations": []
+    },
+    {
+      "id": "216",
+      "question": [
+        { "language": "en", "string": "In which country is Mecca located?" }
+      ],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Mecca dbo:country ?uri }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Saudi_Arabia"
+        }
+      },
+      "entities": [
+        { "URI": "http://dbpedia.org/resource/Mecca", "surface form": "Mecca" }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/country",
+          "surface form": "country"
+        },
+        {
+          "URI": "http://dbpedia.org/ontology/locatedInArea",
+          "surface form": "located"
+        }
+      ]
+    },
+    {
+      "id": "217",
+      "question": [
+        { "language": "en", "string": "What is the net income of Apple?" }
+      ],
+      "query": {
+        "sparql": "SELECT DISTINCT ?ni WHERE { <http://dbpedia.org/resource/Apple_Inc.> <http://dbpedia.org/ontology/netIncome> ?ni }"
+      },
+      "answers": {
+        "ni": {
+          "type": "typed-literal",
+          "datatype": "http://dbpedia.org/datatype/usDollar",
+          "value": "9.468E10"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Apple_Inc.",
+          "surface form": "Apple"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/successor",
+          "surface form": "income"
+        }
+      ]
+    },
+    {
+      "id": "218",
+      "question": [
+        {
+          "language": "en",
+          "string": "What does the abbreviation FIFA stand for?"
+        }
+      ],
+      "query": {
+        "sparql": "SELECT DISTINCT ?name WHERE {  <http://dbpedia.org/resource/FIFA> <http://dbpedia.org/property/name> ?name . } "
+      },
+      "answers": {
+        "name": {
+          "type": "literal",
+          "xml:lang": "en",
+          "value": "F\u00e9d\u00e9ration internationale de Football Association"
+        }
+      },
+      "entities": [
+        { "URI": "http://dbpedia.org/resource/FIFA", "surface form": "FIFA" }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/abbreviation",
+          "surface form": "abbreviation"
+        },
+        {
+          "URI": "http://dbpedia.org/ontology/abbreviation",
+          "surface form": "stand"
+        }
+      ]
+    },
+    {
+      "id": "219",
+      "question": [
+        {
+          "language": "en",
+          "string": "Which museum in New York has the most visitors?"
+        }
+      ],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Museum ; dbo:location res:New_York_City ; dbo:numberOfVisitors ?num } ORDER BY DESC(?num) OFFSET 0 LIMIT 1"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/American_Museum_of_Natural_History"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/New_York_City",
+          "surface form": "New York"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/museum",
+          "surface form": "museum"
+        },
+        {
+          "URI": "http://dbpedia.org/ontology/numberOfVisitors",
+          "surface form": "visitors"
+        }
+      ]
+    },
+    {
+      "id": "220",
+      "question": [
+        { "language": "en", "string": "What is the highest mountain in Italy?" }
+      ],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Mountain ; dbo:locatedInArea res:Italy ; dbo:elevation ?num } ORDER BY DESC(?num) OFFSET 0 LIMIT 1"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Mont_Blanc"
+        }
+      },
+      "entities": [
+        { "URI": "http://dbpedia.org/resource/Italy", "surface form": "Italy" }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/elevation",
+          "surface form": "highest mountain"
+        }
+      ]
+    },
+    {
+      "id": "221",
+      "question": [
+        {
+          "language": "en",
+          "string": "Where did the architect of the Eiffel Tower study?"
+        }
+      ],
+      "query": {
+        "sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Eiffel_Tower> <http://dbpedia.org/ontology/architect> ?x . ?x <http://dbpedia.org/property/almaMater> ?uri }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/\u00c9cole_Sp\u00e9ciale_d'Architecture"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Eiffel_Tower",
+          "surface form": "Eiffel Tower study"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/architect",
+          "surface form": "architect"
+        }
+      ]
+    },
+    {
+      "id": "222",
+      "question": [
+        { "language": "en", "string": "Which Greek parties are pro-European?" }
+      ],
+      "query": {
+        "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/PoliticalParty> ; <http://dbpedia.org/ontology/country> <http://dbpedia.org/resource/Greece> ; <http://dbpedia.org/ontology/ideology> <http://dbpedia.org/resource/Pro-Europeanism> }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Democratic_Alignment_(2015)"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Greece",
+          "surface form": "Greek parties are pro-European"
+        },
+        {
+          "URI": "http://dbpedia.org/resource/Early_Greek_parties",
+          "surface form": "Greek parties are pro-European"
+        }
+      ],
+      "relations": [
+        { "URI": "http://dbpedia.org/ontology/country", "surface form": "" }
+      ]
+    },
+    {
+      "id": "223",
+      "question": [
+        { "language": "en", "string": "How high is the Yokohama Marine Tower?" }
+      ],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?num WHERE { res:Yokohama_Marine_Tower dbo:height ?num }"
+      },
+      "answers": {
+        "num": {
+          "type": "typed-literal",
+          "datatype": "http://www.w3.org/2001/XMLSchema#double",
+          "value": "106.07"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Yokohama_Marine_Tower",
+          "surface form": "Yokohama Marine Tower"
+        }
+      ],
+      "relations": [
+        { "URI": "http://dbpedia.org/ontology/height", "surface form": "high" }
+      ]
+    },
+    {
+      "id": "224",
+      "question": [
+        {
+          "language": "en",
+          "string": "How many ethnic groups live in Slovenia?"
+        }
+      ],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT (COUNT(DISTINCT ?uri) AS ?c) WHERE { res:Slovenia dbo:ethnicGroup ?uri }"
+      },
+      "answers": {
+        "c": {
+          "type": "typed-literal",
+          "datatype": "http://www.w3.org/2001/XMLSchema#integer",
+          "value": "7"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Slovenia",
+          "surface form": "Slovenia"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/ethnicGroup",
+          "surface form": "ethnic"
+        },
+        {
+          "URI": "http://dbpedia.org/ontology/populationTotal",
+          "surface form": "live"
+        }
+      ]
+    },
+    {
+      "id": "225",
+      "question": [
+        { "language": "en", "string": "List the seven kings of Rome." }
+      ],
+      "query": {
+        "sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/title> <http://dbpedia.org/resource/King_of_Rome> }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Ancus_Marcius"
+        }
+      },
+      "entities": [
+        { "URI": "http://dbpedia.org/resource/Rome", "surface form": "Rome" }
+      ],
+      "relations": [
+        { "URI": "http://dbpedia.org/ontology/leader", "surface form": "kings" }
+      ]
+    },
+    {
+      "id": "226",
+      "question": [
+        {
+          "language": "en",
+          "string": "Who were the parents of Queen Victoria?"
+        }
+      ],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Queen_Victoria dbo:parent ?uri }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Prince_Edward,_Duke_of_Kent_and_Strathearn"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Queen_Victoria",
+          "surface form": "Queen Victoria"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/parent",
+          "surface form": "parents"
+        }
+      ]
+    },
+    {
+      "id": "227",
+      "question": [
+        {
+          "language": "en",
+          "string": "Who is the heaviest player of the Chicago Bulls?"
+        }
+      ],
+      "query": {
+        "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Person> ; <http://dbpedia.org/ontology/weight> ?num { ?uri <http://dbpedia.org/property/team> <http://dbpedia.org/resource/Chicago_Bulls> } UNION { ?uri <http://dbpedia.org/property/draftTeam> <http://dbpedia.org/resource/Chicago_Bulls> } UNION { ?uri <http://dbpedia.org/ontology/draftTeam> <http://dbpedia.org/resource/Chicago_Bulls> } } ORDER BY DESC(?num) OFFSET 0 LIMIT 1"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Michael_Sweetney"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Chicago_Bulls",
+          "surface form": "Chicago Bulls"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/coach",
+          "surface form": "heaviest player"
+        }
+      ]
+    },
+    {
+      "id": "228",
+      "question": [
+        {
+          "language": "en",
+          "string": "Which volcanos in Japan erupted since 2000?"
+        }
+      ],
+      "query": {
+        "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Volcano> ; <http://dbpedia.org/ontology/locatedInArea> <http://dbpedia.org/resource/Japan> ; <http://dbpedia.org/ontology/eruptionYear> ?date FILTER ( year(?date) >= 2000 ) }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Mount_I\u014d_(I\u014djima)"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Billings_Volcanos_(basketball)",
+          "surface form": "volcanos"
+        },
+        { "URI": "http://dbpedia.org/resource/Japan", "surface form": "Japan" },
+        { "URI": "http://dbpedia.org/resource/2000", "surface form": "2000" }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/property/erected",
+          "surface form": "erupted"
+        }
+      ]
+    },
+    {
+      "id": "230",
+      "question": [
+        {
+          "language": "en",
+          "string": "How many missions does the Soyuz programme have?"
+        }
+      ],
+      "query": {
+        "sparql": "SELECT (COUNT(DISTINCT ?uri) AS ?c) WHERE { ?uri <http://dbpedia.org/property/programme> <http://dbpedia.org/resource/Soyuz_programme> }"
+      },
+      "answers": {
+        "c": {
+          "type": "typed-literal",
+          "datatype": "http://www.w3.org/2001/XMLSchema#integer",
+          "value": "148"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Soyuz_programme",
+          "surface form": "Soyuz programme"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/missions",
+          "surface form": "missions"
+        }
+      ]
+    },
+    {
+      "id": "231",
+      "question": [
+        { "language": "en", "string": "Give me all Danish movies." }
+      ],
+      "query": {
+        "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Film> ; <http://dbpedia.org/ontology/country> <http://dbpedia.org/resource/Denmark> }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/De_Udstillede"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Denmark",
+          "surface form": "Danish movies"
+        },
+        {
+          "URI": "http://dbpedia.org/resource/The_Movies_(film)",
+          "surface form": "Danish movies"
+        }
+      ],
+      "relations": [
+        { "URI": "http://dbpedia.org/ontology/country", "surface form": "" }
+      ]
+    },
+    {
+      "id": "232",
+      "question": [
+        { "language": "en", "string": "Which movies did Kurosawa direct?" }
+      ],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT ?uri WHERE { ?uri rdf:type dbo:Film ; dbo:director res:Akira_Kurosawa }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Dersu_Uzala_(1975_film)"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Akira_Kurosawa",
+          "surface form": "Kurosawa"
+        }
+      ],
+      "relations": [
+        { "URI": "http://dbpedia.org/ontology/film", "surface form": "movies" },
+        {
+          "URI": "http://dbpedia.org/ontology/director",
+          "surface form": "direct"
+        }
+      ]
+    },
+    {
+      "id": "233",
+      "question": [
+        {
+          "language": "en",
+          "string": "Which television shows were created by John Cleese?"
+        }
+      ],
+      "query": {
+        "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/TelevisionShow> ; <http://dbpedia.org/ontology/creator> <http://dbpedia.org/resource/John_Cleese> }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Monty_Python's_Fliegender_Zirkus"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/John_Cleese",
+          "surface form": "John Cleese"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/televisionSeries",
+          "surface form": "television shows"
+        },
+        {
+          "URI": "http://dbpedia.org/ontology/author",
+          "surface form": "created"
+        }
+      ]
+    },
+    {
+      "id": "234",
+      "question": [
+        {
+          "language": "en",
+          "string": "Which awards did Douglas Hofstadter win?"
+        }
+      ],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Douglas_Hofstadter dbo:award ?uri }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/American_Academy_of_Arts_and_Sciences"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Douglas_Hofstadter",
+          "surface form": "Douglas Hofstadter"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/award",
+          "surface form": "awards"
+        },
+        { "URI": "http://dbpedia.org/ontology/award", "surface form": "win" }
+      ]
+    },
+    {
+      "id": "235",
+      "question": [
+        {
+          "language": "en",
+          "string": "Who is the daughter of Robert Kennedy married to?"
+        }
+      ],
+      "query": {
+        "sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Robert_F._Kennedy> <http://dbpedia.org/ontology/child> ?child . ?child <http://dbpedia.org/ontology/spouse> ?uri }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Andrew_Cuomo"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Robert_F._Kennedy",
+          "surface form": "Robert Kennedy"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/child",
+          "surface form": "daughter"
+        },
+        {
+          "URI": "http://dbpedia.org/property/spouse",
+          "surface form": "married"
+        }
+      ]
+    },
+    {
+      "id": "236",
+      "question": [
+        { "language": "en", "string": "Who is the owner of Rolls-Royce?" }
+      ],
+      "query": {
+        "sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Rolls-Royce_Motors> <http://dbpedia.org/ontology/owner> ?uri }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Vickers_plc"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Rolls-Royce",
+          "surface form": "Rolls-Royce"
+        }
+      ],
+      "relations": [
+        { "URI": "http://dbpedia.org/ontology/owner", "surface form": "owner" }
+      ]
+    },
+    {
+      "id": "237",
+      "question": [
+        {
+          "language": "en",
+          "string": "What is the most frequent cause of death?"
+        }
+      ],
+      "query": {
+        "sparql": "SELECT DISTINCT ?x WHERE { ?uri <http://dbpedia.org/ontology/deathCause> ?x . } ORDER BY DESC(COUNT(DISTINCT ?uri)) OFFSET 0 LIMIT 1"
+      },
+      "answers": {
+        "x": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Gunshot_wound"
+        }
+      },
+      "entities": [],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/patron",
+          "surface form": "frequent"
+        },
+        { "URI": "http://dbpedia.org/ontology/fate", "surface form": "death" }
+      ]
+    },
+    {
+      "id": "238",
+      "question": [
+        {
+          "language": "en",
+          "string": "Which rockets were launched from Baikonur?"
+        }
+      ],
+      "query": {
+        "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Rocket> ; <http://dbpedia.org/ontology/launchSite> <http://dbpedia.org/resource/Baikonur_Cosmodrome> }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Voskhod_(rocket)"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Baikonur_Cosmodrome_Site_109",
+          "surface form": "Baikonur"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/capital",
+          "surface form": "rockets"
+        },
+        {
+          "URI": "http://dbpedia.org/ontology/totalLaunches",
+          "surface form": "launched"
+        }
+      ]
+    },
+    {
+      "id": "239",
+      "question": [{ "language": "en", "string": "What does IYCM stand for?" }],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { ?uri dbo:abbreviation \"IYCM\" }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Youth_Climate_Movement"
+        }
+      },
+      "entities": [],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/position",
+          "surface form": "stand"
+        }
+      ]
+    },
+    {
+      "id": "240",
+      "question": [
+        {
+          "language": "en",
+          "string": "Which companies have more than 1 million employees?"
+        }
+      ],
+      "query": {
+        "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Company> { ?uri <http://dbpedia.org/ontology/numberOfEmployees> ?n } UNION { ?uri <http://dbpedia.org/property/numEmployees> ?n } FILTER ( ?n > 1000000 ) }"
+      },
+      "answers": {
+        "uri": { "type": "uri", "value": "http://dbpedia.org/resource/Walmart" }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Companies_listed_on_the_New_York_Stock_Exchange_(J)",
+          "surface form": "companies"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/iso6391Code",
+          "surface form": "1"
+        },
+        {
+          "URI": "http://dbpedia.org/ontology/numberOfEmployees",
+          "surface form": "employees"
+        }
+      ]
+    },
+    {
+      "id": "241",
+      "question": [
+        {
+          "language": "en",
+          "string": "Give all swimmers that were born in Moscow."
+        }
+      ],
+      "query": {
+        "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Swimmer> ; <http://dbpedia.org/ontology/birthPlace> <http://dbpedia.org/resource/Moscow> }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Alla_Grebennikova"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Swimmers_(film)",
+          "surface form": "swimmers"
+        },
+        {
+          "URI": "http://dbpedia.org/resource/Moscow",
+          "surface form": "Moscow"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/birthPlace",
+          "surface form": "born"
+        }
+      ]
+    },
+    {
+      "id": "242",
+      "question": [
+        {
+          "language": "en",
+          "string": "Show me the book that Muhammad Ali wrote."
+        }
+      ],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Book ; dbo:author res:Muhammad_Ali }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/The_Soul_of_a_Butterfly"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Muhammad_Ali",
+          "surface form": "Muhammad Ali"
+        }
+      ],
+      "relations": [
+        { "URI": "http://dbpedia.org/ontology/author", "surface form": "wrote" }
+      ]
+    },
+    {
+      "id": "243",
+      "question": [
+        { "language": "en", "string": "How many museums does Paris have?" }
+      ],
+      "query": {
+        "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Museum> ; <http://dbpedia.org/ontology/location> <http://dbpedia.org/resource/Paris> }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Gallery_of_Paleontology_and_Comparative_Anatomy"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Museums_in_Aalborg",
+          "surface form": "museums"
+        },
+        { "URI": "http://dbpedia.org/resource/Paris", "surface form": "Paris" }
+      ],
+      "relations": []
+    },
+    {
+      "id": "244",
+      "question": [
+        { "language": "en", "string": "Which city has the most inhabitants?" }
+      ],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:City ; dbo:populationTotal ?pop } ORDER BY DESC(?pop) OFFSET 0 LIMIT 1"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Beinamar"
+        }
+      },
+      "entities": [],
+      "relations": [
+        { "URI": "http://dbpedia.org/ontology/city", "surface form": "city" },
+        {
+          "URI": "http://dbpedia.org/ontology/country",
+          "surface form": "inhabitants"
+        }
+      ]
+    },
+    {
+      "id": "245",
+      "question": [
+        { "language": "en", "string": "Which city has the least inhabitants?" }
+      ],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:City ; dbo:populationTotal ?pop } ORDER BY ASC(?pop) OFFSET 0 LIMIT 1"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Ambae_Island"
+        }
+      },
+      "entities": [],
+      "relations": [
+        { "URI": "http://dbpedia.org/ontology/city", "surface form": "city" },
+        {
+          "URI": "http://dbpedia.org/ontology/country",
+          "surface form": "inhabitants"
+        }
+      ]
+    },
+    {
+      "id": "246",
+      "question": [
+        {
+          "language": "en",
+          "string": "Give me all the TV shows with Neil Patrick Harris."
+        }
+      ],
+      "query": {
+        "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/TelevisionShow> ; <http://dbpedia.org/ontology/starring> <http://dbpedia.org/resource/Neil_Patrick_Harris> }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/The_Christmas_Blessing"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Tv_test_pattern",
+          "surface form": "TV"
+        },
+        {
+          "URI": "http://dbpedia.org/resource/Neil_Patrick_Harris",
+          "surface form": "Neil Patrick Harris"
+        }
+      ],
+      "relations": [
+        { "URI": "http://dbpedia.org/ontology/place", "surface form": "shows" }
+      ]
+    },
+    {
+      "id": "247",
+      "question": [
+        { "language": "en", "string": "Who wrote The Hunger Games?" }
+      ],
+      "query": {
+        "sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/The_Hunger_Games> <http://dbpedia.org/property/author> ?uri }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Suzanne_Collins"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/The_Hunger_Games",
+          "surface form": "The Hunger Games"
+        }
+      ],
+      "relations": [
+        { "URI": "http://dbpedia.org/property/author", "surface form": "wrote" }
+      ]
+    },
+    {
+      "id": "248",
+      "question": [
+        {
+          "language": "en",
+          "string": "Show a list of soccer clubs that play in the Bundesliga."
+        }
+      ],
+      "query": {
+        "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/SoccerClub> ; <http://dbpedia.org/ontology/league> <http://dbpedia.org/resource/Bundesliga> }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/1969\u201370_FC_Bayern_Munich_season"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Bundesliga",
+          "surface form": "Bundesliga"
+        }
+      ],
+      "relations": [
+        { "URI": "http://dbpedia.org/ontology/show", "surface form": "show" },
+        {
+          "URI": "http://dbpedia.org/ontology/clubsRecordGoalscorer",
+          "surface form": "soccer clubs"
+        },
+        { "URI": "http://dbpedia.org/ontology/team", "surface form": "play" }
+      ]
+    },
+    {
+      "id": "249",
+      "question": [
+        { "language": "en", "string": "What country is Mount Everest in?" }
+      ],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { res:Mount_Everest dbo:locatedInArea ?uri . ?uri rdf:type dbo:Country }"
+      },
+      "answers": {
+        "uri": { "type": "uri", "value": "http://dbpedia.org/resource/China" }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Mount_Everest",
+          "surface form": "Mount Everest"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/country",
+          "surface form": "country"
+        }
+      ]
+    },
+    {
+      "id": "250",
+      "question": [
+        { "language": "en", "string": "Who is the founder of Penguin Books?" }
+      ],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { res:Penguin_Books dbo:founder ?uri }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Allen_Lane"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Penguin_Books",
+          "surface form": "Penguin Books"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/founder",
+          "surface form": "founder"
+        }
+      ]
+    },
+    {
+      "id": "251",
+      "question": [
+        {
+          "language": "en",
+          "string": "Which programming languages influenced Javascript?"
+        }
+      ],
+      "query": {
+        "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/ProgrammingLanguage> ; <http://dbpedia.org/ontology/influenced> <http://dbpedia.org/resource/JavaScript> }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/CoffeeScript"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Syntax_(programming_languages)",
+          "surface form": "programming languages languages influenced Javascript"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/property/programming",
+          "surface form": "programming"
+        }
+      ]
+    },
+    {
+      "id": "252",
+      "question": [
+        {
+          "language": "en",
+          "string": "List all the musicals with music by Elton John."
+        }
+      ],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Musical ; dbo:musicBy res:Elton_John }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Aida_(musical)"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Elton_John",
+          "surface form": "Elton John"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/property/musicals",
+          "surface form": "musicals"
+        },
+        {
+          "URI": "http://dbpedia.org/ontology/musicalBand",
+          "surface form": "music"
+        }
+      ]
+    },
+    {
+      "id": "253",
+      "question": [
+        {
+          "language": "en",
+          "string": "Show me all the breweries in Australia."
+        }
+      ],
+      "query": {
+        "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Brewery> { ?uri <http://dbpedia.org/ontology/location> <http://dbpedia.org/resource/Australia> } UNION { ?uri <http://dbpedia.org/ontology/location> ?x . ?x <http://dbpedia.org/ontology/country> <http://dbpedia.org/resource/Australia> } }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Cascade_Brewery"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Palm_Breweries",
+          "surface form": "Breweries in Australia"
+        }
+      ],
+      "relations": [
+        { "URI": "http://dbpedia.org/ontology/show", "surface form": "show" }
+      ]
+    },
+    {
+      "id": "254",
+      "question": [
+        { "language": "en", "string": "How much did Pulp Fiction cost?" }
+      ],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?n WHERE { res:Pulp_Fiction dbo:budget ?n }"
+      },
+      "answers": {
+        "n": {
+          "type": "typed-literal",
+          "datatype": "http://dbpedia.org/datatype/usDollar",
+          "value": "8.0"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Pulp_Fiction",
+          "surface form": "Pulp Fiction"
+        }
+      ],
+      "relations": [
+        { "URI": "http://dbpedia.org/ontology/budget", "surface form": "cost" }
+      ]
+    },
+    {
+      "id": "255",
+      "question": [
+        { "language": "en", "string": "How many airlines are there?" }
+      ],
+      "query": {
+        "sparql": "SELECT (COUNT(DISTINCT ?uri) AS ?c) WHERE { ?uri a <http://dbpedia.org/ontology/Airline> }"
+      },
+      "answers": {
+        "c": {
+          "type": "typed-literal",
+          "datatype": "http://www.w3.org/2001/XMLSchema#integer",
+          "value": "4838"
+        }
+      },
+      "entities": [],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/icaoAirlineCode",
+          "surface form": "airlines"
+        }
+      ]
+    },
+    {
+      "id": "256",
+      "question": [
+        { "language": "en", "string": "Who played Agent Smith in Matrix?" }
+      ],
+      "query": {
+        "sparql": "PREFIX res: <http://dbpedia.org/resource/> PREFIX dbp: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Agent_Smith <http://dbpedia.org/ontology/portrayer> ?uri }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Jonathan_Groff"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Agent_Smith",
+          "surface form": "Agent Smith"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/portrayer",
+          "surface form": "played"
+        }
+      ]
+    },
+    {
+      "id": "257",
+      "question": [
+        {
+          "language": "en",
+          "string": "How much carbs does peanut butter have?"
+        }
+      ],
+      "query": {
+        "sparql": "SELECT DISTINCT ?carbs WHERE { <http://dbpedia.org/resource/Peanut_butter> <http://dbpedia.org/property/carbs> ?carbs }"
+      },
+      "answers": {
+        "carbs": {
+          "type": "typed-literal",
+          "datatype": "http://dbpedia.org/datatype/gram",
+          "value": "22.3"
+        }
+      },
+      "entities": [
+        { "URI": "http://dbpedia.org/resource/Carby", "surface form": "carbs" },
+        {
+          "URI": "http://dbpedia.org/resource/Peanut_butter",
+          "surface form": "peanut butter"
+        }
+      ],
+      "relations": []
+    },
+    {
+      "id": "258",
+      "question": [
+        { "language": "en", "string": "Which book has the most pages?" }
+      ],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Book ; dbo:numberOfPages ?n } ORDER BY DESC(?n) OFFSET 0 LIMIT 1"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/The_Tolkien_Reader"
+        }
+      },
+      "entities": [],
+      "relations": [
+        { "URI": "http://dbpedia.org/ontology/volume", "surface form": "book" }
+      ]
+    },
+    {
+      "id": "259",
+      "question": [
+        { "language": "en", "string": "Which bridges cross the Seine?" }
+      ],
+      "query": {
+        "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Bridge> ; <http://dbpedia.org/ontology/crosses> <http://dbpedia.org/resource/Seine> }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Viaduc_d'Austerlitz"
+        }
+      },
+      "entities": [
+        { "URI": "http://dbpedia.org/resource/Seine", "surface form": "Seine" }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/abstract",
+          "surface form": "bridges"
+        },
+        {
+          "URI": "http://dbpedia.org/ontology/network",
+          "surface form": "cross"
+        }
+      ]
+    },
+    {
+      "id": "260",
+      "question": [
+        { "language": "en", "string": "When did Dracula's creator die?" }
+      ],
+      "query": {
+        "sparql": "SELECT DISTINCT xsd:date(?date) WHERE { <http://dbpedia.org/resource/Count_Dracula> <http://dbpedia.org/ontology/creator> ?x . ?x <http://dbpedia.org/ontology/deathDate> ?date. }"
+      },
+      "answers": {
+        "callret-0": {
+          "type": "typed-literal",
+          "datatype": "http://www.w3.org/2001/XMLSchema#date",
+          "value": "1912-04-20"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Count_Dracula",
+          "surface form": "Dracula"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/property/producer",
+          "surface form": " creator"
+        },
+        {
+          "URI": "http://dbpedia.org/ontology/deathDate",
+          "surface form": "die"
+        }
+      ]
+    },
+    {
+      "id": "261",
+      "question": [
+        {
+          "language": "en",
+          "string": "What is the location of the Houses of Parliament?"
+        }
+      ],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT ?uri WHERE { res:Palace_of_Westminster dbo:location ?uri }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/United_Kingdom"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Palace_of_Westminster",
+          "surface form": "Houses of Parliament"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/location",
+          "surface form": "location"
+        }
+      ]
+    },
+    {
+      "id": "262",
+      "question": [
+        {
+          "language": "en",
+          "string": "Show me all English Gothic buildings in Kent."
+        }
+      ],
+      "query": {
+        "sparql": "SELECT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Building> ; <http://dbpedia.org/ontology/architecturalStyle> <http://dbpedia.org/resource/English_Gothic_architecture> ; <http://dbpedia.org/ontology/location> <http://dbpedia.org/resource/Kent> }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/All_Saints_Church,_Waldershare"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/English_Gothic_architecture",
+          "surface form": "English Gothic buildings in Kent"
+        }
+      ],
+      "relations": [
+        { "URI": "http://dbpedia.org/ontology/show", "surface form": "show" }
+      ]
+    },
+    {
+      "id": "263",
+      "question": [
+        {
+          "language": "en",
+          "string": "What airlines are part of the SkyTeam alliance?"
+        }
+      ],
+      "query": {
+        "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Airline> { ?uri <http://dbpedia.org/ontology/alliance> <http://dbpedia.org/resource/SkyTeam> } UNION { ?uri <http://dbpedia.org/ontology/Alliance> <http://dbpedia.org/resource/SkyTeam> } }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Alitalia"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/SkyTeam",
+          "surface form": "SkyTeam alliance"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/icaoAirlineCode",
+          "surface form": "airlines"
+        }
+      ]
+    },
+    {
+      "id": "264",
+      "question": [
+        {
+          "language": "en",
+          "string": "What is the total population of Melbourne, Florida?"
+        }
+      ],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> SELECT ?uri WHERE { <http://dbpedia.org/resource/Melbourne,_Florida> dbo:populationTotal ?uri }"
+      },
+      "answers": {
+        "uri": {
+          "type": "typed-literal",
+          "datatype": "http://www.w3.org/2001/XMLSchema#nonNegativeInteger",
+          "value": "84678"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Melbourne,_Florida",
+          "surface form": "Melbourne, Florida"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/populationTotal",
+          "surface form": "total population"
+        }
+      ]
+    },
+    {
+      "id": "265",
+      "question": [
+        { "language": "en", "string": "Which airports does Air China serve?" }
+      ],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Air_China dbo:targetAirport ?uri }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Hangzhou_Xiaoshan_International_Airport"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Air_China",
+          "surface form": "Air China"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/hubAirport",
+          "surface form": "airports"
+        },
+        { "URI": "http://dbpedia.org/property/row", "surface form": "serve" }
+      ]
+    },
+    {
+      "id": "266",
+      "question": [
+        { "language": "en", "string": "In which year was Rachel Stevens born?" }
+      ],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Rachel_Stevens dbo:birthYear ?uri }"
+      },
+      "answers": {
+        "uri": {
+          "type": "typed-literal",
+          "datatype": "http://www.w3.org/2001/XMLSchema#gYear",
+          "value": "1978"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Rachel_Stevens",
+          "surface form": "Rachel Stevens"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/birthYear",
+          "surface form": "born"
+        }
+      ]
+    },
+    {
+      "id": "267",
+      "question": [
+        { "language": "en", "string": "Where was JFK assassinated?" }
+      ],
+      "query": {
+        "sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/John_F._Kennedy> <http://dbpedia.org/ontology/deathPlace> ?uri }"
+      },
+      "answers": {
+        "uri": { "type": "uri", "value": "http://dbpedia.org/resource/Dallas" }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/John_F._Kennedy_International_Airport",
+          "surface form": "JFK"
+        },
+        {
+          "URI": "http://dbpedia.org/resource/Assassinated_Catholic_priests_in_Guatemala",
+          "surface form": "Assassinated"
+        }
+      ],
+      "relations": []
+    },
+    {
+      "id": "268",
+      "question": [
+        {
+          "language": "en",
+          "string": "How many politicians graduated from Columbia University?"
+        }
+      ],
+      "query": {
+        "sparql": "SELECT (COUNT(DISTINCT ?uri) AS ?c) WHERE { ?uri <http://dbpedia.org/ontology/profession> <http://dbpedia.org/resource/Politician> ; <http://dbpedia.org/ontology/almaMater> <http://dbpedia.org/resource/Columbia_University> }"
+      },
+      "answers": {
+        "c": {
+          "type": "typed-literal",
+          "datatype": "http://www.w3.org/2001/XMLSchema#integer",
+          "value": "10"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Politicians_of_The_Wire",
+          "surface form": "politicians"
+        },
+        {
+          "URI": "http://dbpedia.org/resource/Columbia_University",
+          "surface form": "Columbia University"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/effectiveRadiatedPower",
+          "surface form": "graduated"
+        }
+      ]
+    },
+    {
+      "id": "269",
+      "question": [
+        { "language": "en", "string": "What is the highest volcano in Africa?" }
+      ],
+      "query": {
+        "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Volcano> ; <http://dbpedia.org/ontology/locatedInArea> ?area . ?area dct:subject dbc:Countries_in_Africa . ?uri <http://dbpedia.org/ontology/elevation> ?elevation } ORDER BY DESC(?elevation) LIMIT 1"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Mount_Kenya"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Africa",
+          "surface form": "Africa"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/head",
+          "surface form": "highest volcano"
+        }
+      ]
+    },
+    {
+      "id": "270",
+      "question": [
+        {
+          "language": "en",
+          "string": "What are the specialities of the UNC Health Care?"
+        }
+      ],
+      "query": {
+        "sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/UNC_Health_Care> <http://dbpedia.org/property/speciality> ?uri }"
+      },
+      "answers": {
+        "uri": { "type": "uri", "value": "http://dbpedia.org/resource/Cancer" }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Traditional_Specialities_Guaranteed",
+          "surface form": "specialities"
+        },
+        { "URI": "http://dbpedia.org/resource/UNC", "surface form": "UNC" },
+        {
+          "URI": "http://dbpedia.org/resource/Health_care",
+          "surface form": "Health Care"
+        }
+      ],
+      "relations": []
+    },
+    {
+      "id": "271",
+      "question": [
+        {
+          "language": "en",
+          "string": "From which region is the Melon de Bourgogne?"
+        }
+      ],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Melon_de_Bourgogne dbo:wineRegion ?uri }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Washington_(state)"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Melon_de_Bourgogne",
+          "surface form": "Melon de Bourgogne"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/region",
+          "surface form": "region"
+        }
+      ]
+    },
+    {
+      "id": "272",
+      "question": [
+        { "language": "en", "string": "Who was influenced by Socrates?" }
+      ],
+      "query": {
+        "sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/influencedBy> <http://dbpedia.org/resource/Socrates> }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Arcesilaus"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Socrates",
+          "surface form": "Socrates"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/influenced",
+          "surface form": "influenced"
+        }
+      ]
+    },
+    {
+      "id": "273",
+      "question": [
+        { "language": "en", "string": "Who was president of Pakistan in 1978?" }
+      ],
+      "query": {
+        "sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/title> <http://dbpedia.org/resource/President_of_Pakistan> ; <http://dbpedia.org/property/years> 1978 }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Muhammad_Zia-ul-Haq"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Pakistan",
+          "surface form": "Pakistan"
+        },
+        { "URI": "http://dbpedia.org/resource/1978", "surface form": "1978" }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/president",
+          "surface form": "president"
+        }
+      ]
+    },
+    {
+      "id": "274",
+      "question": [
+        {
+          "language": "en",
+          "string": "Give me English actors starring in Lovesick."
+        }
+      ],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Lovesick_(1983_film)> dbo:starring ?uri . ?uri dbo:birthPlace ?city . ?city dbo:country <http://dbpedia.org/resource/United_Kingdom> }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Dudley_Moore"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/The_Actors",
+          "surface form": "English actors"
+        },
+        {
+          "URI": "http://dbpedia.org/resource/Lovesick_(Priscilla_Renea_song)",
+          "surface form": "Lovesick"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/starring",
+          "surface form": "starring"
+        }
+      ]
+    },
+    {
+      "id": "275",
+      "question": [
+        { "language": "en", "string": "Give me all types of eating disorders." }
+      ],
+      "query": {
+        "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/class/yago/WikicatEatingDisorders> }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Disordered_eating"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Disorders_of_consciousness",
+          "surface form": "disorders"
+        }
+      ],
+      "relations": [
+        { "URI": "http://dbpedia.org/property/type", "surface form": "types" },
+        { "URI": "http://dbpedia.org/ontology/house", "surface form": "eating" }
+      ]
+    },
+    {
+      "id": "276",
+      "question": [
+        { "language": "en", "string": "Who was married to president Chirac?" }
+      ],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Jacques_Chirac dbo:spouse ?uri }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Bernadette_Chirac"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Jacques_Chirac",
+          "surface form": "president Chirac"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/spouse",
+          "surface form": "married"
+        }
+      ]
+    },
+    {
+      "id": "277",
+      "question": [
+        {
+          "language": "en",
+          "string": "What is the largest metropolitan area in Washington state?"
+        }
+      ],
+      "query": {
+        "sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Washington_(state)> <http://dbpedia.org/property/largestmetro> ?uri }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Seattle_metropolitan_area"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Metropolitan_area",
+          "surface form": "largest metropolitan area"
+        },
+        {
+          "URI": "http://dbpedia.org/resource/Washington",
+          "surface form": "Washington"
+        }
+      ],
+      "relations": []
+    },
+    {
+      "id": "278",
+      "question": [
+        {
+          "language": "en",
+          "string": "Where in France is sparkling wine produced?"
+        }
+      ],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { ?uri dbo:wineProduced res:Sparkling_wine ; dbo:location res:France }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Loire_Valley_(wine)"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Sparkling_wines",
+          "surface form": "sparkling wine"
+        },
+        {
+          "URI": "http://dbpedia.org/resource/France",
+          "surface form": "France"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/parkingInformation",
+          "surface form": "sparkling"
+        },
+        {
+          "URI": "http://dbpedia.org/ontology/wineRegion",
+          "surface form": "wine produced"
+        }
+      ]
+    },
+    {
+      "id": "279",
+      "question": [
+        { "language": "en", "string": "Where did Hillel Slovak die?" }
+      ],
+      "query": {
+        "sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Hillel_Slovak> <http://dbpedia.org/ontology/deathPlace> ?uri }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/California"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Hillel_Slovak",
+          "surface form": "Hillel Slovak"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/deathDate",
+          "surface form": "die"
+        }
+      ]
+    },
+    {
+      "id": "280",
+      "question": [
+        {
+          "language": "en",
+          "string": "What is the timezone in San Pedro de Atacama?"
+        }
+      ],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:San_Pedro_de_Atacama dbo:timeZone ?uri }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Time_in_Chile"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/San_Pedro_de_Atacama",
+          "surface form": "San Pedro de Atacama"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/timeZone",
+          "surface form": "timezone"
+        }
+      ]
+    },
+    {
+      "id": "281",
+      "question": [
+        {
+          "language": "en",
+          "string": "In which city does the Chile Route 68 end?"
+        }
+      ],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Chile_Route_68 dbo:routeEnd ?uri }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Valpara\u00edso"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Chile_Route_68",
+          "surface form": "Chile Route 68 end"
+        }
+      ],
+      "relations": [
+        { "URI": "http://dbpedia.org/ontology/city", "surface form": "city" }
+      ]
+    },
+    {
+      "id": "282",
+      "question": [
+        {
+          "language": "en",
+          "string": "Who was the doctoral supervisor of Albert Einstein?"
+        }
+      ],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Albert_Einstein dbo:doctoralAdvisor ?uri }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Alfred_Kleiner"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Albert_Einstein",
+          "surface form": "Albert Einstein"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/doctoralAdvisor",
+          "surface form": "doctoral supervisor"
+        }
+      ]
+    },
+    {
+      "id": "283",
+      "question": [
+        { "language": "en", "string": "Who wrote the song Hotel California?" }
+      ],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Hotel_California dbo:writer ?uri }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Glenn_Frey"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Hotel_California",
+          "surface form": "song Hotel California"
+        }
+      ],
+      "relations": [
+        { "URI": "http://dbpedia.org/ontology/writer", "surface form": "wrote" }
+      ]
+    },
+    {
+      "id": "284",
+      "question": [
+        { "language": "en", "string": "Who was on the Apollo 11 mission?" }
+      ],
+      "query": {
+        "sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Apollo_11> <http://dbpedia.org/property/crewMembers> ?uri }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Buzz_Aldrin"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Apollo_11",
+          "surface form": "Apollo 11 mission"
+        }
+      ],
+      "relations": []
+    },
+    {
+      "id": "285",
+      "question": [
+        { "language": "en", "string": "What is in a chocolate chip cookie?" }
+      ],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Chocolate_chip_cookie dbo:ingredient ?uri }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Chocolate_chip"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Chocolate_chip_cookie",
+          "surface form": "chocolate chip cookie"
+        }
+      ],
+      "relations": []
+    },
+    {
+      "id": "286",
+      "question": [
+        {
+          "language": "en",
+          "string": "What is the atmosphere of the Moon composed of?"
+        }
+      ],
+      "query": {
+        "sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Moon> <http://dbpedia.org/property/atmosphereComposition> ?uri }"
+      },
+      "answers": {
+        "uri": { "type": "uri", "value": "http://dbpedia.org/resource/Argon" }
+      },
+      "entities": [
+        { "URI": "http://dbpedia.org/resource/Moon", "surface form": "Moon" }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/property/background",
+          "surface form": "atmosphere"
+        },
+        {
+          "URI": "http://dbpedia.org/ontology/musicComposer",
+          "surface form": "composed"
+        }
+      ]
+    },
+    {
+      "id": "287",
+      "question": [
+        {
+          "language": "en",
+          "string": "How many movies did Park Chan-wook direct?"
+        }
+      ],
+      "query": {
+        "sparql": "SELECT COUNT(DISTINCT ?uri AS ?uri) WHERE { ?uri <http://dbpedia.org/ontology/director> <http://dbpedia.org/resource/Park_Chan-wook> . }"
+      },
+      "answers": {
+        "callret-0": {
+          "type": "typed-literal",
+          "datatype": "http://www.w3.org/2001/XMLSchema#integer",
+          "value": "17"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Park_Chan-wook",
+          "surface form": "Park Chan-wook direct"
+        }
+      ],
+      "relations": [
+        { "URI": "http://dbpedia.org/ontology/film", "surface form": "movies" }
+      ]
+    },
+    {
+      "id": "288",
+      "question": [
+        { "language": "en", "string": "Who are the developers of DBpedia?" }
+      ],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:DBpedia dbo:developer ?uri }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/OpenLink_Software"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/DBpedia",
+          "surface form": "DBpedia"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/developer",
+          "surface form": "developers"
+        }
+      ]
+    },
+    {
+      "id": "289",
+      "question": [
+        {
+          "language": "en",
+          "string": "Which Indian company has the most employees?"
+        }
+      ],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Company ; dbo:location res:India ; dbo:numberOfEmployees ?n } ORDER BY DESC(?n) OFFSET 0 LIMIT 1"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Ministry_of_Railways_(India)"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/India",
+          "surface form": "Indian company"
+        },
+        {
+          "URI": "http://dbpedia.org/resource/SPIC_(Indian_company)",
+          "surface form": "Indian company"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/numberOfEmployees",
+          "surface form": "employees"
+        },
+        { "URI": "http://dbpedia.org/ontology/country", "surface form": "" }
+      ]
+    },
+    {
+      "id": "290",
+      "question": [
+        { "language": "en", "string": "Where does Piccadilly start?" }
+      ],
+      "query": {
+        "sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/routeStart> <http://dbpedia.org/resource/Piccadilly> }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Dover_Street"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Piccadilly",
+          "surface form": "Piccadilly"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/routeStart",
+          "surface form": "start"
+        }
+      ]
+    },
+    {
+      "id": "291",
+      "question": [
+        { "language": "en", "string": "What is the capital of Cameroon?" }
+      ],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Cameroon dbo:capital ?uri }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Yaound\u00e9"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Cameroon",
+          "surface form": "Cameroon"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/capital",
+          "surface form": "capital"
+        }
+      ]
+    },
+    {
+      "id": "292",
+      "question": [
+        {
+          "language": "en",
+          "string": "When did the Boston Tea Party take place?"
+        }
+      ],
+      "query": {
+        "sparql": "SELECT DISTINCT ?d WHERE { <http://dbpedia.org/resource/Boston_Tea_Party> <http://dbpedia.org/property/date> ?d }"
+      },
+      "answers": {
+        "d": {
+          "type": "typed-literal",
+          "datatype": "http://www.w3.org/2001/XMLSchema#date",
+          "value": "1773-12-16"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Boston_Tea_Party",
+          "surface form": "Boston Tea Party"
+        }
+      ],
+      "relations": [
+        { "URI": "http://dbpedia.org/ontology/place", "surface form": "place" }
+      ]
+    },
+    {
+      "id": "293",
+      "question": [
+        { "language": "en", "string": "Who played Gus Fring in Breaking Bad?" }
+      ],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Gus_Fring dbo:portrayer ?uri }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Giancarlo_Esposito"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Gus_Fring",
+          "surface form": "Gus Fring"
+        },
+        {
+          "URI": "http://dbpedia.org/resource/Breaking_Bad",
+          "surface form": "Breaking Bad"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/portrayer",
+          "surface form": "played"
+        }
+      ]
+    },
+    {
+      "id": "294",
+      "question": [{ "language": "en", "string": "Who wrote Harry Potter?" }],
+      "query": {
+        "sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Harry_Potter> <http://dbpedia.org/property/author> ?uri }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/J._K._Rowling"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Harry_Potter",
+          "surface form": "Harry Potter"
+        }
+      ],
+      "relations": [
+        { "URI": "http://dbpedia.org/property/author", "surface form": "wrote" }
+      ]
+    },
+    {
+      "id": "295",
+      "question": [
+        { "language": "en", "string": "Which actors play in Big Bang Theory?" }
+      ],
+      "query": {
+        "sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/The_Big_Bang_Theory> <http://dbpedia.org/ontology/starring> ?uri }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Kevin_Sussman"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/The_Big_Bang_Theory",
+          "surface form": "Big Bang Theory"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/background",
+          "surface form": "actors"
+        },
+        {
+          "URI": "http://dbpedia.org/ontology/starring",
+          "surface form": "play"
+        }
+      ]
+    },
+    {
+      "id": "296",
+      "question": [
+        {
+          "language": "en",
+          "string": "What is the largest country in the world?"
+        }
+      ],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Country ; dbo:areaTotal ?n } ORDER BY DESC(?n) OFFSET 0 LIMIT 1"
+      },
+      "answers": {
+        "uri": { "type": "uri", "value": "http://dbpedia.org/resource/Asia" }
+      },
+      "entities": [],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/areaTotal",
+          "surface form": "largest country"
+        }
+      ]
+    },
+    {
+      "id": "297",
+      "question": [{ "language": "en", "string": "Who created Family Guy?" }],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Family_Guy dbo:creator ?uri }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Seth_MacFarlane"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Family_Guy",
+          "surface form": "Family Guy"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/creator",
+          "surface form": "created"
+        }
+      ]
+    },
+    {
+      "id": "298",
+      "question": [
+        {
+          "language": "en",
+          "string": "To which party does the mayor of Paris belong?"
+        }
+      ],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Paris dbo:mayor ?x . ?x dbo:party ?uri }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Socialist_Party_(France)"
+        }
+      },
+      "entities": [
+        { "URI": "http://dbpedia.org/resource/Paris", "surface form": "Paris" }
+      ],
+      "relations": [
+        { "URI": "http://dbpedia.org/ontology/party", "surface form": "party" },
+        { "URI": "http://dbpedia.org/ontology/mayor", "surface form": "mayor" },
+        { "URI": "http://dbpedia.org/ontology/date", "surface form": "belong" }
+      ]
+    },
+    {
+      "id": "299",
+      "question": [
+        {
+          "language": "en",
+          "string": "Who composed the soundtrack for Cameron's Titanic?"
+        }
+      ],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Titanic_(1997_film)> dbo:musicComposer ?uri }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/James_Horner"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Soundtrack_for_a_Revolution",
+          "surface form": "soundtrack"
+        },
+        {
+          "URI": "http://dbpedia.org/resource/Cameron",
+          "surface form": "Cameron"
+        },
+        {
+          "URI": "http://dbpedia.org/resource/Titanic_(1953_film)",
+          "surface form": " Titanic"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/musicComposer",
+          "surface form": "composed"
+        }
+      ]
+    },
+    {
+      "id": "300",
+      "question": [
+        {
+          "language": "en",
+          "string": "When did Boris Becker end his active career?"
+        }
+      ],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?d WHERE { res:Boris_Becker dbo:activeYearsEndDate ?d }"
+      },
+      "answers": {
+        "d": {
+          "type": "typed-literal",
+          "datatype": "http://www.w3.org/2001/XMLSchema#date",
+          "value": "1999-06-25"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Boris_Becker",
+          "surface form": "Boris Becker"
+        }
+      ],
+      "relations": [
+        { "URI": "http://dbpedia.org/ontology/result", "surface form": "end" },
+        {
+          "URI": "http://dbpedia.org/ontology/careerPrizeMoney",
+          "surface form": "active career"
+        }
+      ]
+    },
+    {
+      "id": "301",
+      "question": [
+        {
+          "language": "en",
+          "string": "Show me all basketball players that are higher than 2 meters."
+        }
+      ],
+      "query": {
+        "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/BasketballPlayer> ; <http://dbpedia.org/ontology/height> ?n FILTER ( ?n > 2.0 ) }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Alize_Johnson"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/National_Basketball_Players_Association",
+          "surface form": "basketball players"
+        }
+      ],
+      "relations": [
+        { "URI": "http://dbpedia.org/ontology/show", "surface form": "show" },
+        {
+          "URI": "http://dbpedia.org/ontology/seniority",
+          "surface form": "higher"
+        },
+        {
+          "URI": "http://dbpedia.org/ontology/iso6392Code",
+          "surface form": "2 meters"
+        }
+      ]
+    },
+    {
+      "id": "302",
+      "question": [{ "language": "en", "string": "Who developed Slack?" }],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?uri dbo:product <http://dbpedia.org/resource/Slack_(software)> }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Slack_Technologies"
+        }
+      },
+      "entities": [
+        { "URI": "http://dbpedia.org/resource/Slack", "surface form": "Slack" }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/developer",
+          "surface form": "developed"
+        }
+      ]
+    },
+    {
+      "id": "303",
+      "question": [
+        {
+          "language": "en",
+          "string": "How many grand-children did Jacques Cousteau have?"
+        }
+      ],
+      "query": {
+        "sparql": "SELECT COUNT(DISTINCT ?y AS ?y) WHERE { <http://dbpedia.org/resource/Jacques_Cousteau> <http://dbpedia.org/ontology/child> ?x . ?x <http://dbpedia.org/ontology/child> ?y . }"
+      },
+      "answers": {
+        "callret-0": {
+          "type": "typed-literal",
+          "datatype": "http://www.w3.org/2001/XMLSchema#integer",
+          "value": "4"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Jacques_Cousteau",
+          "surface form": "Jacques Cousteau"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/child",
+          "surface form": "grand-children"
+        }
+      ]
+    },
+    {
+      "id": "304",
+      "question": [
+        {
+          "language": "en",
+          "string": "Which films did Stanley Kubrick direct?"
+        }
+      ],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { ?uri dbo:director res:Stanley_Kubrick }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Day_of_the_Fight"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Stanley_Kubrick",
+          "surface form": "Stanley Kubrick direct"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/numberOfFilms",
+          "surface form": "films"
+        }
+      ]
+    },
+    {
+      "id": "305",
+      "question": [
+        {
+          "language": "en",
+          "string": "How many seats does the home stadium of FC Porto have?"
+        }
+      ],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbp: <http://dbpedia.org/property/> PREFIX dbr: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> PREFIX db: <http://dbpedia.org/> SELECT ?capacity WHERE { { dbr:FC_Porto dbo:ground ?ground . ?ground dbo:capacity ?capacity } UNION { dbr:FC_Porto dbo:ground ?ground . ?ground dbp:capacity ?capacity } }"
+      },
+      "answers": {
+        "capacity": {
+          "type": "typed-literal",
+          "datatype": "http://www.w3.org/2001/XMLSchema#integer",
+          "value": "50035"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/FC_Porto",
+          "surface form": "stadium of FC Porto"
+        }
+      ],
+      "relations": [
+        { "URI": "http://dbpedia.org/property/seat", "surface form": "seats" },
+        {
+          "URI": "http://dbpedia.org/ontology/ground",
+          "surface form": "home stadium"
+        }
+      ]
+    },
+    {
+      "id": "306",
+      "question": [
+        {
+          "language": "en",
+          "string": "Show me all books in Asimov's Foundation series."
+        }
+      ],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { ?uri dbo:series res:Foundation_series }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/R._Daneel_Olivaw"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Asimov_(disambiguation)",
+          "surface form": "Asimov"
+        },
+        {
+          "URI": "http://dbpedia.org/resource/Foundation_series",
+          "surface form": " Foundation series"
+        }
+      ],
+      "relations": [
+        { "URI": "http://dbpedia.org/ontology/show", "surface form": "show" },
+        { "URI": "http://dbpedia.org/property/books", "surface form": "books" }
+      ]
+    },
+    {
+      "id": "307",
+      "question": [
+        {
+          "language": "en",
+          "string": "Which movies star both Liz Taylor and Richard Burton?"
+        }
+      ],
+      "query": {
+        "sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/starring> <http://dbpedia.org/resource/Elizabeth_Taylor> ; <http://dbpedia.org/ontology/starring> <http://dbpedia.org/resource/Richard_Burton> }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Divorce_His,_Divorce_Hers"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Liz:_The_Elizabeth_Taylor_Story",
+          "surface form": "Liz Taylor"
+        },
+        {
+          "URI": "http://dbpedia.org/resource/Richard_Burton",
+          "surface form": "Richard Burton"
+        }
+      ],
+      "relations": [
+        { "URI": "http://dbpedia.org/ontology/film", "surface form": "movies" },
+        { "URI": "http://dbpedia.org/property/name", "surface form": "star" }
+      ]
+    },
+    {
+      "id": "308",
+      "question": [
+        {
+          "language": "en",
+          "string": "In which city are the headquarters of the United Nations?"
+        }
+      ],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { res:Headquarters_of_the_United_Nations dbo:location ?uri . ?uri rdf:type dbo:City }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/New_York_City"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Headquarters_of_the_United_Nations",
+          "surface form": "headquarters of the United Nations"
+        }
+      ],
+      "relations": [
+        { "URI": "http://dbpedia.org/ontology/city", "surface form": "city" },
+        {
+          "URI": "http://dbpedia.org/ontology/headquarter",
+          "surface form": "headquarters"
+        }
+      ]
+    },
+    {
+      "id": "309",
+      "question": [
+        {
+          "language": "en",
+          "string": "In which city was the president of Montenegro born?"
+        }
+      ],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/title> dbr:President_of_Montenegro ; dbo:birthPlace ?uri . ?uri dbo:type dbr:Capital_city }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Belgrade"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Montenegro",
+          "surface form": "Montenegro"
+        }
+      ],
+      "relations": [
+        { "URI": "http://dbpedia.org/ontology/city", "surface form": "city" },
+        {
+          "URI": "http://dbpedia.org/ontology/president",
+          "surface form": "president"
+        },
+        {
+          "URI": "http://dbpedia.org/ontology/birthPlace",
+          "surface form": "born"
+        }
+      ]
+    },
+    {
+      "id": "310",
+      "question": [
+        { "language": "en", "string": "Which writers studied in Istanbul?" }
+      ],
+      "query": {
+        "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Writer> { ?uri <http://dbpedia.org/ontology/almaMater> ?x } UNION { ?uri <http://dbpedia.org/ontology/education> ?x } { ?x <http://dbpedia.org/ontology/city> <http://dbpedia.org/resource/Istanbul> } UNION { ?x <http://dbpedia.org/property/city> <http://dbpedia.org/resource/Istanbul> } }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Vedat_T\u00fcrkali"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Istanbul",
+          "surface form": "Istanbul"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/writer",
+          "surface form": "writers"
+        },
+        {
+          "URI": "http://dbpedia.org/ontology/office",
+          "surface form": "studied"
+        }
+      ]
+    },
+    {
+      "id": "311",
+      "question": [
+        { "language": "en", "string": "Who is the mayor of Paris?" }
+      ],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Paris dbo:mayor ?uri }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Anne_Hidalgo"
+        }
+      },
+      "entities": [
+        { "URI": "http://dbpedia.org/resource/Paris", "surface form": "Paris" }
+      ],
+      "relations": [
+        { "URI": "http://dbpedia.org/ontology/mayor", "surface form": "mayor" }
+      ]
+    },
+    {
+      "id": "312",
+      "question": [
+        { "language": "en", "string": "What is the longest river in China?" }
+      ],
+      "query": {
+        "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/River> ; <http://dbpedia.org/ontology/country> <http://dbpedia.org/resource/China> ; <http://dbpedia.org/property/length> ?l } ORDER BY DESC(?l) OFFSET 0 LIMIT 1"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Jin_River_(Sichuan)"
+        }
+      },
+      "entities": [
+        { "URI": "http://dbpedia.org/resource/China", "surface form": "China" }
+      ],
+      "relations": [
+        { "URI": "http://dbpedia.org/ontology/river", "surface form": "river" }
+      ]
+    },
+    {
+      "id": "313",
+      "question": [{ "language": "en", "string": "Who discovered Ceres?" }],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Ceres_(dwarf_planet)> dbo:discoverer ?uri }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Giuseppe_Piazzi"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Ceres_(dwarf_planet)",
+          "surface form": "Ceres"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/discoverer",
+          "surface form": "discovered"
+        }
+      ]
+    },
+    {
+      "id": "314",
+      "question": [
+        {
+          "language": "en",
+          "string": "Who is the host of the BBC Wildlife Specials?"
+        }
+      ],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:BBC_Wildlife_Specials dbo:presenter ?uri }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/David_Attenborough"
+        }
+      },
+      "entities": [
+        { "URI": "http://dbpedia.org/resource/BBC", "surface form": "BBC" },
+        {
+          "URI": "http://dbpedia.org/resource/BBC_Wildlife_Specials",
+          "surface form": "Wildlife Specials"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/presenter",
+          "surface form": "host"
+        }
+      ]
+    },
+    {
+      "id": "315",
+      "question": [
+        { "language": "en", "string": "How many moons does Mars have?" }
+      ],
+      "query": {
+        "sparql": "SELECT DISTINCT ?n WHERE { <http://dbpedia.org/resource/Mars> <http://dbpedia.org/property/satellites> ?n }"
+      },
+      "answers": {
+        "n": {
+          "type": "typed-literal",
+          "datatype": "http://www.w3.org/2001/XMLSchema#integer",
+          "value": "2"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/7805_Moons",
+          "surface form": "moons"
+        },
+        { "URI": "http://dbpedia.org/resource/Mars", "surface form": "Mars" }
+      ],
+      "relations": []
+    },
+    {
+      "id": "316",
+      "question": [
+        { "language": "en", "string": "What was the first Queen album?" }
+      ],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Album ; dbo:artist <http://dbpedia.org/resource/Queen_(band)> ; dbo:releaseDate ?d } ORDER BY ASC(?d) OFFSET 0 LIMIT 1"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Seven_Seas_of_Rhye"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Queen_(Queen_album)",
+          "surface form": "Queen album"
+        }
+      ],
+      "relations": []
+    },
+    {
+      "id": "317",
+      "question": [
+        {
+          "language": "en",
+          "string": "Give me a list of all Canadians that reside in the U.S."
+        }
+      ],
+      "query": {
+        "sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/birthPlace> <http://dbpedia.org/resource/Canada> . ?uri <http://dbpedia.org/ontology/residence> <http://dbpedia.org/resource/United_States> . } "
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Glenn_Michibata"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Canadians",
+          "surface form": "Canadians"
+        },
+        {
+          "URI": "http://dbpedia.org/resource/United_States",
+          "surface form": "US"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/residence",
+          "surface form": "reside"
+        }
+      ]
+    },
+    {
+      "id": "318",
+      "question": [
+        { "language": "en", "string": "Where is Syngman Rhee buried?" }
+      ],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Syngman_Rhee dbo:restingPlace ?uri }"
+      },
+      "answers": {
+        "uri": { "type": "uri", "value": "http://dbpedia.org/resource/Seoul" }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Syngman_Rhee",
+          "surface form": "Syngman Rhee"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/restingPlace",
+          "surface form": "buried"
+        }
+      ]
+    },
+    {
+      "id": "319",
+      "question": [
+        {
+          "language": "en",
+          "string": "In which countries do people speak Japanese?"
+        }
+      ],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Country ; dbo:language res:Japanese_language }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Taiwan_under_Japanese_rule"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Countries_of_the_United_Kingdom",
+          "surface form": "countries"
+        },
+        {
+          "URI": "http://dbpedia.org/resource/Japan",
+          "surface form": "Japanese"
+        },
+        {
+          "URI": "http://dbpedia.org/resource/Japanese",
+          "surface form": "Japanese"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/language",
+          "surface form": "speak"
+        },
+        { "URI": "http://dbpedia.org/ontology/country", "surface form": "" },
+        { "URI": "http://dbpedia.org/ontology/country", "surface form": "" }
+      ]
+    },
+    {
+      "id": "320",
+      "question": [
+        { "language": "en", "string": "When did the Dodo become extinct?" }
+      ],
+      "query": {
+        "sparql": "SELECT DISTINCT ?s WHERE { <http://dbpedia.org/resource/Dodo> <http://dbpedia.org/property/extinct> ?s . } "
+      },
+      "answers": {
+        "s": {
+          "type": "typed-literal",
+          "datatype": "http://www.w3.org/2001/XMLSchema#integer",
+          "value": "1662"
+        }
+      },
+      "entities": [
+        { "URI": "http://dbpedia.org/resource/Dodo", "surface form": "Dodo" }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/abstract",
+          "surface form": "extinct"
+        }
+      ]
+    },
+    {
+      "id": "321",
+      "question": [{ "language": "en", "string": "Show me all Czech movies." }],
+      "query": {
+        "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Film> ; <http://dbpedia.org/ontology/country> <http://dbpedia.org/resource/Czech_Republic> }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Boredom_in_Brno"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Czech_Republic",
+          "surface form": "Czech movies"
+        },
+        {
+          "URI": "http://dbpedia.org/resource/The_Movies_(film)",
+          "surface form": "Czech movies"
+        }
+      ],
+      "relations": [
+        { "URI": "http://dbpedia.org/ontology/show", "surface form": "show" },
+        { "URI": "http://dbpedia.org/ontology/country", "surface form": "" }
+      ]
+    },
+    {
+      "id": "322",
+      "question": [
+        { "language": "en", "string": "Which rivers flow into the North Sea?" }
+      ],
+      "query": {
+        "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/River> ; <http://dbpedia.org/ontology/riverMouth> <http://dbpedia.org/resource/North_Sea> }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Water_of_Cruden"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/North_Sea",
+          "surface form": "North Sea"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/operator",
+          "surface form": "rivers"
+        },
+        { "URI": "http://dbpedia.org/property/float", "surface form": "flow" }
+      ]
+    },
+    {
+      "id": "323",
+      "question": [
+        { "language": "en", "string": "When did Operation Overlord commence?" }
+      ],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?d WHERE { res:Operation_Overlord dbo:date ?d }"
+      },
+      "answers": {
+        "d": {
+          "type": "typed-literal",
+          "datatype": "http://www.w3.org/2001/XMLSchema#date",
+          "value": "1944-08-30"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Operation_Overlord",
+          "surface form": "Operation Overlord commence"
+        }
+      ],
+      "relations": [
+        { "URI": "http://dbpedia.org/ontology/date", "surface form": "when" }
+      ]
+    },
+    {
+      "id": "324",
+      "question": [
+        { "language": "en", "string": "Where do the Red Sox play?" }
+      ],
+      "query": {
+        "sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Boston_Red_Sox> <http://dbpedia.org/property/ballpark> ?uri }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Fenway_Park"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Boston_Red_Sox",
+          "surface form": "Red Sox"
+        }
+      ],
+      "relations": [
+        { "URI": "http://dbpedia.org/ontology/team", "surface form": "play" }
+      ]
+    },
+    {
+      "id": "325",
+      "question": [
+        { "language": "en", "string": "In which time zone is Rome?" }
+      ],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Rome dbo:timeZone ?uri }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Central_European_Time"
+        }
+      },
+      "entities": [
+        { "URI": "http://dbpedia.org/resource/Rome", "surface form": "Rome" }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/timeZone",
+          "surface form": "time zone"
+        }
+      ]
+    },
+    {
+      "id": "326",
+      "question": [
+        {
+          "language": "en",
+          "string": "Give me a list of all critically endangered birds."
+        }
+      ],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dct: <http://purl.org/dc/terms/> PREFIX dbc: <http://dbpedia.org/resource/Category:> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri ?p WHERE { ?uri rdf:type dbo:Bird { ?uri dbo:conservationStatus \"CR\" } UNION { ?uri dct:subject dbc:Critically_endangered_animals } }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Mara\u00f1\u00f3n_spinetail"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Endangered_Species_(H.A.W.K._album)",
+          "surface form": "Endangered"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/principal",
+          "surface form": "critically"
+        },
+        { "URI": "http://dbpedia.org/ontology/date", "surface form": "birds" }
+      ]
+    },
+    {
+      "id": "327",
+      "question": [
+        { "language": "en", "string": "How much did the Lego Movie cost?" }
+      ],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?n WHERE { res:The_Lego_Movie dbo:budget ?n }"
+      },
+      "answers": {
+        "n": {
+          "type": "typed-literal",
+          "datatype": "http://dbpedia.org/datatype/usDollar",
+          "value": "60.0"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/The_Lego_Movie",
+          "surface form": "Lego Movie"
+        }
+      ],
+      "relations": [
+        { "URI": "http://dbpedia.org/ontology/budget", "surface form": "cost" }
+      ]
+    },
+    {
+      "id": "328",
+      "question": [
+        {
+          "language": "en",
+          "string": "What was the original occupation of the inventor of Lego?"
+        }
+      ],
+      "query": {
+        "sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Lego> <http://dbpedia.org/property/inventor> ?x . ?x <http://dbpedia.org/property/occupation> ?uri . } "
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Carpenter"
+        }
+      },
+      "entities": [
+        { "URI": "http://dbpedia.org/resource/Lego", "surface form": "Lego" }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/industry",
+          "surface form": "original occupation"
+        },
+        {
+          "URI": "http://dbpedia.org/property/founder",
+          "surface form": "inventor"
+        }
+      ]
+    },
+    {
+      "id": "329",
+      "question": [
+        {
+          "language": "en",
+          "string": "Which countries have more than ten volcanoes?"
+        }
+      ],
+      "query": {
+        "sparql": "SELECT DISTINCT ?uri WHERE { ?x a <http://dbpedia.org/ontology/Volcano> ; <http://dbpedia.org/ontology/locatedInArea> ?uri . ?uri a <http://dbpedia.org/ontology/Country> } GROUP BY ?uri HAVING ( COUNT(?x) > 10 )"
+      },
+      "answers": {
+        "uri": { "type": "uri", "value": "http://dbpedia.org/resource/Japan" }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Countries_of_the_United_Kingdom",
+          "surface form": "countries"
+        },
+        {
+          "URI": "http://dbpedia.org/resource/Volcanoes_National_Park",
+          "surface form": "volcanoes"
+        }
+      ],
+      "relations": []
+    },
+    {
+      "id": "330",
+      "question": [
+        { "language": "en", "string": "Who wrote the Game of Thrones theme?" }
+      ],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Game_of_Thrones dbo:composer ?uri }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Ramin_Djawadi"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Game_of_Thrones",
+          "surface form": "Game of Thrones"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/composer",
+          "surface form": "wrote"
+        }
+      ]
+    },
+    {
+      "id": "331",
+      "question": [
+        {
+          "language": "en",
+          "string": "How many calories does a baguette have?"
+        }
+      ],
+      "query": {
+        "sparql": "SELECT DISTINCT ?n WHERE { <http://dbpedia.org/resource/Baguette> <http://dbpedia.org/property/calories> ?n }"
+      },
+      "answers": {
+        "n": {
+          "type": "typed-literal",
+          "datatype": "http://www.w3.org/2001/XMLSchema#integer",
+          "value": "263"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Baguette",
+          "surface form": "baguette"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/property/calories",
+          "surface form": "calories"
+        }
+      ]
+    },
+    {
+      "id": "332",
+      "question": [
+        { "language": "en", "string": "Which companies produce hovercrafts?" }
+      ],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Company ; dbo:product res:Hovercraft }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/HJ_Shipbuilding_&_Construction"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Companies_listed_on_the_New_York_Stock_Exchange_(J)",
+          "surface form": "companies"
+        },
+        {
+          "URI": "http://dbpedia.org/resource/Hovercraft",
+          "surface form": "Hovercrafts"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/producer",
+          "surface form": "produce"
+        }
+      ]
+    },
+    {
+      "id": "333",
+      "question": [
+        { "language": "en", "string": "How many emperors did China have?" }
+      ],
+      "query": {
+        "sparql": "SELECT COUNT(DISTINCT ?uri AS ?uri) WHERE { ?uri <http://dbpedia.org/property/title> <http://dbpedia.org/resource/Emperor_of_China> . }"
+      },
+      "answers": {
+        "callret-0": {
+          "type": "typed-literal",
+          "datatype": "http://www.w3.org/2001/XMLSchema#integer",
+          "value": "242"
+        }
+      },
+      "entities": [
+        { "URI": "http://dbpedia.org/resource/China", "surface form": "China" }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/leader",
+          "surface form": "emperors"
+        }
+      ]
+    },
+    {
+      "id": "334",
+      "question": [
+        {
+          "language": "en",
+          "string": "Show me hiking trails in the Grand Canyon where there's no danger of flash floods."
+        }
+      ],
+      "query": {
+        "sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/trailheads> <http://dbpedia.org/resource/Grand_Canyon> FILTER NOT EXISTS { ?uri <http://dbpedia.org/property/hazards> <http://dbpedia.org/resource/Flash_flood> } }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Bright_Angel_Trail"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Hiking",
+          "surface form": "hiking trails"
+        },
+        {
+          "URI": "http://dbpedia.org/resource/Grand_Canyon",
+          "surface form": "Grand Canyon"
+        }
+      ],
+      "relations": [
+        { "URI": "http://dbpedia.org/ontology/show", "surface form": "show" },
+        {
+          "URI": "http://dbpedia.org/ontology/leader",
+          "surface form": "danger"
+        },
+        {
+          "URI": "http://dbpedia.org/ontology/band",
+          "surface form": "flash floods"
+        }
+      ]
+    },
+    {
+      "id": "335",
+      "question": [
+        {
+          "language": "en",
+          "string": "In which ancient empire could you pay with cocoa beans?"
+        }
+      ],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { ?uri dbo:currency res:Cocoa_bean }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Aztec_Empire"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Cocoa_bean",
+          "surface form": "cocoa beans"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/country",
+          "surface form": "ancient empire"
+        },
+        { "URI": "http://dbpedia.org/ontology/currency", "surface form": "pay" }
+      ]
+    },
+    {
+      "id": "336",
+      "question": [
+        { "language": "en", "string": "How did Michael Jackson die?" }
+      ],
+      "query": {
+        "sparql": "SELECT DISTINCT ?s WHERE { <http://dbpedia.org/resource/Michael_Jackson> <http://dbpedia.org/property/deathCause> ?s }"
+      },
+      "answers": {
+        "s": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Death_of_Michael_Jackson"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Michael_Jackson",
+          "surface form": "Michael Jackson"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/deathDate",
+          "surface form": "die"
+        }
+      ]
+    },
+    {
+      "id": "337",
+      "question": [
+        {
+          "language": "en",
+          "string": "Which space probes were sent into orbit around the sun?"
+        }
+      ],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbc: <http://dbpedia.org/resource/Category:> PREFIX dct: <http://purl.org/dc/terms/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?s WHERE { ?s dct:subject dbc:Missions_to_the_Sun ; rdf:type ?type FILTER ( ?type IN (dbo:Satellite, dbo:ArtificialSatellite) ) }"
+      },
+      "answers": {
+        "s": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Geomagnetic_Field_Monitoring_Program_of_SUPARCO"
+        }
+      },
+      "entities": [],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/area",
+          "surface form": "space probes"
+        },
+        {
+          "URI": "http://dbpedia.org/ontology/course",
+          "surface form": "orbit"
+        },
+        { "URI": "http://dbpedia.org/ontology/year", "surface form": "sun" }
+      ]
+    },
+    {
+      "id": "338",
+      "question": [
+        { "language": "en", "string": "When was Coca Cola invented?" }
+      ],
+      "query": {
+        "sparql": "SELECT DISTINCT ?n WHERE { <http://dbpedia.org/resource/Coca-Cola> <http://dbpedia.org/property/introduced> ?n . } "
+      },
+      "answers": {
+        "n": {
+          "type": "typed-literal",
+          "datatype": "http://www.w3.org/2001/XMLSchema#date",
+          "value": "1886-05-08"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Coca-Cola",
+          "surface form": "Coca Cola"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/creator",
+          "surface form": "invented"
+        }
+      ]
+    },
+    {
+      "id": "339",
+      "question": [
+        { "language": "en", "string": "What is the biggest stadium in Spain?" }
+      ],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Stadium ; dbo:location res:Spain ; dbo:seatingCapacity ?n } ORDER BY DESC(?n) OFFSET 0 LIMIT 1"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Camp_Nou"
+        }
+      },
+      "entities": [
+        { "URI": "http://dbpedia.org/resource/Spain", "surface form": "Spain" }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/property/stadium",
+          "surface form": "biggest stadium"
+        }
+      ]
+    },
+    {
+      "id": "340",
+      "question": [
+        { "language": "en", "string": "On which day is Columbus Day?" }
+      ],
+      "query": {
+        "sparql": "SELECT DISTINCT ?d WHERE { <http://dbpedia.org/resource/Columbus_Day> <http://dbpedia.org/property/date> ?d . } "
+      },
+      "answers": {
+        "d": {
+          "type": "typed-literal",
+          "datatype": "http://www.w3.org/2001/XMLSchema#gMonthDay",
+          "value": "--10-12"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Columbus_Day",
+          "surface form": "Columbus Day"
+        }
+      ],
+      "relations": [
+        { "URI": "http://dbpedia.org/ontology/day", "surface form": "day" }
+      ]
+    },
+    {
+      "id": "341",
+      "question": [
+        {
+          "language": "en",
+          "string": "How short is the shortest active NBA player?"
+        }
+      ],
+      "query": {
+        "sparql": "SELECT DISTINCT ?n WHERE { ?x a <http://dbpedia.org/ontology/BasketballPlayer> ; <http://dbpedia.org/ontology/league> <http://dbpedia.org/resource/National_Basketball_Association> ; <http://dbpedia.org/ontology/height> ?n FILTER NOT EXISTS { ?x <http://dbpedia.org/ontology/activeYearsEndYear> ?d } } ORDER BY ASC(?n) OFFSET 0 LIMIT 1"
+      },
+      "answers": {
+        "n": {
+          "type": "typed-literal",
+          "datatype": "http://www.w3.org/2001/XMLSchema#double",
+          "value": "1.7526"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/National_Basketball_Association",
+          "surface form": "NBA"
+        },
+        {
+          "URI": "http://dbpedia.org/resource/Shortest_job_next",
+          "surface form": "shortest active  player"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/thumbnail",
+          "surface form": "short"
+        }
+      ]
+    },
+    {
+      "id": "342",
+      "question": [
+        {
+          "language": "en",
+          "string": "What form of government does Russia have?"
+        }
+      ],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Russia dbo:governmentType ?uri }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Federalism"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Russia",
+          "surface form": "Russia"
+        }
+      ],
+      "relations": [
+        { "URI": "http://dbpedia.org/ontology/type", "surface form": "form" },
+        {
+          "URI": "http://dbpedia.org/ontology/governmentType",
+          "surface form": "government"
+        }
+      ]
+    },
+    {
+      "id": "343",
+      "question": [
+        {
+          "language": "en",
+          "string": "What movies does Jesse Eisenberg play in?"
+        }
+      ],
+      "query": {
+        "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Film> ; <http://dbpedia.org/ontology/starring> <http://dbpedia.org/resource/Jesse_Eisenberg> }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/American_Ultra"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Jesse_Eisenberg",
+          "surface form": "Jesse Eisenberg"
+        }
+      ],
+      "relations": [
+        { "URI": "http://dbpedia.org/ontology/film", "surface form": "movies" },
+        {
+          "URI": "http://dbpedia.org/ontology/starring",
+          "surface form": "play"
+        }
+      ]
+    },
+    {
+      "id": "344",
+      "question": [
+        { "language": "en", "string": "Show me all museums in London." }
+      ],
+      "query": {
+        "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Museum> ; <http://dbpedia.org/ontology/location> <http://dbpedia.org/resource/London> }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Vagina_Museum"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Museums_in_Aalborg",
+          "surface form": "museums"
+        },
+        {
+          "URI": "http://dbpedia.org/resource/London",
+          "surface form": "London"
+        }
+      ],
+      "relations": [
+        { "URI": "http://dbpedia.org/ontology/show", "surface form": "show" }
+      ]
+    },
+    {
+      "id": "345",
+      "question": [
+        {
+          "language": "en",
+          "string": "Who is the coach of Ankara's ice hockey team?"
+        }
+      ],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { ?x dbo:city res:Ankara ; dbo:league res:Turkish_Ice_Hockey_First_League ; dbo:coach ?uri }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/\u0130brahim_O\u011fuz"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Ankara",
+          "surface form": "Ankara"
+        },
+        {
+          "URI": "http://dbpedia.org/resource/Greece_national_ice_hockey_team",
+          "surface form": " ice hockey team"
+        }
+      ],
+      "relations": [
+        { "URI": "http://dbpedia.org/ontology/coach", "surface form": "coach" }
+      ]
+    },
+    {
+      "id": "346",
+      "question": [
+        { "language": "en", "string": "Who is the son of Sonny and Cher?" }
+      ],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { ?uri dbo:parent res:Cher ; dbo:parent res:Sonny_Bono }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Chaz_Bono"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Cher",
+          "surface form": "Sonny and Cher"
+        },
+        {
+          "URI": "http://dbpedia.org/resource/Sonny_Bono",
+          "surface form": "Sonny and Cher"
+        }
+      ],
+      "relations": [
+        { "URI": "http://dbpedia.org/ontology/child", "surface form": "son" }
+      ]
+    },
+    {
+      "id": "347",
+      "question": [
+        { "language": "en", "string": "Show me Hemingway's autobiography." }
+      ],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { ?uri dbo:author res:Ernest_Hemingway ; dbo:literaryGenre res:Autobiography }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/A_Moveable_Feast"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Hemingway_House",
+          "surface form": "Hemingway"
+        },
+        {
+          "URI": "http://dbpedia.org/resource/Autobiography",
+          "surface form": " autobiography"
+        }
+      ],
+      "relations": [
+        { "URI": "http://dbpedia.org/ontology/show", "surface form": "show" }
+      ]
+    },
+    {
+      "id": "348",
+      "question": [
+        { "language": "en", "string": "What kind of music did Lou Reed play?" }
+      ],
+      "query": {
+        "sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Lou_Reed> <http://dbpedia.org/ontology/genre> ?uri }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Art_rock"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Lou_Reed",
+          "surface form": "Lou Reed"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/musicalBand",
+          "surface form": "music"
+        },
+        {
+          "URI": "http://dbpedia.org/ontology/starring",
+          "surface form": "play"
+        }
+      ]
+    },
+    {
+      "id": "349",
+      "question": [
+        {
+          "language": "en",
+          "string": "What languages do they speak in Pakistan?"
+        }
+      ],
+      "query": {
+        "sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Pakistan> <http://dbpedia.org/ontology/language> ?uri . }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Memoni_language"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Pakistan",
+          "surface form": "Pakistan"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/language",
+          "surface form": "languages"
+        },
+        {
+          "URI": "http://dbpedia.org/ontology/language",
+          "surface form": "speak"
+        }
+      ]
+    },
+    {
+      "id": "350",
+      "question": [
+        { "language": "en", "string": "What is Batman's real name?" }
+      ],
+      "query": {
+        "sparql": "SELECT DISTINCT ?label WHERE { <http://dbpedia.org/resource/Batman> <http://xmlns.com/foaf/0.1/name> ?label FILTER ( str(?label) != \"Batman\" ) }"
+      },
+      "answers": {
+        "label": { "type": "literal", "xml:lang": "en", "value": "Bruce Wayne" }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Batman",
+          "surface form": "Batman"
+        },
+        {
+          "URI": "http://dbpedia.org/resource/Real-name_system",
+          "surface form": " real name"
+        }
+      ],
+      "relations": []
+    },
+    {
+      "id": "351",
+      "question": [
+        {
+          "language": "en",
+          "string": "When is the movie Worst Case Scenario going to be in cinemas in the Netherlands?"
+        }
+      ],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> PREFIX dbr: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX foaf: <http://xmlns.com/foaf/0.1/> SELECT DISTINCT ?rel WHERE { <http://dbpedia.org/resource/Worst_Case_Scenario_(film)> ?p ?o ; dbo:releaseDate ?rel FILTER contains(lcase(str(?o)), \"netherlands\") }"
+      },
+      "answers": {
+        "rel": {
+          "type": "typed-literal",
+          "datatype": "http://www.w3.org/2001/XMLSchema#date",
+          "value": "2008-01-30"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Worst-case_scenario",
+          "surface form": "movie Worst Case Scenario"
+        },
+        {
+          "URI": "http://dbpedia.org/resource/Netherlands",
+          "surface form": "Netherlands"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/picture",
+          "surface form": "cinemas"
+        }
+      ]
+    },
+    {
+      "id": "352",
+      "question": [{ "language": "en", "string": "How tall is Amazon Eve?" }],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?height WHERE { res:Amazon_Eve dbo:height ?height }"
+      },
+      "answers": {
+        "height": {
+          "type": "typed-literal",
+          "datatype": "http://www.w3.org/2001/XMLSchema#double",
+          "value": "1.8288"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Amazon_Eve",
+          "surface form": "Amazon Eve"
+        }
+      ],
+      "relations": [
+        { "URI": "http://dbpedia.org/ontology/height", "surface form": "tall" }
+      ]
+    },
+    {
+      "id": "353",
+      "question": [
+        {
+          "language": "en",
+          "string": "Which weapons did Heckler & Koch develop?"
+        }
+      ],
+      "query": {
+        "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Weapon> ; <http://dbpedia.org/property/designer> <http://dbpedia.org/resource/Heckler_&_Koch> }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Ak_4_rifle"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Heckler_&_Koch",
+          "surface form": "Heckler & Koch"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/numberOfSeasons",
+          "surface form": "weapons"
+        },
+        {
+          "URI": "http://dbpedia.org/ontology/product",
+          "surface form": "develop"
+        }
+      ]
+    },
+    {
+      "id": "354",
+      "question": [
+        { "language": "en", "string": "Where is Fort Knox located?" }
+      ],
+      "query": {
+        "sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Fort_Knox> <http://dbpedia.org/ontology/location> ?uri. ?uri a <http://dbpedia.org/ontology/Place>. }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Kentucky"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Fort_Knox",
+          "surface form": "Fort Knox"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/property/location",
+          "surface form": "located"
+        }
+      ]
+    },
+    {
+      "id": "355",
+      "question": [{ "language": "en", "string": "Who created Batman?" }],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Batman dbo:creator ?uri }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Bill_Finger"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Batman",
+          "surface form": "Batman"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/creator",
+          "surface form": "created"
+        }
+      ]
+    },
+    {
+      "id": "356",
+      "question": [
+        {
+          "language": "en",
+          "string": "Which politicians were married to a German?"
+        }
+      ],
+      "query": {
+        "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Politician> ; <http://dbpedia.org/ontology/spouse> ?spouse { ?spouse <http://dbpedia.org/ontology/birthPlace> <http://dbpedia.org/resource/Germany> } UNION { ?spouse <http://dbpedia.org/ontology/birthPlace> ?p . ?p <http://dbpedia.org/ontology/country> <http://dbpedia.org/resource/Germany> } }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Marcus_Pretzell"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Politicians_of_The_Wire",
+          "surface form": "politicians"
+        },
+        {
+          "URI": "http://dbpedia.org/resource/Germany",
+          "surface form": "German"
+        },
+        {
+          "URI": "http://dbpedia.org/resource/German",
+          "surface form": "German"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/spouse",
+          "surface form": "married"
+        },
+        { "URI": "http://dbpedia.org/ontology/country", "surface form": "" },
+        { "URI": "http://dbpedia.org/ontology/country", "surface form": "" }
+      ]
+    },
+    {
+      "id": "357",
+      "question": [
+        { "language": "en", "string": "When was Jack Wolfskin founded?" }
+      ],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT xsd:date(?year) WHERE { res:Jack_Wolfskin dbo:foundingYear ?year }"
+      },
+      "answers": {
+        "callret-0": {
+          "type": "typed-literal",
+          "datatype": "http://www.w3.org/2001/XMLSchema#date",
+          "value": "1981-01-01"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Jack_Wolfskin",
+          "surface form": "Jack Wolfskin"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/foundingYear",
+          "surface form": "founded"
+        }
+      ]
+    },
+    {
+      "id": "358",
+      "question": [
+        {
+          "language": "en",
+          "string": "In which studio did the Beatles record their first album?"
+        }
+      ],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbp: <http://dbpedia.org/property/> PREFIX dbr: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> PREFIX db: <http://dbpedia.org/> 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"
+      },
+      "answers": {
+        "studio": {
+          "type": "literal",
+          "xml:lang": "en",
+          "value": "EMI, London"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Beatles_VI",
+          "surface form": "Beatles"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/property/studio",
+          "surface form": "studio"
+        },
+        {
+          "URI": "http://dbpedia.org/ontology/recordLabel",
+          "surface form": "record"
+        },
+        { "URI": "http://dbpedia.org/ontology/album", "surface form": "album" }
+      ]
+    },
+    {
+      "id": "359",
+      "question": [
+        {
+          "language": "en",
+          "string": "How many gold medals did Michael Phelps win at the 2008 Olympics?"
+        }
+      ],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> SELECT Count(?sub) as ?c WHERE { ?sub dbo:goldMedalist dbr:Michael_Phelps . filter (contains (str(?sub), \"2008\") && contains (str(?sub), \"Olympics\")) }"
+      },
+      "answers": {
+        "c": {
+          "type": "typed-literal",
+          "datatype": "http://www.w3.org/2001/XMLSchema#integer",
+          "value": "8"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Michael_Phelps",
+          "surface form": "Michael Phelps"
+        },
+        {
+          "URI": "http://dbpedia.org/resource/2008_Summer_Olympics",
+          "surface form": "2008 Olympics"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/goldMedalist",
+          "surface form": "gold medals"
+        },
+        { "URI": "http://dbpedia.org/ontology/award", "surface form": "win" }
+      ]
+    },
+    {
+      "id": "360",
+      "question": [
+        { "language": "en", "string": "How deep is Lake Chiemsee?" }
+      ],
+      "query": {
+        "sparql": "SELECT DISTINCT ?n WHERE { <http://dbpedia.org/resource/Chiemsee> <http://dbpedia.org/ontology/maximumDepth> ?n }"
+      },
+      "answers": {
+        "n": {
+          "type": "typed-literal",
+          "datatype": "http://www.w3.org/2001/XMLSchema#double",
+          "value": "72.7"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Chiemsee",
+          "surface form": "Lake Chiemsee"
+        }
+      ],
+      "relations": [
+        { "URI": "http://dbpedia.org/ontology/capital", "surface form": "deep" }
+      ]
+    },
+    {
+      "id": "361",
+      "question": [
+        {
+          "language": "en",
+          "string": "Give me the grandchildren of Elvis Presley."
+        }
+      ],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Elvis_Presley dbo:child ?child . ?child dbo:child ?uri }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Riley_Keough"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Elvis_Presley",
+          "surface form": "Elvis Presley"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/child",
+          "surface form": "grandchildren"
+        }
+      ]
+    },
+    {
+      "id": "362",
+      "question": [{ "language": "en", "string": "What does ICRO stand for?" }],
+      "query": {
+        "sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/abbreviation> \"ICRO\" }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Irish_Cave_Rescue_Organisation"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Icrossing_Inc",
+          "surface form": "ICRO"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/position",
+          "surface form": "stand"
+        }
+      ]
+    },
+    {
+      "id": "363",
+      "question": [{ "language": "en", "string": "When was Olof Palme shot?" }],
+      "query": {
+        "sparql": "SELECT DISTINCT ?date WHERE { <http://dbpedia.org/resource/Olof_Palme> <http://dbpedia.org/ontology/deathDate> ?date }"
+      },
+      "answers": {
+        "date": {
+          "type": "typed-literal",
+          "datatype": "http://www.w3.org/2001/XMLSchema#date",
+          "value": "1986-02-28"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Olof_Palme",
+          "surface form": "Olof Palme"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/discharge",
+          "surface form": "shot"
+        }
+      ]
+    },
+    {
+      "id": "364",
+      "question": [
+        {
+          "language": "en",
+          "string": "List all the musicals with music by Leonard Bernstein."
+        }
+      ],
+      "query": {
+        "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Musical> ; <http://dbpedia.org/ontology/musicBy> <http://dbpedia.org/resource/Leonard_Bernstein> }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Side_by_Side_by_Sondheim"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Leonard_Bernstein",
+          "surface form": "Leonard Bernstein"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/show",
+          "surface form": "musicals"
+        },
+        {
+          "URI": "http://dbpedia.org/ontology/musicBy",
+          "surface form": "music"
+        }
+      ]
+    },
+    {
+      "id": "365",
+      "question": [
+        {
+          "language": "en",
+          "string": "Which movies starring Mickey Rourke were directed by Guy Ritchie?"
+        }
+      ],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Film ; dbo:starring res:Mickey_Rourke ; dbo:director res:Guy_Ritchie }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/The_Hire"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Mickey_Rourke",
+          "surface form": "Mickey Rourke"
+        },
+        {
+          "URI": "http://dbpedia.org/resource/Guy_Ritchie",
+          "surface form": "Guy Ritchie"
+        }
+      ],
+      "relations": [
+        { "URI": "http://dbpedia.org/ontology/film", "surface form": "movies" },
+        {
+          "URI": "http://dbpedia.org/ontology/starring",
+          "surface form": "starring"
+        },
+        {
+          "URI": "http://dbpedia.org/ontology/president",
+          "surface form": "directed"
+        }
+      ]
+    },
+    {
+      "id": "366",
+      "question": [
+        { "language": "en", "string": "How high is the lighthouse in Colombo?" }
+      ],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?num WHERE { res:Colombo_Lighthouse dbo:height ?num }"
+      },
+      "answers": {
+        "num": {
+          "type": "typed-literal",
+          "datatype": "http://www.w3.org/2001/XMLSchema#double",
+          "value": "15.0"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Colombo_Lighthouse",
+          "surface form": "Lighthouse in Colombo"
+        }
+      ],
+      "relations": [
+        { "URI": "http://dbpedia.org/ontology/height", "surface form": "high" }
+      ]
+    },
+    {
+      "id": "367",
+      "question": [
+        {
+          "language": "en",
+          "string": "How many years was the Ford Model T manufactured?"
+        }
+      ],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX xsd: <http://www.w3.org/2001/XMLSchema#> PREFIX res: <http://dbpedia.org/resource/> SELECT ?years WHERE { res:Ford_Model_T dbo:productionEndYear ?end ; dbo:productionStartYear ?start. BIND ( ( year(xsd:date(?end)) - year(xsd:date(?start)) ) AS ?years) }"
+      },
+      "answers": {
+        "years": {
+          "type": "typed-literal",
+          "datatype": "http://www.w3.org/2001/XMLSchema#integer",
+          "value": "19"
+        }
+      },
+      "entities": [
+        { "URI": "http://dbpedia.org/resource/T", "surface form": "T" },
+        {
+          "URI": "http://dbpedia.org/resource/Ford_Model_48",
+          "surface form": "Ford Model"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/manufacturer",
+          "surface form": "manufactured"
+        }
+      ]
+    },
+    {
+      "id": "368",
+      "question": [
+        {
+          "language": "en",
+          "string": "Give me all gangsters from the prohibition era."
+        }
+      ],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dct: <http://purl.org/dc/terms/> PREFIX dbc: <http://dbpedia.org/resource/Category:> PREFIX dbr: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { ?uri dbo:occupation dbr:Gangster ; dct:subject dbc:Prohibition-era_gangsters }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Dean_O'Banion"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Gangsters_of_the_Frontier",
+          "surface form": "Gangsters"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/time",
+          "surface form": "prohibition era"
+        }
+      ]
+    },
+    {
+      "id": "369",
+      "question": [
+        {
+          "language": "en",
+          "string": "Give me all Seven Wonders of the Ancient World."
+        }
+      ],
+      "query": {
+        "sparql": "PREFIX dct: <http://purl.org/dc/terms/> PREFIX dbc: <http://dbpedia.org/resource/Category:> SELECT ?uri WHERE { ?uri dct:subject dbc:Seven_Wonders_of_the_Ancient_World }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Temple_of_Artemis"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Seven_Wonders_of_the_Ancient_World",
+          "surface form": "Seven Wonders of the Ancient World"
+        }
+      ],
+      "relations": []
+    },
+    {
+      "id": "370",
+      "question": [
+        { "language": "en", "string": "Give me all chemical elements." }
+      ],
+      "query": {
+        "sparql": "PREFIX dct: <http://purl.org/dc/terms/> PREFIX dbc: <http://dbpedia.org/resource/Category:> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX owl: <http://www.w3.org/2002/07/owl#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type owl:Thing ; dct:subject dbc:Chemical_elements }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Aluminium"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Sand_casting",
+          "surface form": "chemical elements"
+        }
+      ],
+      "relations": []
+    },
+    {
+      "id": "371",
+      "question": [
+        {
+          "language": "en",
+          "string": "How many rivers and lakes are in South Carolina?"
+        }
+      ],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dct: <http://purl.org/dc/terms/> PREFIX dbc: <http://dbpedia.org/resource/Category:> PREFIX dbr: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT (COUNT(DISTINCT ?uri) AS ?count) WHERE { { ?uri dbo:location dbr:South_Carolina ; rdf:type dbo:Lake } UNION { ?uri dct:subject dbc:Rivers_and_streams_of_South_Carolina } }"
+      },
+      "answers": {
+        "count": {
+          "type": "typed-literal",
+          "datatype": "http://www.w3.org/2001/XMLSchema#integer",
+          "value": "14"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/South_Carolina",
+          "surface form": "South Carolina"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/river",
+          "surface form": "rivers"
+        },
+        { "URI": "http://dbpedia.org/ontology/lake", "surface form": "lakes" }
+      ]
+    },
+    {
+      "id": "372",
+      "question": [
+        { "language": "en", "string": "How many states are in Mexico?" }
+      ],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT (COUNT(?uri) AS ?count) WHERE { ?uri dbo:type dbr:States_of_Mexico }"
+      },
+      "answers": {
+        "count": {
+          "type": "typed-literal",
+          "datatype": "http://www.w3.org/2001/XMLSchema#integer",
+          "value": "0"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Mexico",
+          "surface form": "Mexico"
+        }
+      ],
+      "relations": []
+    },
+    {
+      "id": "373",
+      "question": [
+        {
+          "language": "en",
+          "string": "How many theories did Albert Einstein come up with?"
+        }
+      ],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT (COUNT(?uri) AS ?count) WHERE { dbr:Albert_Einstein dbo:knownFor ?uri }"
+      },
+      "answers": {
+        "count": {
+          "type": "typed-literal",
+          "datatype": "http://www.w3.org/2001/XMLSchema#integer",
+          "value": "15"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Theories_of_cloaking",
+          "surface form": "theories"
+        },
+        {
+          "URI": "http://dbpedia.org/resource/Albert_Einstein",
+          "surface form": "Albert Einstein"
+        }
+      ],
+      "relations": []
+    },
+    {
+      "id": "374",
+      "question": [
+        {
+          "language": "en",
+          "string": "What form of government is found in South Africa?"
+        }
+      ],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?uri WHERE { dbr:South_Africa dbo:governmentType ?uri }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Unitary_state"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/South_Africa",
+          "surface form": "South Africa"
+        }
+      ],
+      "relations": [
+        { "URI": "http://dbpedia.org/ontology/type", "surface form": "form" },
+        {
+          "URI": "http://dbpedia.org/ontology/government",
+          "surface form": "government"
+        }
+      ]
+    },
+    {
+      "id": "375",
+      "question": [
+        {
+          "language": "en",
+          "string": "What is the largest state in the United States?"
+        }
+      ],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dct: <http://purl.org/dc/terms/> PREFIX dbc: <http://dbpedia.org/resource/Category:> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT ?uri WHERE { ?uri dct:subject dbc:States_of_the_United_States ; rdf:type dbo:AdministrativeRegion ; dbo:areaTotal ?area } ORDER BY DESC(?area) OFFSET 0 LIMIT 1"
+      },
+      "answers": {
+        "uri": { "type": "uri", "value": "http://dbpedia.org/resource/Alaska" }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/United_States",
+          "surface form": "United States"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/areaTotal",
+          "surface form": "largest"
+        }
+      ]
+    },
+    {
+      "id": "376",
+      "question": [
+        {
+          "language": "en",
+          "string": "What is the longest river in the world?"
+        }
+      ],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT ?uri WHERE { ?uri rdf:type dbo:BodyOfWater ; dbo:length ?length } ORDER BY DESC(?length) LIMIT 1"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Indian_Ocean"
+        }
+      },
+      "entities": [],
+      "relations": [
+        { "URI": "http://dbpedia.org/ontology/river", "surface form": "river" }
+      ]
+    },
+    {
+      "id": "377",
+      "question": [
+        { "language": "en", "string": "What is the wavelength of indigo?" }
+      ],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?n WHERE { dbr:Indigo dbo:wavelength ?n }"
+      },
+      "answers": {
+        "n": {
+          "type": "typed-literal",
+          "datatype": "http://www.w3.org/2001/XMLSchema#double",
+          "value": "4.2e-07"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Indigo",
+          "surface form": "indigo"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/wavelength",
+          "surface form": "wavelength"
+        }
+      ]
+    },
+    {
+      "id": "378",
+      "question": [
+        {
+          "language": "en",
+          "string": "What was the name of the famous battle in 1836 in San Antonio?"
+        }
+      ],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?uri WHERE { ?uri a dbo:MilitaryConflict ; dbo:place dbr:San_Antonio ; dbo:date ?date FILTER ( ?date > \"1835-12-31T00:00:00Z\"^^xsd:dateTime ) FILTER ( ?date <= \"1836-12-31T00:00:00Z\"^^xsd:dateTime ) }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Battle_of_the_Alamo"
+        }
+      },
+      "entities": [
+        { "URI": "http://dbpedia.org/resource/1836", "surface form": "1836" },
+        {
+          "URI": "http://dbpedia.org/resource/San_Antonio",
+          "surface form": "San Antonio"
+        }
+      ],
+      "relations": [
+        { "URI": "http://dbpedia.org/property/name", "surface form": "name" },
+        {
+          "URI": "http://dbpedia.org/ontology/motto",
+          "surface form": "famous battle"
+        }
+      ]
+    },
+    {
+      "id": "379",
+      "question": [
+        {
+          "language": "en",
+          "string": "What were the names of the three ships used by Columbus?"
+        }
+      ],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dct: <http://purl.org/dc/terms/> PREFIX dbc: <http://dbpedia.org/resource/Category:> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT ?uri WHERE { ?uri rdf:type dbo:Ship ; dct:subject dbc:Christopher_Columbus ; dct:subject dbc:Exploration_ships }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Pinta_(ship)"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Columbus",
+          "surface form": "Columbus"
+        }
+      ],
+      "relations": [
+        { "URI": "http://dbpedia.org/ontology/title", "surface form": "names" },
+        {
+          "URI": "http://dbpedia.org/ontology/shipBeam",
+          "surface form": "ships"
+        }
+      ]
+    },
+    {
+      "id": "380",
+      "question": [{ "language": "en", "string": "When did Muhammad die?" }],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT xsd:date(?date) WHERE { res:Muhammad dbo:deathDate ?date }"
+      },
+      "answers": {
+        "callret-0": {
+          "type": "typed-literal",
+          "datatype": "http://www.w3.org/2001/XMLSchema#date",
+          "value": "0632-06-08"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Muhammad",
+          "surface form": "Muhammad"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/deathDate",
+          "surface form": "die"
+        }
+      ]
+    },
+    {
+      "id": "381",
+      "question": [
+        { "language": "en", "string": "When was the De Beers company founded?" }
+      ],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT xsd:date(?date) WHERE { res:De_Beers dbo:foundingYear ?date }"
+      },
+      "answers": {
+        "callret-0": {
+          "type": "typed-literal",
+          "datatype": "http://www.w3.org/2001/XMLSchema#date",
+          "value": "1888-01-01"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/De_Beers",
+          "surface form": "De Beers company"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/foundedBy",
+          "surface form": "founded"
+        }
+      ]
+    },
+    {
+      "id": "382",
+      "question": [{ "language": "en", "string": "When was John Adams born?" }],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?date WHERE { res:John_Adams dbo:birthDate ?date }"
+      },
+      "answers": {
+        "date": {
+          "type": "typed-literal",
+          "datatype": "http://www.w3.org/2001/XMLSchema#date",
+          "value": "1735-10-30"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/John_Adams",
+          "surface form": "John Adams"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/birthDate",
+          "surface form": "born"
+        }
+      ]
+    },
+    {
+      "id": "383",
+      "question": [
+        {
+          "language": "en",
+          "string": "Which American presidents were in office during the Vietnam War?"
+        }
+      ],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX dct: <http://purl.org/dc/terms/> PREFIX dbc: <http://dbpedia.org/resource/Category:> SELECT ?uri WHERE { ?uri dct:subject dbc:Presidents_of_the_United_States . res:Vietnam_War dbo:commander ?uri }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Richard_Nixon"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Organization_of_American_States",
+          "surface form": "American presidents"
+        },
+        {
+          "URI": "http://dbpedia.org/resource/Abimael_Guzm\u00e1n",
+          "surface form": "American presidents"
+        },
+        {
+          "URI": "http://dbpedia.org/resource/Vietnam_War",
+          "surface form": "Vietnam War"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/office",
+          "surface form": "office"
+        },
+        { "URI": "http://dbpedia.org/ontology/country", "surface form": "" }
+      ]
+    },
+    {
+      "id": "384",
+      "question": [
+        {
+          "language": "en",
+          "string": "Which city has the oldest running metro?"
+        }
+      ],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT ?loc WHERE { ?uri dbo:type dbr:Rapid_transit ; dbo:openingYear ?date ; dbo:location ?loc . ?loc rdf:type dbo:City } ORDER BY ASC(?date) LIMIT 1"
+      },
+      "answers": {
+        "loc": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Klang_Valley"
+        }
+      },
+      "entities": [],
+      "relations": [
+        { "URI": "http://dbpedia.org/ontology/city", "surface form": "city" },
+        {
+          "URI": "http://dbpedia.org/ontology/government",
+          "surface form": "running"
+        },
+        {
+          "URI": "http://dbpedia.org/ontology/populationMetro",
+          "surface form": "metro"
+        }
+      ]
+    },
+    {
+      "id": "385",
+      "question": [
+        {
+          "language": "en",
+          "string": "Which holidays are celebrated around the world?"
+        }
+      ],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Holiday }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/1981_Handsworth_riots"
+        }
+      },
+      "entities": [],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/feastDay",
+          "surface form": "holidays"
+        },
+        {
+          "URI": "http://dbpedia.org/ontology/party",
+          "surface form": "celebrated"
+        }
+      ]
+    },
+    {
+      "id": "386",
+      "question": [
+        { "language": "en", "string": "Who assassinated President McKinley?" }
+      ],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dct: <http://purl.org/dc/terms/> PREFIX dbc: <http://dbpedia.org/resource/Category:> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Person ; dct:subject dbc:American_assassins ; dct:subject dbc:Assassination_of_William_McKinley }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Leon_Czolgosz"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/President_McKinley_Inauguration_Footage",
+          "surface form": "Assassinated President McKinley"
+        }
+      ],
+      "relations": []
+    },
+    {
+      "id": "387",
+      "question": [{ "language": "en", "string": "Who discovered Pluto?" }],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?uri WHERE { dbr:Pluto dbo:discoverer ?uri }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Clyde_Tombaugh"
+        }
+      },
+      "entities": [
+        { "URI": "http://dbpedia.org/resource/Pluto", "surface form": "Pluto" }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/discovered",
+          "surface form": "discovered"
+        }
+      ]
+    },
+    {
+      "id": "388",
+      "question": [{ "language": "en", "string": "Who killed Caesar?" }],
+      "query": {
+        "sparql": "PREFIX dct: <http://purl.org/dc/terms/> PREFIX dbc: <http://dbpedia.org/resource/Category:> SELECT DISTINCT ?uri WHERE { ?uri dct:subject dbc:Assassins_of_Julius_Caesar }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Decimus_Junius_Brutus_Albinus"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Caesar_(game)",
+          "surface form": "Caesar"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/billed",
+          "surface form": "killed"
+        }
+      ]
+    },
+    {
+      "id": "389",
+      "question": [
+        { "language": "en", "string": "Who was the first King of England?" }
+      ],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX yago: <http://dbpedia.org/class/yago/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Royalty ; rdf:type yago:WikicatEnglishMonarchs ; dbo:activeYearsStartYear ?date } ORDER BY ASC(?date) OFFSET 0 LIMIT 1"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Harold_Godwinson"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/List_of_English_monarchs",
+          "surface form": "King of England"
+        }
+      ],
+      "relations": []
+    },
+    {
+      "id": "390",
+      "question": [
+        {
+          "language": "en",
+          "string": "What was the final result of the War of the Roses?"
+        }
+      ],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT DISTINCT ?result WHERE { ?uri dbo:isPartOfMilitaryConflict dbr:Wars_of_the_Roses ; dbo:result ?result ; dbo:date ?date } ORDER BY DESC(?date) OFFSET 0 LIMIT 1"
+      },
+      "answers": {
+        "result": { "type": "literal", "value": "Decisive Tudor victory" }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/The_War_of_the_Roses_(film)",
+          "surface form": "War of the Roses"
+        }
+      ],
+      "relations": []
+    },
+    {
+      "id": "391",
+      "question": [
+        { "language": "en", "string": "Who writes the Farmers' Almanac?" }
+      ],
+      "query": {
+        "sparql": "PREFIX dbp: <http://dbpedia.org/property/> SELECT ?uri WHERE { <http://dbpedia.org/resource/Farmers'_Almanac> dbp:editor ?uri }"
+      },
+      "answers": {
+        "uri": { "type": "literal", "xml:lang": "en", "value": "Peter Geiger" }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Farmers_Creek_Township,_Jackson_County,_Iowa",
+          "surface form": "Farmers"
+        },
+        {
+          "URI": "http://dbpedia.org/resource/Project_Almanac",
+          "surface form": " Almanac"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/property/writer",
+          "surface form": "writes"
+        }
+      ]
+    },
+    {
+      "id": "392",
+      "question": [
+        { "language": "en", "string": "How big is the earth's diameter?" }
+      ],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT (( xsd:double(?radius) * 2 ) AS ?diameter) WHERE { res:Earth dbo:meanRadius ?radius }"
+      },
+      "answers": {
+        "diameter": {
+          "type": "typed-literal",
+          "datatype": "http://www.w3.org/2001/XMLSchema#double",
+          "value": "1.2742e+07"
+        }
+      },
+      "entities": [],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/ground",
+          "surface form": "earth"
+        },
+        {
+          "URI": "http://dbpedia.org/ontology/diameter",
+          "surface form": " diameter"
+        }
+      ]
+    },
+    {
+      "id": "393",
+      "question": [
+        { "language": "en", "string": "How many people live in Eurasia?" }
+      ],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?population WHERE { res:Eurasia dbo:populationTotal ?population }"
+      },
+      "answers": {
+        "population": {
+          "type": "typed-literal",
+          "datatype": "http://www.w3.org/2001/XMLSchema#nonNegativeInteger",
+          "value": "5360351985"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Eurasia",
+          "surface form": "Eurasia"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/populationTotal",
+          "surface form": "live"
+        }
+      ]
+    },
+    {
+      "id": "394",
+      "question": [
+        { "language": "en", "string": "Give me the runtime of Toy Story." }
+      ],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?runtime WHERE { res:Toy_Story dbo:runtime ?runtime }"
+      },
+      "answers": {
+        "runtime": {
+          "type": "typed-literal",
+          "datatype": "http://www.w3.org/2001/XMLSchema#double",
+          "value": "4860.0"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Toy_Story",
+          "surface form": "Toy Story"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/runtime",
+          "surface form": "runtime"
+        }
+      ]
+    },
+    {
+      "id": "395",
+      "question": [
+        {
+          "language": "en",
+          "string": "What was the first name of the band Queens of the Stone Age?"
+        }
+      ],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?name WHERE { res:Queens_of_the_Stone_Age dbo:alias ?name }"
+      },
+      "answers": {
+        "name": {
+          "type": "literal",
+          "xml:lang": "en",
+          "value": "Gamma Ray(1996)"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Queens_of_the_Stone_Age",
+          "surface form": "band Queens of the Stone Age"
+        }
+      ],
+      "relations": []
+    },
+    {
+      "id": "396",
+      "question": [
+        {
+          "language": "en",
+          "string": "Give me the birth place of Frank Sinatra."
+        }
+      ],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?place WHERE { res:Frank_Sinatra dbo:birthPlace ?place }"
+      },
+      "answers": {
+        "place": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Hoboken,_New_Jersey"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Frank_Sinatra",
+          "surface form": "Frank Sinatra"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/birthPlace",
+          "surface form": "birth place"
+        }
+      ]
+    },
+    {
+      "id": "397",
+      "question": [
+        {
+          "language": "en",
+          "string": "Which university did Angela Merkel attend?"
+        }
+      ],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?university WHERE { res:Angela_Merkel dbo:almaMater ?university }"
+      },
+      "answers": {
+        "university": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/German_Academy_of_Sciences_at_Berlin"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Angela_Merkel",
+          "surface form": "Angela Merkel"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/university",
+          "surface form": "university"
+        },
+        { "URI": "http://dbpedia.org/ontology/show", "surface form": "attend" }
+      ]
+    },
+    {
+      "id": "398",
+      "question": [
+        {
+          "language": "en",
+          "string": "What is the alma mater of the chancellor of Germany Angela Merkel?"
+        }
+      ],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?Almamater WHERE { dbr:Angela_Merkel dbo:almaMater ?Almamater }"
+      },
+      "answers": {
+        "Almamater": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/German_Academy_of_Sciences_at_Berlin"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Angela_Merkel",
+          "surface form": "Germany Angela Merkel"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/almaMater",
+          "surface form": "alma mater"
+        },
+        {
+          "URI": "http://dbpedia.org/ontology/chancellor",
+          "surface form": "chancellor"
+        }
+      ]
+    },
+    {
+      "id": "399",
+      "question": [
+        {
+          "language": "en",
+          "string": "Who is the author of the interpretation of dreams?"
+        }
+      ],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?Author WHERE { dbr:The_Interpretation_of_Dreams dbo:author ?Author }"
+      },
+      "answers": {
+        "Author": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Sigmund_Freud"
+        }
+      },
+      "entities": [],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/author",
+          "surface form": "author"
+        },
+        {
+          "URI": "http://dbpedia.org/ontology/meaning",
+          "surface form": "interpretation"
+        },
+        {
+          "URI": "http://dbpedia.org/ontology/picture",
+          "surface form": "dreams"
+        }
+      ]
+    },
+    {
+      "id": "400",
+      "question": [
+        { "language": "en", "string": "What is the birth name of Adele?" }
+      ],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?bn WHERE { dbr:Adele dbo:birthName ?bn }"
+      },
+      "answers": {
+        "bn": {
+          "type": "literal",
+          "xml:lang": "en",
+          "value": "Adele Laurie Blue Adkins"
+        }
+      },
+      "entities": [
+        { "URI": "http://dbpedia.org/resource/Adele", "surface form": "Adele" }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/birthName",
+          "surface form": "birth name"
+        }
+      ]
+    },
+    {
+      "id": "401",
+      "question": [
+        {
+          "language": "en",
+          "string": "What are the top selling luxury vehicle brands in Germany?"
+        }
+      ],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dct: <http://purl.org/dc/terms/> PREFIX dbc: <http://dbpedia.org/resource/Category:> 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)"
+      },
+      "answers": {
+        "company": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Mercedes-Benz_Group"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Luxury_vehicle",
+          "surface form": "luxury vehicle brands"
+        },
+        {
+          "URI": "http://dbpedia.org/resource/Germany",
+          "surface form": "Germany"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/promotion",
+          "surface form": "selling"
+        }
+      ]
+    },
+    {
+      "id": "402",
+      "question": [
+        { "language": "en", "string": "How many awards has Bertrand Russell?" }
+      ],
+      "query": {
+        "sparql": "PREFIX dbr: <http://dbpedia.org/resource/> PREFIX dbp: <http://dbpedia.org/property/> SELECT (COUNT(?Awards) AS ?Counter) WHERE { dbr:Bertrand_Russell dbp:awards ?Awards }"
+      },
+      "answers": {
+        "Counter": {
+          "type": "typed-literal",
+          "datatype": "http://www.w3.org/2001/XMLSchema#integer",
+          "value": "6"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Bertrand_Russell",
+          "surface form": "Bertrand Russell"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/property/awards",
+          "surface form": "awards"
+        }
+      ]
+    },
+    {
+      "id": "403",
+      "question": [{ "language": "en", "string": "Who is Dan Jurafsky?" }],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?Dan WHERE {  VALUES ?Dan {dbr:Daniel_Jurafsky } }"
+      },
+      "answers": {
+        "Dan": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Daniel_Jurafsky"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Daniel_Jurafsky",
+          "surface form": "Dan Jurafsky"
+        }
+      ],
+      "relations": []
+    },
+    {
+      "id": "404",
+      "question": [
+        {
+          "language": "en",
+          "string": "how much is the elevation of D\u00fcsseldorf Airport ?"
+        }
+      ],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?ele WHERE { dbr:D\u00fcsseldorf_Airport dbo:elevation ?ele } LIMIT 1"
+      },
+      "answers": {
+        "ele": {
+          "type": "typed-literal",
+          "datatype": "http://www.w3.org/2001/XMLSchema#double",
+          "value": "44.8"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/D\u00fcsseldorf_Airport",
+          "surface form": "D\u00fcsseldorf Airport"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/elevation",
+          "surface form": "elevation"
+        }
+      ]
+    },
+    {
+      "id": "405",
+      "question": [
+        {
+          "language": "en",
+          "string": "how much is the total population of  european union?"
+        }
+      ],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?europop WHERE { dbr:European_Union dbo:populationTotal ?europop }"
+      },
+      "answers": {
+        "europop": {
+          "type": "typed-literal",
+          "datatype": "http://www.w3.org/2001/XMLSchema#nonNegativeInteger",
+          "value": "447007596"
+        }
+      },
+      "entities": [],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/totalPopulation",
+          "surface form": "total population"
+        },
+        {
+          "URI": "http://dbpedia.org/ontology/league",
+          "surface form": "european union"
+        }
+      ]
+    },
+    {
+      "id": "406",
+      "question": [
+        { "language": "en", "string": "how many foreigners speak German?" }
+      ],
+      "query": {
+        "sparql": "PREFIX dbr: <http://dbpedia.org/resource/> PREFIX dbp: <http://dbpedia.org/property/> SELECT ?Ger_lang WHERE { dbr:German_language dbp:speakers ?Ger_lang } OFFSET 1 LIMIT 1"
+      },
+      "answers": {
+        "Ger_lang": {
+          "type": "literal",
+          "xml:lang": "en",
+          "value": "L2 speakers: 80\u201385 million"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Foreigners_out!_Schlingensiefs_Container",
+          "surface form": "foreigners"
+        },
+        {
+          "URI": "http://dbpedia.org/resource/Germany",
+          "surface form": "German"
+        },
+        {
+          "URI": "http://dbpedia.org/resource/German",
+          "surface form": "German"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/language",
+          "surface form": "speak"
+        },
+        { "URI": "http://dbpedia.org/ontology/country", "surface form": "" },
+        { "URI": "http://dbpedia.org/ontology/country", "surface form": "" }
+      ]
+    },
+    {
+      "id": "407",
+      "question": [
+        { "language": "en", "string": "Where is the birthplace of Goethe?" }
+      ],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?Goethe WHERE { dbr:Johann_Wolfgang_von_Goethe dbo:birthPlace ?Goethe }"
+      },
+      "answers": {
+        "Goethe": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Holy_Roman_Empire"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Goethe_Prize",
+          "surface form": "Goethe"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/birthPlace",
+          "surface form": "birthplace"
+        }
+      ]
+    },
+    {
+      "id": "408",
+      "question": [
+        {
+          "language": "en",
+          "string": "Where is the origin of Carolina reaper?"
+        }
+      ],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/>PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?uri WHERE { dbr:Carolina_Reaper dbo:origin ?uri}"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Rock_Hill,_South_Carolina"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Carolina_Reaper",
+          "surface form": "Carolina reaper"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/origin",
+          "surface form": "origin"
+        }
+      ]
+    },
+    {
+      "id": "409",
+      "question": [
+        {
+          "language": "en",
+          "string": "How much is the population of Mexico City ?"
+        }
+      ],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?Mexico_City WHERE { dbr:Mexico_City dbo:populationTotal ?Mexico_City }"
+      },
+      "answers": {
+        "Mexico_City": {
+          "type": "typed-literal",
+          "datatype": "http://www.w3.org/2001/XMLSchema#nonNegativeInteger",
+          "value": "9209944"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Mexico_City",
+          "surface form": "Mexico City"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/country",
+          "surface form": "population"
+        }
+      ]
+    },
+    {
+      "id": "410",
+      "question": [
+        { "language": "en", "string": "What is the nick name of Baghdad?" }
+      ],
+      "query": {
+        "sparql": "PREFIX dbr: <http://dbpedia.org/resource/> PREFIX foaf: <http://xmlns.com/foaf/0.1/> SELECT ?nm WHERE { dbr:Baghdad foaf:nick ?nm }"
+      },
+      "answers": {
+        "nm": {
+          "type": "literal",
+          "xml:lang": "en",
+          "value": "City of Peace (\u0645\u062f\u064a\u0646\u0629 \u0627\u0644\u0633\u0644\u0627\u0645)"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Baghdad",
+          "surface form": "Baghdad"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/address",
+          "surface form": "nick name"
+        }
+      ]
+    },
+    {
+      "id": "411",
+      "question": [
+        {
+          "language": "en",
+          "string": "Who is the novelist of the work a song of ice and fire?"
+        }
+      ],
+      "query": {
+        "sparql": "PREFIX dbr: <http://dbpedia.org/resource/> PREFIX dbp: <http://dbpedia.org/property/> SELECT ?Novelist WHERE { dbr:A_Song_of_Ice_and_Fire dbp:author ?Novelist }"
+      },
+      "answers": {
+        "Novelist": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/George_R._R._Martin"
+        }
+      },
+      "entities": [],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/author",
+          "surface form": "novelist"
+        },
+        {
+          "URI": "http://dbpedia.org/ontology/service",
+          "surface form": "work"
+        },
+        { "URI": "http://dbpedia.org/ontology/anthem", "surface form": "song" },
+        { "URI": "http://dbpedia.org/ontology/frozen", "surface form": "ice" }
+      ]
+    },
+    {
+      "id": "412",
+      "question": [
+        {
+          "language": "en",
+          "string": "What is the percentage of area water in Brazil?"
+        }
+      ],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?percentage WHERE { dbr:Brazil dbo:percentageOfAreaWater ?percentage }"
+      },
+      "answers": {
+        "percentage": {
+          "type": "typed-literal",
+          "datatype": "http://www.w3.org/2001/XMLSchema#float",
+          "value": "0.65"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Brazil",
+          "surface form": "Brazil"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/percentageOfAreaWater",
+          "surface form": "percentage"
+        },
+        {
+          "URI": "http://dbpedia.org/ontology/percentageOfAreaWater",
+          "surface form": "area water"
+        }
+      ]
+    },
+    {
+      "id": "413",
+      "question": [
+        { "language": "en", "string": "How much is the population of Iraq?" }
+      ],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?pIraq WHERE { dbr:Iraq dbo:populationTotal ?pIraq }"
+      },
+      "answers": {
+        "pIraq": {
+          "type": "typed-literal",
+          "datatype": "http://www.w3.org/2001/XMLSchema#nonNegativeInteger",
+          "value": "44222503"
+        }
+      },
+      "entities": [
+        { "URI": "http://dbpedia.org/resource/Iraq", "surface form": "Iraq" }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/populationTotal",
+          "surface form": "population"
+        }
+      ]
+    },
+    {
+      "id": "414",
+      "question": [
+        { "language": "en", "string": "What is the population of Cairo?" }
+      ],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?pop WHERE { dbr:Cairo dbo:populationTotal ?pop }"
+      },
+      "answers": {
+        "pop": {
+          "type": "typed-literal",
+          "datatype": "http://www.w3.org/2001/XMLSchema#nonNegativeInteger",
+          "value": "10025657"
+        }
+      },
+      "entities": [
+        { "URI": "http://dbpedia.org/resource/Cairo", "surface form": "Cairo" }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/populationTotal",
+          "surface form": "population"
+        }
+      ]
+    },
+    {
+      "id": "415",
+      "question": [
+        {
+          "language": "en",
+          "string": "How much is the population density rank of Germany?"
+        }
+      ],
+      "query": {
+        "sparql": "PREFIX dbr: <http://dbpedia.org/resource/> PREFIX dbp: <http://dbpedia.org/property/> SELECT ?rank WHERE { dbr:Germany dbp:populationDensityRank ?rank }"
+      },
+      "answers": {
+        "rank": {
+          "type": "typed-literal",
+          "datatype": "http://www.w3.org/2001/XMLSchema#integer",
+          "value": "58"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Population_density",
+          "surface form": "population density rank"
+        },
+        {
+          "URI": "http://dbpedia.org/resource/Germany",
+          "surface form": "Germany"
+        }
+      ],
+      "relations": []
+    },
+    {
+      "id": "416",
+      "question": [
+        {
+          "language": "en",
+          "string": "What is the relation between Resource Description Framework and Web Ontology Language?"
+        }
+      ],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?rdf_owl WHERE { dbr:Web_Ontology_Language dbo:abstract ?rdf_owl } LIMIT 1"
+      },
+      "answers": {
+        "rdf_owl": {
+          "type": "literal",
+          "xml:lang": "ca",
+          "value": "OWL \u00e9s l'acr\u00f2nim de l'angl\u00e8s Web Ontology Language, un llenguatge de marcat per publicar i compartir dades usant ontologies en la WWW. OWL t\u00e9 com a objectiu facilitar un model de marcat constru\u00eft sobre RDF i codificat en XML. T\u00e9 com a antecedent DAML+OIL, en els quals es van inspirar els creadors de OWL per crear el llenguatge. Al costat de l'entorn RDF i altres components, aquestes eines fan possible el projecte de web sem\u00e0ntica."
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Resource_Description_Framework",
+          "surface form": "Resource Description Framework"
+        },
+        {
+          "URI": "http://dbpedia.org/resource/Web_Ontology_Language",
+          "surface form": "Web Ontology Language"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/relation",
+          "surface form": "relation"
+        }
+      ]
+    },
+    {
+      "id": "417",
+      "question": [
+        {
+          "language": "en",
+          "string": "How large is the total area of North Rhine-Westphalia?"
+        }
+      ],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?tarea WHERE { dbr:North_Rhine-Westphalia dbo:areaTotal ?tarea }"
+      },
+      "answers": {
+        "tarea": {
+          "type": "typed-literal",
+          "datatype": "http://www.w3.org/2001/XMLSchema#double",
+          "value": "3.40841e+10"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/North_Rhine-Westphalia",
+          "surface form": "North Rhine-Westphalia"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/areaTotal",
+          "surface form": "total area"
+        }
+      ]
+    },
+    {
+      "id": "418",
+      "question": [
+        {
+          "language": "en",
+          "string": "What is the original title of the interpretation of dreams?"
+        }
+      ],
+      "query": {
+        "sparql": "PREFIX dbr: <http://dbpedia.org/resource/> PREFIX foaf: <http://xmlns.com/foaf/0.1/> SELECT ?title WHERE { dbr:The_Interpretation_of_Dreams foaf:name ?title }"
+      },
+      "answers": {
+        "title": {
+          "type": "literal",
+          "xml:lang": "en",
+          "value": "Die Traumdeutung"
+        }
+      },
+      "entities": [],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/denomination",
+          "surface form": "original title"
+        },
+        {
+          "URI": "http://dbpedia.org/ontology/meaning",
+          "surface form": "interpretation"
+        },
+        {
+          "URI": "http://dbpedia.org/ontology/picture",
+          "surface form": "dreams"
+        }
+      ]
+    },
+    {
+      "id": "419",
+      "question": [
+        { "language": "en", "string": "When was the death  of  Shakespeare?" }
+      ],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?x WHERE { dbr:William_Shakespeare dbo:deathDate ?x } LIMIT 1"
+      },
+      "answers": {
+        "x": {
+          "type": "typed-literal",
+          "datatype": "http://www.w3.org/2001/XMLSchema#date",
+          "value": "1616-04-23"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/William_Shakespeare",
+          "surface form": "Shakespeare"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/deathDate",
+          "surface form": "death"
+        }
+      ]
+    },
+    {
+      "id": "420",
+      "question": [
+        {
+          "language": "en",
+          "string": "With how many countries Iran has borders?"
+        }
+      ],
+      "query": {
+        "sparql": "PREFIX dbr: <http://dbpedia.org/resource/> PREFIX dbp: <http://dbpedia.org/property/> SELECT ?border WHERE { dbr:Geography_of_Iran dbp:borders ?border } LIMIT 8"
+      },
+      "answers": {
+        "border": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Azerbaijan"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Low_Countries",
+          "surface form": "countries Iran"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/division",
+          "surface form": "borders"
+        }
+      ]
+    },
+    {
+      "id": "421",
+      "question": [
+        {
+          "language": "en",
+          "string": "What is the smallest city by area in Germany?"
+        }
+      ],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX skos: <http://www.w3.org/2004/02/skos/core#> PREFIX dbc: <http://dbpedia.org/resource/Category:> PREFIX dct: <http://purl.org/dc/terms/> SELECT ?city WHERE { ?m skos:broader dbc:Cities_in_Germany . ?city dct:subject ?m ; dbo:areaTotal ?area } ORDER BY ?area LIMIT 1"
+      },
+      "answers": {
+        "city": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Eckernf\u00f6rde"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Germany",
+          "surface form": "Germany"
+        }
+      ],
+      "relations": [
+        { "URI": "http://dbpedia.org/ontology/city", "surface form": "city" },
+        { "URI": "http://dbpedia.org/property/area", "surface form": "area" }
+      ]
+    },
+    {
+      "id": "422",
+      "question": [
+        {
+          "language": "en",
+          "string": "Which beer brewing comapnies are located in North-Rhine Westphalia?"
+        }
+      ],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dct: <http://purl.org/dc/terms/> PREFIX dbc: <http://dbpedia.org/resource/Category:> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT ?company WHERE { ?company dct:subject dbc:Companies_based_in_North_Rhine-Westphalia ; rdf:type dbo:Brewery }"
+      },
+      "answers": {
+        "company": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Veltins_Brewery"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Museum_of_Beer_and_Brewing",
+          "surface form": "beer brewing comapnies"
+        },
+        {
+          "URI": "http://dbpedia.org/resource/North_Rhine-Westphalia",
+          "surface form": "North-Rhine Westphalia"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/property/stand",
+          "surface form": "located"
+        }
+      ]
+    },
+    {
+      "id": "423",
+      "question": [
+        { "language": "en", "string": "What is the largest city in america?" }
+      ],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?lcity WHERE { dbr:United_States dbo:largestCity ?lcity }"
+      },
+      "answers": {
+        "lcity": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/New_York_City"
+        }
+      },
+      "entities": [],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/largestCity",
+          "surface form": "largest city"
+        },
+        {
+          "URI": "http://dbpedia.org/ontology/province",
+          "surface form": "america"
+        }
+      ]
+    },
+    {
+      "id": "424",
+      "question": [
+        {
+          "language": "en",
+          "string": "Who is the current federal minister of finance in Germany?"
+        }
+      ],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> SELECT ?leader WHERE { <http://dbpedia.org/resource/Federal_Ministry_of_Finance_(Germany)> dbo:leader ?leader }"
+      },
+      "answers": {
+        "leader": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Katja_Hessel"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Current_prime_minister_of_Canada",
+          "surface form": "current federal minister"
+        },
+        {
+          "URI": "http://dbpedia.org/resource/Germany",
+          "surface form": "Germany"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/operator",
+          "surface form": "finance"
+        }
+      ]
+    },
+    {
+      "id": "425",
+      "question": [
+        {
+          "language": "en",
+          "string": "What is the highest mountain in the Bavarian Alps?"
+        }
+      ],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?m  WHERE { dbr:Bavarian_Alps dbp:highest ?m} "
+      },
+      "answers": {
+        "m": { "type": "uri", "value": "http://dbpedia.org/resource/Zugspitze" }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Bavarian_Alps",
+          "surface form": "Bavarian Alps"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/elevation",
+          "surface form": "highest mountain"
+        }
+      ]
+    },
+    {
+      "id": "426",
+      "question": [
+        { "language": "en", "string": "Who is 8th president of US?" }
+      ],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbp: <http://dbpedia.org/property/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?name WHERE { dbr:8th_President_of_the_United_States dbo:wikiPageRedirects ?link . ?link dbp:name ?name }"
+      },
+      "answers": {
+        "name": {
+          "type": "literal",
+          "xml:lang": "en",
+          "value": "Martin Van Buren"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/United_States",
+          "surface form": "US"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/leader",
+          "surface form": "8th president"
+        }
+      ]
+    },
+    {
+      "id": "427",
+      "question": [
+        {
+          "language": "en",
+          "string": "In which state Penn State University is located?"
+        }
+      ],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?s WHERE { dbr:Pennsylvania_State_University dbo:state ?s }"
+      },
+      "answers": {
+        "s": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Pennsylvania"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Pennsylvania_State_University",
+          "surface form": "Penn State University"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/position",
+          "surface form": "located"
+        }
+      ]
+    },
+    {
+      "id": "428",
+      "question": [
+        { "language": "en", "string": "What is Donald Trump's main business?" }
+      ],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?owner WHERE { ?owner dbo:owner dbr:Donald_Trump }"
+      },
+      "answers": {
+        "owner": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Trump_Model_Management"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Donald_Trump",
+          "surface form": "Donald Trump"
+        },
+        {
+          "URI": "http://dbpedia.org/resource/The_Main_Monkey_Business",
+          "surface form": " main business"
+        }
+      ],
+      "relations": []
+    },
+    {
+      "id": "429",
+      "question": [
+        { "language": "en", "string": "What is the last work of Dan Brown?" }
+      ],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbp: <http://dbpedia.org/property/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?book WHERE { { ?book dbo:author dbr:Dan_Brown . ?book dbp:releaseDate ?date } UNION { ?book dbo:author dbr:Dan_Brown . ?book dbo:publicationDate ?date} } ORDER BY DESC(xsd:date(?date)) LIMIT 1"
+      },
+      "answers": {
+        "book": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Origin_(Brown_novel)"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Dan_Brown",
+          "surface form": "Dan Brown"
+        }
+      ],
+      "relations": [
+        { "URI": "http://dbpedia.org/ontology/battle", "surface form": "work" }
+      ]
+    },
+    {
+      "id": "430",
+      "question": [
+        {
+          "language": "en",
+          "string": "When was the last episode of the TV series Friends aired?"
+        }
+      ],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?date WHERE { dbr:Friends dbo:completionDate ?date }"
+      },
+      "answers": {
+        "date": {
+          "type": "typed-literal",
+          "datatype": "http://www.w3.org/2001/XMLSchema#date",
+          "value": "2004-05-06"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Tv_test_pattern",
+          "surface form": "TV"
+        },
+        {
+          "URI": "http://dbpedia.org/resource/Thomas_&_Friends_(series_18)",
+          "surface form": "series Friends"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/type",
+          "surface form": "episode"
+        },
+        {
+          "URI": "http://dbpedia.org/property/firstAired",
+          "surface form": "aired"
+        }
+      ]
+    },
+    {
+      "id": "431",
+      "question": [
+        {
+          "language": "en",
+          "string": "What is Angela Merkel\u2019s birth name?"
+        }
+      ],
+      "query": {
+        "sparql": "PREFIX res: <http://dbpedia.org/resource/> PREFIX dbp: <http://dbpedia.org/property/> SELECT DISTINCT ?string WHERE { res:Angela_Merkel dbp:birthName ?string }"
+      },
+      "answers": {
+        "string": {
+          "type": "literal",
+          "xml:lang": "en",
+          "value": "Angela Dorothea Kasner"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Name_at_birth",
+          "surface form": "Angela Merkel\u2019s birth name"
+        }
+      ],
+      "relations": []
+    },
+    {
+      "id": "432",
+      "question": [
+        {
+          "language": "en",
+          "string": "Which classes does the Millepede belong to?"
+        }
+      ],
+      "query": {
+        "sparql": "PREFIX res: <http://dbpedia.org/resource/> PREFIX dbp: <http://dbpedia.org/property/> SELECT DISTINCT ?String WHERE { res:Millipede dbp:taxon ?String }"
+      },
+      "answers": {
+        "String": { "type": "literal", "xml:lang": "en", "value": "Diplopoda" }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Millipede",
+          "surface form": "Millepede"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/classes",
+          "surface form": "classes"
+        },
+        { "URI": "http://dbpedia.org/ontology/date", "surface form": "belong" }
+      ]
+    },
+    {
+      "id": "433",
+      "question": [
+        { "language": "en", "string": "How many James Bond movies do exist?" }
+      ],
+      "query": {
+        "sparql": "SELECT (COUNT(DISTINCT ?uri) AS ?c) WHERE { ?uri dct:subject <http://dbpedia.org/resource/Category:James_Bond_films> }"
+      },
+      "answers": {
+        "c": {
+          "type": "typed-literal",
+          "datatype": "http://www.w3.org/2001/XMLSchema#integer",
+          "value": "29"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/M_(James_Bond)",
+          "surface form": "James Bond movies"
+        }
+      ],
+      "relations": [
+        { "URI": "http://dbpedia.org/property/last", "surface form": "exist" }
+      ]
+    },
+    {
+      "id": "434",
+      "question": [
+        { "language": "en", "string": "What languages are spoken in Pakistan?" }
+      ],
+      "query": {
+        "sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Pakistan> <http://dbpedia.org/ontology/language> ?uri }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Memoni_language"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Pakistan",
+          "surface form": "Pakistan"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/language",
+          "surface form": "languages"
+        },
+        {
+          "URI": "http://dbpedia.org/ontology/spokenIn",
+          "surface form": "spoken"
+        }
+      ]
+    },
+    {
+      "id": "435",
+      "question": [
+        { "language": "en", "string": "What is the wavelength of Indigo?" }
+      ],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?n WHERE { dbr:Indigo dbo:wavelength ?n }"
+      },
+      "answers": {
+        "n": {
+          "type": "typed-literal",
+          "datatype": "http://www.w3.org/2001/XMLSchema#double",
+          "value": "4.2e-07"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Indigo",
+          "surface form": "Indigo"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/wavelength",
+          "surface form": "wavelength"
+        }
+      ]
+    },
+    {
+      "id": "436",
+      "question": [
+        {
+          "language": "en",
+          "string": "Which daughters of British earls died at the same place they were born at?"
+        }
+      ],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX yago: <http://dbpedia.org/class/yago/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type yago:WikicatDaughtersOfBritishEarls ; dbo:birthPlace ?x ; dbo:deathPlace ?y FILTER ( ?x = ?y ) }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Megan_Lloyd_George"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Daughters_of_the_Dust",
+          "surface form": "daughters"
+        },
+        {
+          "URI": "http://dbpedia.org/resource/United_Kingdom",
+          "surface form": "British earls"
+        },
+        {
+          "URI": "http://dbpedia.org/resource/Earls_Barton",
+          "surface form": "British earls"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/property/deathPlace",
+          "surface form": "died"
+        },
+        { "URI": "http://dbpedia.org/ontology/place", "surface form": "place" },
+        {
+          "URI": "http://dbpedia.org/ontology/birthPlace",
+          "surface form": "born"
+        },
+        { "URI": "http://dbpedia.org/ontology/country", "surface form": "" }
+      ]
+    },
+    {
+      "id": "437",
+      "question": [
+        {
+          "language": "en",
+          "string": "In which city is the headquarter of Air China?"
+        }
+      ],
+      "query": {
+        "sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Air_China> <http://dbpedia.org/ontology/headquarter> ?uri . ?uri a <http://dbpedia.org/class/yago/City108524735> }"
+      },
+      "answers": {
+        "uri": { "type": "uri", "value": "http://dbpedia.org/resource/Beijing" }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Air_China",
+          "surface form": "Air China"
+        }
+      ],
+      "relations": [
+        { "URI": "http://dbpedia.org/ontology/city", "surface form": "city" },
+        {
+          "URI": "http://dbpedia.org/ontology/headquarter",
+          "surface form": "headquarter"
+        }
+      ]
+    },
+    {
+      "id": "438",
+      "question": [
+        {
+          "language": "en",
+          "string": "Give me all libraries established before 1400."
+        }
+      ],
+      "query": {
+        "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Library> ; <http://dbpedia.org/property/established> ?year FILTER ( ?year < 1400 ) }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Library_of_Pergamum"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Libraries_in_Brighton_and_Hove",
+          "surface form": "libraries"
+        },
+        { "URI": "http://dbpedia.org/resource/1400", "surface form": "1400" }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/established",
+          "surface form": "established"
+        }
+      ]
+    },
+    {
+      "id": "439",
+      "question": [
+        {
+          "language": "en",
+          "string": "Which beer brewing companies are located in North-Rhine Westphalia?"
+        }
+      ],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dct: <http://purl.org/dc/terms/> PREFIX dbc: <http://dbpedia.org/resource/Category:> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT ?company WHERE { ?company dct:subject dbc:Companies_based_in_North_Rhine-Westphalia ; rdf:type dbo:Brewery }"
+      },
+      "answers": {
+        "company": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Veltins_Brewery"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Museum_of_Beer_and_Brewing",
+          "surface form": "beer brewing companies"
+        },
+        {
+          "URI": "http://dbpedia.org/resource/North_Rhine-Westphalia",
+          "surface form": "North-Rhine Westphalia"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/property/stand",
+          "surface form": "located"
+        }
+      ]
+    },
+    {
+      "id": "440",
+      "question": [
+        {
+          "language": "en",
+          "string": "What were the names of the three ships by Columbus?"
+        }
+      ],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dct: <http://purl.org/dc/terms/> PREFIX dbc: <http://dbpedia.org/resource/Category:> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT ?uri WHERE { ?uri rdf:type dbo:Ship ; dct:subject dbc:Christopher_Columbus ; dct:subject dbc:Exploration_ships }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Pinta_(ship)"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Columbus",
+          "surface form": "Columbus"
+        }
+      ],
+      "relations": [
+        { "URI": "http://dbpedia.org/ontology/title", "surface form": "names" },
+        {
+          "URI": "http://dbpedia.org/ontology/shipBeam",
+          "surface form": "ships"
+        }
+      ]
+    },
+    {
+      "id": "441",
+      "question": [
+        {
+          "language": "en",
+          "string": "What is the highest mountain in Saxony Germany?"
+        }
+      ],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?m WHERE { ?m dbo:mountainRange dbr:Ore_Mountains ; dbo:elevation ?height } ORDER BY DESC(?height) LIMIT 1"
+      },
+      "answers": {
+        "m": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/Kl\u00ednovec"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Frankenstein,_Saxony",
+          "surface form": "Saxony Germany"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/elevation",
+          "surface form": "highest mountain"
+        }
+      ]
+    },
+    {
+      "id": "442",
+      "question": [
+        {
+          "language": "en",
+          "string": "How much is the population of mexico city ?"
+        }
+      ],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?Mexico_City WHERE { dbr:Mexico_City dbo:populationTotal ?Mexico_City }"
+      },
+      "answers": {
+        "Mexico_City": {
+          "type": "typed-literal",
+          "datatype": "http://www.w3.org/2001/XMLSchema#nonNegativeInteger",
+          "value": "9209944"
+        }
+      },
+      "entities": [],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/country",
+          "surface form": "population"
+        },
+        {
+          "URI": "http://dbpedia.org/ontology/municipality",
+          "surface form": "mexico city"
+        }
+      ]
+    },
+    {
+      "id": "443",
+      "question": [
+        {
+          "language": "en",
+          "string": "how big is the total area of North Rhine- Westphalia?"
+        }
+      ],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?tarea WHERE { dbr:North_Rhine-Westphalia dbo:areaTotal ?tarea }"
+      },
+      "answers": {
+        "tarea": {
+          "type": "typed-literal",
+          "datatype": "http://www.w3.org/2001/XMLSchema#double",
+          "value": "3.40841e+10"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/North_Rhine-Westphalia",
+          "surface form": "North Rhine- Westphalia"
+        }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/areaTotal",
+          "surface form": "total area"
+        }
+      ]
+    },
+    {
+      "id": "444",
+      "question": [
+        { "language": "en", "string": "how much is the population  Iraq?" }
+      ],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?pIraq WHERE { dbr:Iraq dbo:populationTotal ?pIraq }"
+      },
+      "answers": {
+        "pIraq": {
+          "type": "typed-literal",
+          "datatype": "http://www.w3.org/2001/XMLSchema#nonNegativeInteger",
+          "value": "44222503"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/Population",
+          "surface form": "population  Iraq"
+        }
+      ],
+      "relations": []
+    },
+    {
+      "id": "445",
+      "question": [
+        {
+          "language": "en",
+          "string": "how much is the population densty rank of germany?"
+        }
+      ],
+      "query": {
+        "sparql": "PREFIX dbr: <http://dbpedia.org/resource/> PREFIX dbp: <http://dbpedia.org/property/> SELECT ?rank WHERE { dbr:Germany dbp:populationDensityRank ?rank }"
+      },
+      "answers": {
+        "rank": {
+          "type": "typed-literal",
+          "datatype": "http://www.w3.org/2001/XMLSchema#integer",
+          "value": "58"
+        }
+      },
+      "entities": [
+        {
+          "URI": "http://dbpedia.org/resource/RANK",
+          "surface form": "population densty rank"
+        },
+        {
+          "URI": "http://dbpedia.org/resource/Germany",
+          "surface form": "germany"
+        }
+      ],
+      "relations": []
+    },
+    {
+      "id": "446",
+      "question": [
+        {
+          "language": "en",
+          "string": "Which holidays are celebrated around the world? test2"
+        }
+      ],
+      "query": {
+        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Holiday }"
+      },
+      "answers": {
+        "uri": {
+          "type": "uri",
+          "value": "http://dbpedia.org/resource/1981_Handsworth_riots"
+        }
+      },
+      "entities": [
+        { "URI": "http://dbpedia.org/resource/Testa", "surface form": "test2" }
+      ],
+      "relations": [
+        {
+          "URI": "http://dbpedia.org/ontology/feastDay",
+          "surface form": "holidays"
+        },
+        {
+          "URI": "http://dbpedia.org/ontology/party",
+          "surface form": "celebrated"
+        }
+      ]
+    }
+  ]
+}
diff --git a/QALD/combined-required.json b/QALD/combined-required.json
index 3739768..1c2b7a1 100644
--- a/QALD/combined-required.json
+++ b/QALD/combined-required.json
@@ -1,9787 +1 @@
-{
-  "questions": [
-    {
-      "id": "1",
-      "question": [
-        {
-          "language": "en",
-          "string": "Which presidents of the United States had more than three children?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX rdf: &lt;http://www.w3.org/1999/02/22-rdf-syntax-ns#&gt;PREFIX rdfs: &lt;http://www.w3.org/2000/01/rdf-schema#&gt;PREFIX onto: &lt;http://dbpedia.org/ontology/&gt;PREFIX yago: &lt;http://dbpedia.org/class/yago/&gt;SELECT DISTINCT ?uri ?stringWHERE {\t?uri rdf:type yago:PresidentsOfTheUnitedStates .        ?uri onto:child ?child .        OPTIONAL {?uri rdfs:label ?string. FILTER (lang(?string) = 'en') }} HAVING (count(?child) &gt; 3)"
-      }
-    },
-    {
-      "id": "2",
-      "question": [
-        {
-          "language": "en",
-          "string": "Give me the official websites of actors of the television show Charmed."
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX foaf: <http://xmlns.com/foaf/0.1/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Charmed> onto:starring ?actors . ?actors foaf:homepage ?uri }"
-      }
-    },
-    {
-      "id": "1",
-      "question": [
-        {
-          "language": "en",
-          "string": "Who is the daughter of Bill Clinton married to?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> PREFIX dbp: <http://dbpedia.org/property/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { dbr:Bill_Clinton dbo:child ?child . ?child dbo:spouse ?uri . ?uri rdfs:label ?string }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Marc_Mezvinsky"
-        }
-      }
-    },
-    {
-      "id": "2",
-      "question": [
-        {
-          "language": "en",
-          "string": "Which river does the Brooklyn Bridge cross?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Brooklyn_Bridge dbo:crosses ?uri }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/East_River"
-        }
-      }
-    },
-    {
-      "id": "3",
-      "question": [
-        {
-          "language": "en",
-          "string": "How many monarchical countries are there in Europe?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/>PREFIX yago: <http://dbpedia.org/class/yago/>PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>SELECT COUNT(DISTINCT ?uri) WHERE {\t?uri rdf:type yago:EuropeanCountries .        ?uri dbo:governmentType ?govern .        FILTER regex(?govern,'monarchy') .}"
-      },
-      "answers": {
-        "callret-0": {
-          "type": "typed-literal",
-          "datatype": "http://www.w3.org/2001/XMLSchema#integer",
-          "value": "0"
-        }
-      }
-    },
-    {
-      "id": "6",
-      "question": [
-        { "language": "en", "string": "Where did Abraham Lincoln die?" }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> SELECT DISTINCT ?uri WHERE { res:Abraham_Lincoln dbo:deathPlace ?uri. }"
-      }
-    },
-    {
-      "id": "7",
-      "question": [
-        {
-          "language": "en",
-          "string": "Is the wife of President Obama called Michelle?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX res: <http://dbpedia.org/resource/> PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> PREFIX onto: <http://dbpedia.org/ontology/> ASK WHERE { res:Barack_Obama onto:spouse ?spouse . ?spouse rdfs:label ?name FILTER regex(?name, \"Michelle\") }"
-      }
-    },
-    {
-      "id": "8",
-      "question": [
-        {
-          "language": "en",
-          "string": "Which states of Germany are governed by the Social Democratic Party?"
-        }
-      ],
-      "query": {
-        "sparql": "SELECT DISTINCT ?uri WHERE {  ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/class/yago/StatesOfGermany> .  { ?uri <http://dbpedia.org/ontology/leaderParty> <http://dbpedia.org/resource/Social_Democratic_Party_of_Germany> . } UNION  { ?uri <http://dbpedia.org/property/rulingParty> 'SPD'@en . } } "
-      }
-    },
-    {
-      "id": "4",
-      "question": [
-        {
-          "language": "en",
-          "string": "Which U.S. states possess gold minerals?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX yago: <http://dbpedia.org/class/yago/> PREFIX dbp: <http://dbpedia.org/property/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type yago:WikicatStatesOfTheUnitedStates ; dbp:mineral ?mineral FILTER regex(?mineral, \"gold\", \"i\") }"
-      },
-      "answers": {
-        "uri": { "type": "uri", "value": "http://dbpedia.org/resource/Alaska" }
-      }
-    },
-    {
-      "id": "10",
-      "question": [
-        { "language": "en", "string": "In which country does the Nile start?" }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Nile dbo:sourceCountry ?uri }"
-      }
-    },
-    {
-      "id": "11",
-      "question": [
-        {
-          "language": "en",
-          "string": "Which locations have more than two caves?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX onto: &lt;http://dbpedia.org/ontology/&gt;PREFIX rdf: &lt;http://www.w3.org/1999/02/22-rdf-syntax-ns#&gt;PREFIX rdfs: &lt;http://www.w3.org/2000/01/rdf-schema#&gt;SELECT DISTINCT ?uri ?stringWHERE {               ?cave rdf:type onto:Cave .         ?cave onto:location ?uri .        OPTIONAL {?uri rdfs:label ?string. FILTER (lang(?string) = 'en') }} HAVING (count(?cave) &gt; 2)"
-      }
-    },
-    {
-      "id": "12",
-      "question": [{ "language": "en", "string": "Is proinsulin a protein?" }],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> ASK WHERE { res:Proinsulin rdf:type dbo:Protein }"
-      }
-    },
-    {
-      "id": "13",
-      "question": [
-        {
-          "language": "en",
-          "string": "Which classis does the Millepede belong to?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbp: <http://dbpedia.org/property/>PREFIX res: <http://dbpedia.org/resource/>PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>SELECT DISTINCT ?uri ?stringWHERE {       res:Millipede dbp:classis ?string .       ?uri rdfs:label ?string .}"
-      }
-    },
-    {
-      "id": "5",
-      "question": [
-        { "language": "en", "string": "How tall is Claudia Schiffer?" }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?height WHERE { res:Claudia_Schiffer dbo:height ?height }"
-      },
-      "answers": {
-        "height": {
-          "type": "typed-literal",
-          "datatype": "http://www.w3.org/2001/XMLSchema#double",
-          "value": "1.8"
-        }
-      }
-    },
-    {
-      "id": "6",
-      "question": [{ "language": "en", "string": "Who created Goofy?" }],
-      "query": {
-        "sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Goofy> <http://dbpedia.org/ontology/creator> ?uri }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Bob_Ogle"
-        }
-      }
-    },
-    {
-      "id": "16",
-      "question": [
-        {
-          "language": "en",
-          "string": "Give me the capitals of all U.S. states."
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX onto: &lt;http://dbpedia.org/ontology/&gt;PREFIX rdf: &lt;http://www.w3.org/1999/02/22-rdf-syntax-ns#&gt;PREFIX rdfs: &lt;http://www.w3.org/2000/01/rdf-schema#&gt;PREFIX yago: &lt;http://dbpedia.org/class/yago/&gt;SELECT DISTINCT ?uri ?stringWHERE{ \t?states rdf:type yago:StatesOfTheUnitedStates .        ?states onto:capital ?uri .        OPTIONAL {?uri rdfs:label ?string. FILTER (lang(?string) = 'en') }}"
-      }
-    },
-    {
-      "id": "17",
-      "question": [
-        {
-          "language": "en",
-          "string": "Give me all cities in New Jersey with more than 100000 inhabitants."
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX dbp: <http://dbpedia.org/property/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:City ; dbo:isPartOf res:New_Jersey ; dbo:populationTotal ?inhabitants FILTER ( ?inhabitants > 100000 ) }"
-      }
-    },
-    {
-      "id": "7",
-      "question": [
-        {
-          "language": "en",
-          "string": "Which museum exhibits The Scream by Munch?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:The_Scream dbo:museum ?uri }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/National_Gallery_(Norway)"
-        }
-      }
-    },
-    {
-      "id": "19",
-      "question": [
-        {
-          "language": "en",
-          "string": "Is Egypts largest city also its capital?"
-        }
-      ],
-      "query": {
-        "sparql": "ASK WHERE { <http://dbpedia.org/resource/Egypt> <http://dbpedia.org/ontology/largestCity> ?large ; <http://dbpedia.org/ontology/capital> ?capital FILTER ( ?large = ?capital ) }"
-      }
-    },
-    {
-      "id": "20",
-      "question": [
-        { "language": "en", "string": "What is the revenue of IBM?" }
-      ],
-      "query": {
-        "sparql": "PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT ?number WHERE { res:IBM onto:revenue ?number }"
-      }
-    },
-    {
-      "id": "21",
-      "question": [{ "language": "en", "string": "Which states border Utah?" }],
-      "query": {
-        "sparql": "PREFIX res: &lt;http://dbpedia.org/resource/&gt;PREFIX dbpedia2: &lt;http://dbpedia.org/property/&gt;PREFIX yago: &lt;http://dbpedia.org/class/yago/&gt;SELECT DISTINCT ?uri ?stringWHERE {         {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 . }}"
-      }
-    },
-    {
-      "id": "8",
-      "question": [
-        { "language": "en", "string": "In which country is the Limerick Lake?" }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Limerick_Lake dbo:country ?uri }"
-      },
-      "answers": {
-        "uri": { "type": "uri", "value": "http://dbpedia.org/resource/Canada" }
-      }
-    },
-    {
-      "id": "9",
-      "question": [
-        {
-          "language": "en",
-          "string": "Which television shows were created by Walt Disney?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:TelevisionShow ; dbo:creator res:Walt_Disney }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Disney_anthology_television_series"
-        }
-      }
-    },
-    {
-      "id": "10",
-      "question": [
-        {
-          "language": "en",
-          "string": "Which mountain is the highest after the Annapurna?"
-        }
-      ],
-      "query": {
-        "sparql": "SELECT DISTINCT ?uri WHERE {  <http://dbpedia.org/resource/Annapurna> <http://dbpedia.org/ontology/elevation> ?elevation .  ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Mountain> .  ?uri <http://dbpedia.org/ontology/elevation> ?otherelevation .  FILTER (?otherelevation < ?elevation) . } ORDER BY DESC(?otherelevation) OFFSET 0 LIMIT 1 "
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Gasherbrum_I"
-        }
-      }
-    },
-    {
-      "id": "11",
-      "question": [
-        {
-          "language": "en",
-          "string": "In which films directed by Garry Marshall was Julia Roberts starring?"
-        }
-      ],
-      "query": {
-        "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Film> ; <http://dbpedia.org/ontology/starring> <http://dbpedia.org/resource/Julia_Roberts> ; <http://dbpedia.org/ontology/director> <http://dbpedia.org/resource/Garry_Marshall> }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Valentine's_Day_(2010_film)"
-        }
-      }
-    },
-    {
-      "id": "12",
-      "question": [
-        {
-          "language": "en",
-          "string": "Which bridges are of the same type as the Manhattan Bridge?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX dbr: <http://dbpedia.org/resource/> SELECT DISTINCT ?bridge WHERE { dbr:Manhattan_Bridge dbo:type ?type . ?bridge dbo:type ?type ; rdf:type dbo:Bridge }"
-      },
-      "answers": {
-        "bridge": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Ambassador_Bridge"
-        }
-      }
-    },
-    {
-      "id": "27",
-      "question": [
-        {
-          "language": "en",
-          "string": "Was U.S. president Jackson involved in a war?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> ASK WHERE { res:Andrew_Jackson dbo:battle ?battle }"
-      }
-    },
-    {
-      "id": "28",
-      "question": [
-        {
-          "language": "en",
-          "string": "Which European countries are a constitutional monarchy?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX onto: &lt;http://dbpedia.org/ontology/&gt;PREFIX yago: &lt;http://dbpedia.org/class/yago/&gt;PREFIX rdf: &lt;http://www.w3.org/1999/02/22-rdf-syntax-ns#&gt;PREFIX rdfs: &lt;http://www.w3.org/2000/01/rdf-schema#&gt;PREFIX res: &lt;http://dbpedia.org/resource/&gt;SELECT DISTINCT ?uri ?stringWHERE {\t?uri rdf:type yago:EuropeanCountries .        ?uri onto:governmentType res:Constitutional_monarchy .        OPTIONAL {?uri rdfs:label ?string. FILTER (lang(?string) = 'en') }}"
-      }
-    },
-    {
-      "id": "13",
-      "question": [
-        { "language": "en", "string": "Who is the author of WikiLeaks?" }
-      ],
-      "query": {
-        "sparql": "PREFIX res: <http://dbpedia.org/resource/> PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT ?uri WHERE { res:WikiLeaks onto:author ?uri }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Julian_Assange"
-        }
-      }
-    },
-    {
-      "id": "14",
-      "question": [
-        {
-          "language": "en",
-          "string": "Which state of the United States of America has the highest density?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX yago: <http://dbpedia.org/class/yago/> PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> PREFIX dbp: <http://dbpedia.org/property/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT ?uri WHERE { ?uri dbp:densityrank ?density } ORDER BY ASC(?density) LIMIT 1"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Prince_Edward_Island"
-        }
-      }
-    },
-    {
-      "id": "15",
-      "question": [
-        {
-          "language": "en",
-          "string": "What is the currency of the Czech Republic?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Czech_Republic dbo:currency ?uri }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Czech_koruna"
-        }
-      }
-    },
-    {
-      "id": "16",
-      "question": [
-        {
-          "language": "en",
-          "string": "Which countries in the European Union adopted the Euro?"
-        }
-      ],
-      "query": {
-        "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Country> { ?uri <http://dbpedia.org/ontology/currency> <http://dbpedia.org/resource/Euro> } UNION { ?uri <http://dbpedia.org/property/currencyCode> \"EUR\"@en } }"
-      },
-      "answers": {
-        "uri": { "type": "uri", "value": "http://dbpedia.org/resource/Andorra" }
-      }
-    },
-    {
-      "id": "17",
-      "question": [
-        { "language": "en", "string": "What is the area code of Berlin?" }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?string WHERE { res:Berlin dbo:areaCode ?string }"
-      },
-      "answers": { "string": { "type": "literal", "value": "030" } }
-    },
-    {
-      "id": "18",
-      "question": [
-        {
-          "language": "en",
-          "string": "Which countries have more than two official languages?"
-        }
-      ],
-      "query": {
-        "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Country> ; <http://dbpedia.org/ontology/officialLanguage> ?language } GROUP BY ?uri HAVING ( COUNT(?language) > 2 )"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Democratic_Federal_Yugoslavia"
-        }
-      }
-    },
-    {
-      "id": "35",
-      "question": [
-        { "language": "en", "string": "Who is the owner of Universal Studios?" }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Universal_Studios dbo:owner ?uri }"
-      }
-    },
-    {
-      "id": "36",
-      "question": [
-        {
-          "language": "en",
-          "string": "Through which countries does the Yenisei river flow?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX res: <http://dbpedia.org/resource/> PREFIX dbp: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Yenisei_River <http://dbpedia.org/ontology/country> ?uri }"
-      }
-    },
-    {
-      "id": "37",
-      "question": [
-        { "language": "en", "string": "When did Germany join the EU?" }
-      ],
-      "query": {
-        "sparql": "PREFIX res: &lt;http://dbpedia.org/resource/&gt;PREFIX dbpedia2: &lt;http://dbpedia.org/property/&gt;SELECT ?dateWHERE {               res:Germany dbpedia2:accessioneudate ?date .      }"
-      }
-    },
-    {
-      "id": "38",
-      "question": [
-        {
-          "language": "en",
-          "string": "Which monarchs of the United Kingdom were married to a German?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX yago: <http://dbpedia.org/class/yago/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type yago:WikicatMonarchsOfTheUnitedKingdom ; dbo:spouse ?spouse . ?spouse dbo:birthPlace res:Germany }"
-      }
-    },
-    {
-      "id": "39",
-      "question": [
-        { "language": "en", "string": "When was the Battle of Gettysburg?" }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/>PREFIX res: <http://dbpedia.org/resource/>SELECT DISTINCT ?date WHERE {        res:Battle_of_Gettysburg dbo:date ?date .}"
-      }
-    },
-    {
-      "id": "19",
-      "question": [
-        {
-          "language": "en",
-          "string": "What is the highest mountain in Germany?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT ?uri WHERE { ?uri rdf:type onto:Mountain ; onto:elevation ?elevation ; onto:locatedInArea <http://dbpedia.org/resource/Germany> } ORDER BY DESC(?elevation) LIMIT 1"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Zugspitze"
-        }
-      }
-    },
-    {
-      "id": "20",
-      "question": [
-        { "language": "en", "string": "Give me all soccer clubs in Spain." }
-      ],
-      "query": {
-        "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/SoccerClub> { ?uri <http://dbpedia.org/ontology/ground> <http://dbpedia.org/resource/Spain> } UNION { ?uri <http://dbpedia.org/property/ground> ?ground FILTER regex(?ground, \"Spain\") } }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/And\u00e9s_CF"
-        }
-      }
-    },
-    {
-      "id": "21",
-      "question": [
-        {
-          "language": "en",
-          "string": "What are the official languages of the Philippines?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Philippines dbo:officialLanguage ?uri }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/English_language"
-        }
-      }
-    },
-    {
-      "id": "43",
-      "question": [
-        { "language": "en", "string": "Who is the mayor of New York City?" }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:New_York_City dbo:leaderName ?uri }"
-      }
-    },
-    {
-      "id": "22",
-      "question": [
-        { "language": "en", "string": "Who designed the Brooklyn Bridge?" }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Brooklyn_Bridge dbo:architect ?uri }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/John_A._Roebling"
-        }
-      }
-    },
-    {
-      "id": "23",
-      "question": [
-        {
-          "language": "en",
-          "string": "Which telecommunications organizations are located in Belgium?"
-        }
-      ],
-      "query": {
-        "sparql": "SELECT (COUNT(DISTINCT ?uri) AS ?c) WHERE { ?uri a <http://dbpedia.org/ontology/Organisation> { ?uri <http://dbpedia.org/ontology/industry> <http://dbpedia.org/resource/Telecommunication> } UNION { ?uri <http://dbpedia.org/property/industry> ?industry FILTER regex(?industry, \"Telecommunications\") } { ?uri <http://dbpedia.org/ontology/location> <http://dbpedia.org/resource/Belgium> } UNION { ?uri <http://dbpedia.org/property/locationCountry> \"Belgium\"@en } }"
-      },
-      "answers": {
-        "c": {
-          "type": "typed-literal",
-          "datatype": "http://www.w3.org/2001/XMLSchema#integer",
-          "value": "7"
-        }
-      }
-    },
-    {
-      "id": "24",
-      "question": [
-        {
-          "language": "en",
-          "string": "What is the profession of Frank Herbert?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbpedia2: <http://dbpedia.org/property/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?string WHERE { res:Frank_Herbert dbpedia2:occupation ?string }"
-      },
-      "answers": {
-        "string": { "type": "literal", "xml:lang": "en", "value": "Novelist" }
-      }
-    },
-    {
-      "id": "25",
-      "question": [
-        {
-          "language": "en",
-          "string": "What is the highest place of Karakoram?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Karakoram dbp:highest ?uri }"
-      },
-      "answers": {
-        "uri": { "type": "uri", "value": "http://dbpedia.org/resource/K2" }
-      }
-    },
-    {
-      "id": "26",
-      "question": [
-        { "language": "en", "string": "Give me the homepage of Forbes." }
-      ],
-      "query": {
-        "sparql": "PREFIX res: <http://dbpedia.org/resource/> PREFIX foaf: <http://xmlns.com/foaf/0.1/> SELECT DISTINCT ?string WHERE { res:Forbes foaf:homepage ?string }"
-      },
-      "answers": {
-        "string": {
-          "type": "uri",
-          "value": "https://www.forbes.com/%7Cforbes.com"
-        }
-      }
-    },
-    {
-      "id": "49",
-      "question": [
-        {
-          "language": "en",
-          "string": "Which companies are in the computer software industry?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX rdfs: &lt;http://www.w3.org/2000/01/rdf-schema#&gt;PREFIX rdf: &lt;http://www.w3.org/1999/02/22-rdf-syntax-ns#&gt;PREFIX dbpedia2: &lt;http://dbpedia.org/property/&gt;PREFIX onto: &lt;http://dbpedia.org/ontology/&gt;PREFIX res: &lt;http://dbpedia.org/resource/&gt;SELECT DISTINCT ?uri ?stringWHERE{ \t?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') }}"
-      }
-    },
-    {
-      "id": "50",
-      "question": [
-        { "language": "en", "string": "What did Bruce Carver die from?" }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Bruce_Carver dbo:deathCause ?uri }"
-      }
-    },
-    {
-      "id": "51",
-      "question": [{ "language": "en", "string": "Give me all school types." }],
-      "query": {
-        "sparql": "PREFIX yago: <http://dbpedia.org/class/yago/>PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>SELECT DISTINCT ?uri WHERE { \t?uri rdf:type yago:SchoolTypes .}"
-      }
-    },
-    {
-      "id": "27",
-      "question": [
-        { "language": "en", "string": "Which presidents were born in 1945?" }
-      ],
-      "query": {
-        "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/President> ; <http://dbpedia.org/ontology/birthDate> ?date FILTER regex(?date, \"^1945\") }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Vladislav_Ardzinba"
-        }
-      }
-    },
-    {
-      "id": "53",
-      "question": [
-        {
-          "language": "en",
-          "string": "Who are the presidents of the United States?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX rdf: &lt;http://www.w3.org/1999/02/22-rdf-syntax-ns#&gt;PREFIX yago: &lt;http://dbpedia.org/class/yago/&gt;PREFIX onto: &lt;http://dbpedia.org/ontology/&gt;PREFIX res: &lt;http://dbpedia.org/resource/&gt;PREFIX rdfs: &lt;http://www.w3.org/2000/01/rdf-schema#&gt;PREFIX prop: &lt;http://dbpedia.org/property/&gt;SELECT DISTINCT ?uri ?stringWHERE {        {          ?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') }}"
-      }
-    },
-    {
-      "id": "28",
-      "question": [
-        { "language": "en", "string": "Who was the wife of President Lincoln?" }
-      ],
-      "query": {
-        "sparql": "PREFIX dbr: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT ?uri ?string WHERE { dbr:Abraham_Lincoln onto:spouse ?uri }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Mary_Todd_Lincoln"
-        }
-      }
-    },
-    {
-      "id": "29",
-      "question": [
-        {
-          "language": "en",
-          "string": "Who developed the video game World of Warcraft?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:World_of_Warcraft dbo:developer ?uri }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Blizzard_Entertainment"
-        }
-      }
-    },
-    {
-      "id": "56",
-      "question": [
-        {
-          "language": "en",
-          "string": "What is the official website of Tom Hanks?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX rdfs: &lt;http://www.w3.org/2000/01/rdf-schema#&gt;PREFIX foaf: &lt;http://xmlns.com/foaf/0.1/&gt;SELECT ?uriWHERE{ \t?subject  rdfs:label 'Tom Hanks'@en .        ?subject foaf:homepage ?uri}"
-      }
-    },
-    {
-      "id": "57",
-      "question": [
-        {
-          "language": "en",
-          "string": "List all episodes of the first season of the HBO television series The Sopranos!"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { ?uri dbo:series res:The_Sopranos ; dbo:seasonNumber 1 }"
-      }
-    },
-    {
-      "id": "30",
-      "question": [
-        { "language": "en", "string": "Who produced the most films?" }
-      ],
-      "query": {
-        "sparql": "SELECT DISTINCT ?uri WHERE { ?film <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film> . ?film <http://dbpedia.org/ontology/producer> ?uri . } ORDER BY DESC(COUNT(?film)) OFFSET 0 LIMIT 1"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Jesse_L._Lasky"
-        }
-      }
-    },
-    {
-      "id": "59",
-      "question": [
-        {
-          "language": "en",
-          "string": "Which people have as their given name Jimmy?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX rdfs: &lt;http://www.w3.org/2000/01/rdf-schema#&gt;PREFIX rdf: &lt;http://www.w3.org/1999/02/22-rdf-syntax-ns#&gt;PREFIX foaf: &lt;http://xmlns.com/foaf/0.1/&gt;SELECT DISTINCT ?uri ?stringWHERE {\t?uri rdf:type foaf:Person.               ?uri foaf:givenName 'Jimmy'@en   .        OPTIONAL {?uri rdfs:label ?string . FILTER (lang(?string) = 'en') }}"
-      }
-    },
-    {
-      "id": "60",
-      "question": [
-        {
-          "language": "en",
-          "string": "Is there a video game called Battle Chess?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> ASK WHERE { ?uri rdf:type dbo:VideoGame ; rdfs:label \"Battle Chess\"@en }"
-      }
-    },
-    {
-      "id": "31",
-      "question": [
-        {
-          "language": "en",
-          "string": "Which mountains are higher than the Nanga Parbat?"
-        }
-      ],
-      "query": {
-        "sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Nanga_Parbat> <http://dbpedia.org/ontology/elevation> ?elevation . ?uri a <http://dbpedia.org/ontology/Mountain> { ?uri <http://dbpedia.org/ontology/elevation> ?otherelevation } UNION { ?uri <http://dbpedia.org/property/elevationM> ?otherelevation } FILTER ( ?otherelevation > ?elevation ) }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/1974_French_Mount_Everest_expedition"
-        }
-      }
-    },
-    {
-      "id": "62",
-      "question": [
-        { "language": "en", "string": "Who created English Wikipedia?" }
-      ],
-      "query": {
-        "sparql": "PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT ?uri WHERE { <http://dbpedia.org/resource/Wikipedia> onto:author ?uri }"
-      }
-    },
-    {
-      "id": "32",
-      "question": [
-        {
-          "language": "en",
-          "string": "Give me all actors starring in Batman Begins."
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/>PREFIX res: <http://dbpedia.org/resource/>PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>SELECT DISTINCT ?uri ?string WHERE {\tres:Batman_Begins dbo:starring ?uri .\tOPTIONAL { ?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Gary_Oldman"
-        },
-        "string": {
-          "type": "literal",
-          "xml:lang": "en",
-          "value": "Gary Oldman"
-        }
-      }
-    },
-    {
-      "id": "64",
-      "question": [
-        {
-          "language": "en",
-          "string": "Which software has been developed by organizations founded in California?"
-        }
-      ],
-      "query": {
-        "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Software> . ?company a <http://dbpedia.org/ontology/Company> . ?uri <http://dbpedia.org/ontology/developer> ?company . ?company <http://dbpedia.org/ontology/foundationPlace> <http://dbpedia.org/resource/California> }"
-      }
-    },
-    {
-      "id": "65",
-      "question": [
-        {
-          "language": "en",
-          "string": "Which companies work in the aerospace industry as well as on nuclear reactor technology?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo:  <http://dbpedia.org/ontology/>PREFIX dbp: <http://dbpedia.org/property/>PREFIX res:  <http://dbpedia.org/resource/>PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>SELECT DISTINCT ?uriWHERE { \t?uri rdf:type dbo:Company  .\t?uri dbp:industry res:Aerospace .        ?uri dbp:industry res:Nuclear_reactor_technology .}"
-      }
-    },
-    {
-      "id": "66",
-      "question": [
-        {
-          "language": "en",
-          "string": "Is Christian Bale starring in Batman Begins?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> ASK WHERE { res:Batman_Begins dbo:starring res:Christian_Bale }"
-      }
-    },
-    {
-      "id": "33",
-      "question": [
-        {
-          "language": "en",
-          "string": "Give me the websites of companies with more than 500000 employees."
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX foaf: <http://xmlns.com/foaf/0.1/> PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> SELECT distinct ?web WHERE { ?sub dbo:numberOfEmployees ?obj . ?sub foaf:homepage ?web FILTER( xsd:integer(?obj) > 500000 ) . }"
-      },
-      "answers": { "web": { "type": "uri", "value": "https://www.aus.com/" } }
-    },
-    {
-      "id": "34",
-      "question": [
-        { "language": "en", "string": "Which actors were born in Germany?" }
-      ],
-      "query": {
-        "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Actor> { ?uri <http://dbpedia.org/ontology/birthPlace> <http://dbpedia.org/resource/Germany> } UNION { ?uri <http://dbpedia.org/ontology/birthPlace> ?place . ?place <http://dbpedia.org/ontology/country> <http://dbpedia.org/resource/Germany> } }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Friederike_Caroline_Neuber"
-        }
-      }
-    },
-    {
-      "id": "69",
-      "question": [
-        {
-          "language": "en",
-          "string": "Which country does the Airedale Terrier come from?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX rdfs: &lt;http://www.w3.org/2000/01/rdf-schema#&gt;PREFIX prop: &lt;http://dbpedia.org/property/&gt;SELECT ?stringWHERE {\t?dog rdfs:label 'Airedale Terrier'@en .        ?dog prop:country ?string      }"
-      }
-    },
-    {
-      "id": "70",
-      "question": [
-        {
-          "language": "en",
-          "string": "Which birds are there in the United States?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX yago: &lt;http://dbpedia.org/class/yago/&gt;PREFIX rdfs: &lt;http://www.w3.org/2000/01/rdf-schema#&gt;PREFIX rdf: &lt;http://www.w3.org/1999/02/22-rdf-syntax-ns#&gt;SELECT DISTINCT ?uri ?stringWHERE {\t?uri rdf:type yago:BirdsOfTheUnitedStates.        OPTIONAL {?uri rdfs:label ?string . FILTER (lang(?string) = 'en') }}"
-      }
-    },
-    {
-      "id": "71",
-      "question": [
-        { "language": "en", "string": "Give me all European Capitals!" }
-      ],
-      "query": {
-        "sparql": "PREFIX yago: &lt;http://dbpedia.org/class/yago/&gt;PREFIX rdfs: &lt;http://www.w3.org/2000/01/rdf-schema#&gt;PREFIX rdf: &lt;http://www.w3.org/1999/02/22-rdf-syntax-ns#&gt;SELECT ?uri ?stringWHERE { \t?uri rdf:type yago:CapitalsInEurope.\tOPTIONAL {?uri rdfs:label ?string . FILTER (lang(?string) = 'en') }}"
-      }
-    },
-    {
-      "id": "72",
-      "question": [
-        {
-          "language": "en",
-          "string": "Which cities have more than 2 million inhabitants?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX rdfs: &lt;http://www.w3.org/2000/01/rdf-schema#&gt;PREFIX rdf: &lt;http://www.w3.org/1999/02/22-rdf-syntax-ns#&gt;PREFIX prop: &lt;http://dbpedia.org/property/&gt;PREFIX xsd: &lt;http://www.w3.org/2001/XMLSchema#&gt;PREFIX onto: &lt;http://dbpedia.org/ontology/&gt;SELECT DISTINCT ?uri ?stringWHERE { \t?uri rdf:type onto:City.      { ?uri prop:population ?population. }         UNION       { ?uri prop:populationUrban ?population. }\tFILTER (xsd:integer(?population) &gt; 2000000) .\tOPTIONAL {?uri rdfs:label ?string . FILTER (lang(?string) = 'en') }}"
-      }
-    },
-    {
-      "id": "35",
-      "question": [
-        { "language": "en", "string": "Who was Tom Hanks married to?" }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> SELECT DISTINCT ?uri WHERE { dbr:Tom_Hanks dbo:spouse ?uri }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Rita_Wilson"
-        }
-      }
-    },
-    {
-      "id": "74",
-      "question": [
-        { "language": "en", "string": "When was DBpedia released?" }
-      ],
-      "query": {
-        "sparql": "PREFIX onto: &lt;http://dbpedia.org/ontology/&gt;PREFIX rdf: &lt;http://www.w3.org/1999/02/22-rdf-syntax-ns#&gt;PREFIX rdfs: &lt;http://www.w3.org/2000/01/rdf-schema#&gt;SELECT ?dateWHERE {\t?website rdf:type onto:Software .        ?website onto:releaseDate ?date .        ?website rdfs:label 'DBpedia'@en   }"
-      }
-    },
-    {
-      "id": "36",
-      "question": [
-        { "language": "en", "string": "Which people were born in Heraklion?" }
-      ],
-      "query": {
-        "sparql": "PREFIX yago: <http://dbpedia.org/class/yago/> PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Person ; onto:birthPlace <http://dbpedia.org/resource/Heraklion>. }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Anastasios_Triantafyllou"
-        }
-      }
-    },
-    {
-      "id": "37",
-      "question": [
-        {
-          "language": "en",
-          "string": "Which caves have more than 3 entrances?"
-        }
-      ],
-      "query": {
-        "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Cave> ; <http://dbpedia.org/property/entranceCount> ?entrance FILTER ( ?entrance > 3 ) }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Amat\u00e9rsk\u00e1_Cave"
-        }
-      }
-    },
-    {
-      "id": "38",
-      "question": [
-        {
-          "language": "en",
-          "string": "Give me all films produced by Hal Roach."
-        }
-      ],
-      "query": {
-        "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Film> ; <http://dbpedia.org/ontology/producer> <http://dbpedia.org/resource/Hal_Roach> }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/All_Aboard_(1917_film)"
-        }
-      }
-    },
-    {
-      "id": "39",
-      "question": [
-        {
-          "language": "en",
-          "string": "Which software has been published by Mean Hamster Software?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX res: <http://dbpedia.org/resource/> PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Software { ?uri prop:publisher \"Mean Hamster Software\"@en } UNION { ?uri onto:publisher res:Mean_Hamster_Software } }"
-      },
-      "answers": {
-        "uri": { "type": "uri", "value": "http://dbpedia.org/resource/Riven" }
-      }
-    },
-    {
-      "id": "79",
-      "question": [
-        { "language": "en", "string": "What languages are spoken in Estonia?" }
-      ],
-      "query": {
-        "sparql": "PREFIX rdfs: &lt;http://www.w3.org/2000/01/rdf-schema#&gt;PREFIX rdf: &lt;http://www.w3.org/1999/02/22-rdf-syntax-ns#&gt;PREFIX onto: &lt;http://dbpedia.org/ontology/&gt;SELECT DISTINCT ?uri ?stringWHERE {       ?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') }}"
-      }
-    },
-    {
-      "id": "40",
-      "question": [{ "language": "en", "string": "Who owns Aldi?" }],
-      "query": {
-        "sparql": "PREFIX res: <http://dbpedia.org/resource/> PREFIX dbp: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Aldi dbp:founders ?uri }"
-      },
-      "answers": {
-        "uri": {
-          "type": "literal",
-          "xml:lang": "en",
-          "value": "Karl and Theo Albrecht"
-        }
-      }
-    },
-    {
-      "id": "81",
-      "question": [
-        {
-          "language": "en",
-          "string": "Which capitals in Europe were host cities of the summer olympic games?"
-        }
-      ],
-      "query": {
-        "sparql": "SELECT DISTINCT ?uri WHERE {  ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/class/yago/CapitalsInEurope> .  ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/class/yago/HostCitiesOfTheSummerOlympicGames> . } "
-      }
-    },
-    {
-      "id": "82",
-      "question": [
-        {
-          "language": "en",
-          "string": "Who has been the 5th president of the United States of America?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/>SELECT DISTINCT ?uri WHERE {\t?uri dbo:orderInOffice '5th President of the United States'@en .}"
-      }
-    },
-    {
-      "id": "83",
-      "question": [{ "language": "en", "string": "Who is called Dana?" }],
-      "query": {
-        "sparql": "PREFIX rdf: &lt;http://www.w3.org/1999/02/22-rdf-syntax-ns#&gt;PREFIX rdfs: &lt;http://www.w3.org/2000/01/rdf-schema#&gt;PREFIX foaf: &lt;http://xmlns.com/foaf/0.1/&gt;PREFIX prop: &lt;http://dbpedia.org/property/&gt;SELECT DISTINCT ?uri ?stringWHERE {      { ?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') }       }"
-      }
-    },
-    {
-      "id": "41",
-      "question": [
-        {
-          "language": "en",
-          "string": "Which music albums contain the song Last Christmas?"
-        }
-      ],
-      "query": {
-        "sparql": "SELECT DISTINCT ?uri WHERE { ?single <http://dbpedia.org/ontology/album> ?uri ; <http://www.w3.org/2000/01/rdf-schema#label> \"Last Christmas\"@en }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Music_from_the_Edge_of_Heaven"
-        }
-      }
-    },
-    {
-      "id": "42",
-      "question": [
-        {
-          "language": "en",
-          "string": "Which books were written by Danielle Steel?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX foaf: <http://xmlns.com/foaf/0.1/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT ?uri WHERE { ?uri rdf:type onto:Book ; onto:author <http://dbpedia.org/resource/Danielle_Steel> }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Amazing_Grace_(novel)"
-        }
-      }
-    },
-    {
-      "id": "86",
-      "question": [
-        {
-          "language": "en",
-          "string": "Which companies are located in California, USA?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX rdfs: &lt;http://www.w3.org/2000/01/rdf-schema#&gt;PREFIX onto: &lt;http://dbpedia.org/ontology/&gt;PREFIX res: &lt;http://dbpedia.org/resource/&gt;SELECT DISTINCT ?uri ?stringWHERE{ \t?uri rdf:type onto:Organisation .        ?uri onto:location res:California .        OPTIONAL {?uri rdfs:label ?string . FILTER (lang(?string) = 'en') }}"
-      }
-    },
-    {
-      "id": "87",
-      "question": [
-        { "language": "en", "string": "Which genre does DBpedia belong to?" }
-      ],
-      "query": {
-        "sparql": "PREFIX prop: &lt;http://dbpedia.org/property/&gt;PREFIX onto: &lt;http://dbpedia.org/ontology/&gt;PREFIX rdf: &lt;http://www.w3.org/1999/02/22-rdf-syntax-ns#&gt;PREFIX rdfs: &lt;http://www.w3.org/2000/01/rdf-schema#&gt;SELECT ?uri ?stringWHERE {\t?dbpedia rdf:type onto:Software .        ?dbpedia onto:genre ?uri .        ?dbpedia rdfs:label 'DBpedia'@en .        OPTIONAL {?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } }"
-      }
-    },
-    {
-      "id": "43",
-      "question": [
-        {
-          "language": "en",
-          "string": "Which country has the most official languages?"
-        }
-      ],
-      "query": {
-        "sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Country> . ?uri <http://dbpedia.org/property/officialLanguages> ?language . } ORDER BY DESC(COUNT(?language)) OFFSET 0 LIMIT 1"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/South_Africa"
-        }
-      }
-    },
-    {
-      "id": "44",
-      "question": [
-        {
-          "language": "en",
-          "string": "In which programming language is GIMP written?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:GIMP dbo:programmingLanguage ?uri }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/C_(programming_language)"
-        }
-      }
-    },
-    {
-      "id": "45",
-      "question": [
-        {
-          "language": "en",
-          "string": "Who produced films starring Natalie Portman?"
-        }
-      ],
-      "query": {
-        "sparql": "SELECT DISTINCT ?uri WHERE { ?film a <http://dbpedia.org/ontology/Film> ; <http://dbpedia.org/ontology/starring> <http://dbpedia.org/resource/Natalie_Portman> ; <http://dbpedia.org/ontology/producer> ?uri }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/The_Wachowskis"
-        }
-      }
-    },
-    {
-      "id": "91",
-      "question": [
-        { "language": "en", "string": "Give me all movies with Tom Cruise!" }
-      ],
-      "query": {
-        "sparql": "PREFIX rdfs: &lt;http://www.w3.org/2000/01/rdf-schema#&gt;PREFIX onto: &lt;http://dbpedia.org/ontology/&gt;PREFIX res: &lt;http://dbpedia.org/resource/&gt;PREFIX rdf: &lt;http://www.w3.org/1999/02/22-rdf-syntax-ns#&gt;PREFIX prop: &lt;http://dbpedia.org/property/&gt;SELECT DISTINCT ?uri ?stringWHERE {\t?uri rdf:type onto:Film.\t{ ?uri prop:starring res:Tom_Cruise . }        UNION        { ?uri onto:starring res:Tom_Cruise . }\tOPTIONAL {?uri rdfs:label ?string . FILTER (lang(?string) = 'en') }}"
-      }
-    },
-    {
-      "id": "46",
-      "question": [
-        {
-          "language": "en",
-          "string": "In which films did Julia Roberts as well as Richard Gere play?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Film ; dbo:starring res:Julia_Roberts ; dbo:starring res:Richard_Gere }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Pretty_Woman"
-        }
-      }
-    },
-    {
-      "id": "93",
-      "question": [
-        { "language": "en", "string": "Give me all female German chancellors!" }
-      ],
-      "query": {
-        "sparql": "PREFIX rdf: &lt;http://www.w3.org/1999/02/22-rdf-syntax-ns#&gt;PREFIX rdfs: &lt;http://www.w3.org/2000/01/rdf-schema#&gt;PREFIX yago: &lt;http://dbpedia.org/class/yago/&gt;PREFIX prop: &lt;http://dbpedia.org/property/&gt;SELECT ?uri ?stringWHERE {\t?uri rdf:type yago:FemaleHeadsOfGovernment.        ?uri prop:office ?office .        FILTER regex(?office, 'Chancellor of Germany').                OPTIONAL {?uri rdfs:label ?string . FILTER (lang(?string) = 'en') }}"
-      }
-    },
-    {
-      "id": "47",
-      "question": [
-        {
-          "language": "en",
-          "string": "Who wrote the book The pillars of the Earth?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> SELECT DISTINCT ?uri WHERE { res:The_Pillars_of_the_Earth dbo:author ?uri }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Ken_Follett"
-        }
-      }
-    },
-    {
-      "id": "48",
-      "question": [
-        {
-          "language": "en",
-          "string": "How many films did Leonardo DiCaprio star in?"
-        }
-      ],
-      "query": {
-        "sparql": "SELECT (COUNT(DISTINCT ?uri) AS ?c) WHERE { ?uri a <http://dbpedia.org/ontology/Film> ; <http://dbpedia.org/ontology/starring> <http://dbpedia.org/resource/Leonardo_DiCaprio> }"
-      },
-      "answers": {
-        "c": {
-          "type": "typed-literal",
-          "datatype": "http://www.w3.org/2001/XMLSchema#integer",
-          "value": "33"
-        }
-      }
-    },
-    {
-      "id": "49",
-      "question": [
-        {
-          "language": "en",
-          "string": "Give me all soccer clubs in the Premier League."
-        }
-      ],
-      "query": {
-        "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/SoccerClub> ; <http://dbpedia.org/ontology/league> <http://dbpedia.org/resource/Premier_League> }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/2010\u201311_Tottenham_Hotspur_F.C._season"
-        }
-      }
-    },
-    {
-      "id": "50",
-      "question": [{ "language": "en", "string": "When was Capcom founded?" }],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/>PREFIX res: <http://dbpedia.org/resource/>SELECT DISTINCT ?date WHERE { res:Capcom dbo:foundingDate ?date .}"
-      },
-      "answers": {
-        "date": {
-          "type": "typed-literal",
-          "datatype": "http://www.w3.org/2001/XMLSchema#date",
-          "value": "1979-05-30"
-        }
-      }
-    },
-    {
-      "id": "51",
-      "question": [
-        {
-          "language": "en",
-          "string": "Which organizations were founded in 1950?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbp: <http://dbpedia.org/property/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> 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\") }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Danish_Defence_Intelligence_Service"
-        }
-      }
-    },
-    {
-      "id": "52",
-      "question": [
-        { "language": "en", "string": "What is the highest mountain?" }
-      ],
-      "query": {
-        "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Mountain> ; <http://dbpedia.org/ontology/elevation> ?elevation } ORDER BY DESC(?elevation) OFFSET 0 LIMIT 1"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Pico_Alto"
-        }
-      }
-    },
-    {
-      "id": "100",
-      "question": [
-        { "language": "en", "string": "Is Natalie Portman an actress?" }
-      ],
-      "query": {
-        "sparql": "PREFIX rdfs: &lt;http://www.w3.org/2000/01/rdf-schema#&gt;PREFIX rdf: &lt;http://www.w3.org/1999/02/22-rdf-syntax-ns#&gt;PREFIX onto: &lt;http://dbpedia.org/ontology/&gt;ASKWHERE { \t?subject rdf:type onto:Actor.      \t?subject rdfs:label 'Natalie Portman'@en.}"
-      }
-    },
-    {
-      "id": "53",
-      "question": [
-        {
-          "language": "en",
-          "string": "Which German cities have more than 250000 inhabitants?"
-        }
-      ],
-      "query": {
-        "sparql": "SELECT DISTINCT ?uri WHERE { { ?uri a <http://dbpedia.org/ontology/City> } UNION { ?uri a <http://dbpedia.org/ontology/Town> } ?uri <http://dbpedia.org/ontology/country> <http://dbpedia.org/resource/Germany> ; <http://dbpedia.org/ontology/populationTotal> ?population FILTER ( ?population > 250000 ) }"
-      },
-      "answers": {
-        "uri": { "type": "uri", "value": "http://dbpedia.org/resource/Berlin" }
-      }
-    },
-    {
-      "id": "102",
-      "question": [
-        {
-          "language": "en",
-          "string": "Who was the successor of John F. Kennedy?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:John_F._Kennedy dbo:successor ?uri }"
-      }
-    },
-    {
-      "id": "103",
-      "question": [
-        { "language": "en", "string": "Who is the mayor of Berlin?" }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Berlin dbp:leader ?uri }"
-      }
-    },
-    {
-      "id": "104",
-      "question": [
-        {
-          "language": "en",
-          "string": "How many students does the Free University in Amsterdam have?"
-        }
-      ],
-      "query": {
-        "sparql": "SELECT DISTINCT ?num WHERE {  <http://dbpedia.org/resource/VU_University_Amsterdam> <http://dbpedia.org/ontology/numberOfStudents> ?num . } "
-      }
-    },
-    {
-      "id": "54",
-      "question": [
-        {
-          "language": "en",
-          "string": "What is the second highest mountain on Earth?"
-        }
-      ],
-      "query": {
-        "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Mountain> ; <http://dbpedia.org/ontology/elevation> ?elevation } ORDER BY DESC(?elevation) OFFSET 1 LIMIT 1"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Alpide_belt"
-        }
-      }
-    },
-    {
-      "id": "106",
-      "question": [
-        {
-          "language": "en",
-          "string": "Give me all professional skateboarders from Sweden."
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbp: <http://dbpedia.org/property/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { ?uri dbo:occupation dbr:Skateboarder { ?uri dbo:birthPlace dbr:Sweden } UNION { ?uri dbo:birthPlace ?place . ?place dbo:country dbr:Sweden } }"
-      }
-    },
-    {
-      "id": "55",
-      "question": [
-        { "language": "en", "string": "When was Alberta admitted as province?" }
-      ],
-      "query": {
-        "sparql": "SELECT DISTINCT ?date WHERE { <http://dbpedia.org/resource/Alberta> <http://dbpedia.org/property/admittancedate> ?date }"
-      },
-      "answers": {
-        "date": {
-          "type": "typed-literal",
-          "datatype": "http://www.w3.org/2001/XMLSchema#date",
-          "value": "1905-09-01"
-        }
-      }
-    },
-    {
-      "id": "56",
-      "question": [
-        {
-          "language": "en",
-          "string": "To which countries does the Himalayan mountain system extend?"
-        }
-      ],
-      "query": {
-        "sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Himalayas> <http://dbpedia.org/ontology/country> ?uri }"
-      },
-      "answers": {
-        "uri": { "type": "uri", "value": "http://dbpedia.org/resource/Kashmir" }
-      }
-    },
-    {
-      "id": "57",
-      "question": [
-        {
-          "language": "en",
-          "string": "Give me a list of all trumpet players that were bandleaders."
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { ?uri dbo:occupation res:Bandleader ; dbo:instrument res:Trumpet }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Danny_Davis_(country_musician)"
-        }
-      }
-    },
-    {
-      "id": "58",
-      "question": [
-        {
-          "language": "en",
-          "string": "What is the total amount of men and women serving in the FDNY?"
-        }
-      ],
-      "query": {
-        "sparql": "SELECT DISTINCT ?num WHERE { <http://dbpedia.org/resource/New_York_City_Fire_Department> <http://dbpedia.org/property/employees> ?num }"
-      },
-      "answers": {
-        "num": {
-          "type": "typed-literal",
-          "datatype": "http://www.w3.org/2001/XMLSchema#integer",
-          "value": "17321"
-        }
-      }
-    },
-    {
-      "id": "59",
-      "question": [
-        {
-          "language": "en",
-          "string": "Who is the Formula 1 race driver with the most races?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:FormulaOneRacer ; dbo:races ?x } ORDER BY DESC(?x) OFFSET 0 LIMIT 1"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Jenson_Button"
-        }
-      }
-    },
-    {
-      "id": "60",
-      "question": [
-        {
-          "language": "en",
-          "string": "Give me all world heritage sites designated within the past five years."
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/>PREFIX dbp: <http://dbpedia.org/property/>PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>SELECT DISTINCT ?uri WHERE {\t?uri rdf:type dbo:WorldHeritageSite .\t?uri dbp:year ?x .\tFILTER ( ?x >= \"2008\"^^xsd:integer)}"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Amami-\u014cshima_Island,_Tokunoshima_Island,_northern_part_of_Okinawa_Island,_and_Iriomote_Island"
-        }
-      }
-    },
-    {
-      "id": "61",
-      "question": [
-        {
-          "language": "en",
-          "string": "Who is the youngest player in the Premier League?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { ?uri dbo:team ?team . ?league dbo:league res:Premier_League . ?league dbo:team ?team . ?uri dbo:birthDate ?date } ORDER BY DESC(?date) LIMIT 1"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Ben_Doak"
-        }
-      }
-    },
-    {
-      "id": "62",
-      "question": [
-        { "language": "en", "string": "Give me all members of Prodigy." }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:The_Prodigy dbo:bandMember ?uri }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Maxim_(musician)"
-        }
-      }
-    },
-    {
-      "id": "63",
-      "question": [
-        { "language": "en", "string": "What is the longest river?" }
-      ],
-      "query": {
-        "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/River> { ?uri <http://dbpedia.org/ontology/length> ?l } UNION { ?uri <http://dbpedia.org/property/length> ?l } } ORDER BY DESC(?l) OFFSET 0 LIMIT 1"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Indian_Ocean"
-        }
-      }
-    },
-    {
-      "id": "116",
-      "question": [
-        {
-          "language": "en",
-          "string": "Does the new Battlestar Galactica series have more episodes than the old one?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> ASK WHERE { <http://dbpedia.org/resource/Battlestar_Galactica_%281978_TV_series%29> dbo:numberOfEpisodes ?x . <http://dbpedia.org/resource/Battlestar_Galactica_%282004_TV_series%29> dbo:numberOfEpisodes ?y FILTER ( ?y > ?x ) }"
-      }
-    },
-    {
-      "id": "64",
-      "question": [
-        {
-          "language": "en",
-          "string": "Give me all cars that are produced in Germany."
-        }
-      ],
-      "query": {
-        "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Automobile> { ?uri <http://dbpedia.org/ontology/assembly> <http://dbpedia.org/resource/Germany> } UNION { ?uri <http://dbpedia.org/property/assembly> <http://dbpedia.org/resource/Germany> } UNION { { ?uri <http://dbpedia.org/ontology/manufacturer> ?x } UNION { ?uri <http://dbpedia.org/property/manufacturer> ?x } { ?x <http://dbpedia.org/ontology/locationCountry> <http://dbpedia.org/resource/Germany> } UNION { ?x <http://dbpedia.org/ontology/location> <http://dbpedia.org/resource/Germany> } } }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Wanderer_W24"
-        }
-      }
-    },
-    {
-      "id": "65",
-      "question": [
-        {
-          "language": "en",
-          "string": "Give me all people that were born in Vienna and died in Berlin."
-        }
-      ],
-      "query": {
-        "sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/birthPlace> <http://dbpedia.org/resource/Vienna> ; <http://dbpedia.org/ontology/deathPlace> <http://dbpedia.org/resource/Berlin> }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Hans_Fidesser"
-        }
-      }
-    },
-    {
-      "id": "66",
-      "question": [
-        { "language": "en", "string": "How tall is Michael Jordan?" }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?num WHERE { res:Michael_Jordan dbo:height ?num }"
-      },
-      "answers": {
-        "num": {
-          "type": "typed-literal",
-          "datatype": "http://www.w3.org/2001/XMLSchema#double",
-          "value": "1.9812"
-        }
-      }
-    },
-    {
-      "id": "67",
-      "question": [
-        { "language": "en", "string": "What is the capital of Canada?" }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Canada dbo:capital ?uri }"
-      },
-      "answers": {
-        "uri": { "type": "uri", "value": "http://dbpedia.org/resource/Ottawa" }
-      }
-    },
-    {
-      "id": "68",
-      "question": [
-        { "language": "en", "string": "Who is the governor of Texas?" }
-      ],
-      "query": {
-        "sparql": "PREFIX res: <http://dbpedia.org/resource/> PREFIX dbp: <http://dbpedia.org/property/> SELECT DISTINCT ?string WHERE { res:Texas dbp:governor ?string }"
-      },
-      "answers": {
-        "string": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Greg_Abbott"
-        }
-      }
-    },
-    {
-      "id": "122",
-      "question": [
-        {
-          "language": "en",
-          "string": "Do Harry and William, Princes of Wales, have the same mother?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbp: <http://dbpedia.org/property/>ASK WHERE {               <http://dbpedia.org/resource/Prince_William,_Duke_of_Cambridge> dbp:mother ?x .  \t<http://dbpedia.org/resource/Prince_Harry_of_Wales> dbp:mother ?y . \tFILTER (?x = ?y)}"
-      }
-    },
-    {
-      "id": "123",
-      "question": [
-        {
-          "language": "en",
-          "string": "Who was the father of Queen Elizabeth II?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT * WHERE { res:Elizabeth_II dbo:parent ?uri . ?uri <http://xmlns.com/foaf/0.1/gender> \"male\"@en }"
-      }
-    },
-    {
-      "id": "69",
-      "question": [
-        {
-          "language": "en",
-          "string": "Which U.S. state has been admitted latest?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbc: <http://dbpedia.org/resource/Category:> PREFIX dct: <http://purl.org/dc/terms/> SELECT DISTINCT ?uri WHERE { ?uri dct:subject dbc:States_of_the_United_States ; <http://dbpedia.org/property/admittancedate> ?x } ORDER BY DESC(?x) LIMIT 1"
-      },
-      "answers": {
-        "uri": { "type": "uri", "value": "http://dbpedia.org/resource/Hawaii" }
-      }
-    },
-    {
-      "id": "70",
-      "question": [
-        {
-          "language": "en",
-          "string": "How many official languages are spoken on the Seychelles?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/>PREFIX res: <http://dbpedia.org/resource/>SELECT COUNT(DISTINCT ?x) WHERE {        res:Seychelles dbo:officialLanguage ?x .}"
-      },
-      "answers": {
-        "callret-0": {
-          "type": "typed-literal",
-          "datatype": "http://www.w3.org/2001/XMLSchema#integer",
-          "value": "3"
-        }
-      }
-    },
-    {
-      "id": "126",
-      "question": [
-        {
-          "language": "en",
-          "string": "Sean Parnell is the governor of which U.S. state?"
-        }
-      ],
-      "query": {
-        "sparql": " PREFIX yago: <http://dbpedia.org/clas/yago/> PREFIX dbp: <http://dbpedia.org/property/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type yago:StatesOfTheUnitedStates . ?uri dbp:governor res:Sean_Parnel . } "
-      }
-    },
-    {
-      "id": "71",
-      "question": [
-        {
-          "language": "en",
-          "string": "Give me all movies directed by Francis Ford Coppola."
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Film ; dbo:director res:Francis_Ford_Coppola }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Dementia_13"
-        }
-      }
-    },
-    {
-      "id": "72",
-      "question": [
-        {
-          "language": "en",
-          "string": "Give me all actors starring in movies directed by and starring William Shatner."
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX dbp: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { ?x dbo:director res:William_Shatner ; dbo:starring res:William_Shatner { ?x dbo:starring ?uri } UNION { ?x dbp:starring ?uri } }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/DeForest_Kelley"
-        }
-      }
-    },
-    {
-      "id": "73",
-      "question": [
-        {
-          "language": "en",
-          "string": "What is the birth name of Angela Merkel?"
-        }
-      ],
-      "query": {
-        "sparql": "SELECT DISTINCT ?string WHERE { <http://dbpedia.org/resource/Angela_Merkel> <http://dbpedia.org/property/birthName> ?string }"
-      },
-      "answers": {
-        "string": {
-          "type": "literal",
-          "xml:lang": "en",
-          "value": "Angela Dorothea Kasner"
-        }
-      }
-    },
-    {
-      "id": "130",
-      "question": [
-        {
-          "language": "en",
-          "string": "Give me all current Methodist national leaders."
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbp: <http://dbpedia.org/property/>PREFIX res: <http://dbpedia.org/resource/>PREFIX yago: <http://dbpedia.org/class/yago/>PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>SELECT DISTINCT ?uri WHERE {\t?uri rdf:type yago:CurrentNationalLeaders .\t?uri dbp:religion res:Methodism .}"
-      }
-    },
-    {
-      "id": "74",
-      "question": [
-        { "language": "en", "string": "How often did Nicole Kidman marry?" }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/>PREFIX res: <http://dbpedia.org/resource/>SELECT COUNT(DISTINCT ?x) WHERE {               res:Nicole_Kidman dbo:spouse ?x .}"
-      },
-      "answers": {
-        "callret-0": {
-          "type": "typed-literal",
-          "datatype": "http://www.w3.org/2001/XMLSchema#integer",
-          "value": "2"
-        }
-      }
-    },
-    {
-      "id": "75",
-      "question": [
-        {
-          "language": "en",
-          "string": "Give me all Australian nonprofit organizations."
-        }
-      ],
-      "query": {
-        "sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/type> <http://dbpedia.org/resource/Nonprofit_organization> { ?uri <http://dbpedia.org/ontology/locationCountry> <http://dbpedia.org/resource/Australia> } UNION { ?uri <http://dbpedia.org/ontology/location> ?x . ?x <http://dbpedia.org/ontology/country> <http://dbpedia.org/resource/Australia> } }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/YourView"
-        }
-      }
-    },
-    {
-      "id": "76",
-      "question": [
-        {
-          "language": "en",
-          "string": "In which military conflicts did Lawrence of Arabia participate?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:T._E._Lawrence dbo:battle ?uri }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Battle_of_Megiddo_(1918)"
-        }
-      }
-    },
-    {
-      "id": "77",
-      "question": [{ "language": "en", "string": "Who developed Skype?" }],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> SELECT DISTINCT ?uri WHERE { res:Skype dbo:developer ?uri. }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Skype_Technologies"
-        }
-      }
-    },
-    {
-      "id": "135",
-      "question": [
-        {
-          "language": "en",
-          "string": "How many inhabitants does Maribor have?"
-        }
-      ],
-      "query": {
-        "sparql": "SELECT DISTINCT ?num WHERE { <http://dbpedia.org/resource/Maribor> <http://dbpedia.org/ontology/populationTotal> ?num }"
-      }
-    },
-    {
-      "id": "78",
-      "question": [
-        { "language": "en", "string": "Give me all companies in Munich." }
-      ],
-      "query": {
-        "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Company> { ?uri <http://dbpedia.org/ontology/location> <http://dbpedia.org/resource/Munich> } UNION { ?uri <http://dbpedia.org/ontology/headquarter> <http://dbpedia.org/resource/Munich> } UNION { ?uri <http://dbpedia.org/ontology/locationCity> <http://dbpedia.org/resource/Munich> } }"
-      },
-      "answers": {
-        "uri": { "type": "uri", "value": "http://dbpedia.org/resource/Allianz" }
-      }
-    },
-    {
-      "id": "79",
-      "question": [
-        { "language": "en", "string": "List all boardgames by GMT." }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> SELECT ?uri WHERE { ?uri dbo:publisher res:GMT_Games }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Fields_of_Fire_(game)"
-        }
-      }
-    },
-    {
-      "id": "138",
-      "question": [{ "language": "en", "string": "Who founded Intel?" }],
-      "query": {
-        "sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Intel> <http://dbpedia.org/property/founders> ?uri }"
-      }
-    },
-    {
-      "id": "139",
-      "question": [
-        { "language": "en", "string": "Who is the husband of Amanda Palmer?" }
-      ],
-      "query": {
-        "sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/spouse> <http://dbpedia.org/resource/Amanda_Palmer> }"
-      }
-    },
-    {
-      "id": "80",
-      "question": [
-        {
-          "language": "en",
-          "string": "Give me all breeds of the German Shepherd dog."
-        }
-      ],
-      "query": {
-        "sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/breed> <http://dbpedia.org/resource/German_Shepherd> }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Mancs_(dog)"
-        }
-      }
-    },
-    {
-      "id": "141",
-      "question": [
-        {
-          "language": "en",
-          "string": "Which cities does the Weser flow through?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Weser dbo:city ?uri }"
-      }
-    },
-    {
-      "id": "142",
-      "question": [
-        {
-          "language": "en",
-          "string": "Which countries are connected by the Rhine?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> PREFIX dbp: <http://dbpedia.org/property/> PREFIX dbo: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { {<http://dbpedia.org/resource/Rhine> dbo:country ?uri } UNION {dbr:Rhine dbp:country ?uri} }"
-      }
-    },
-    {
-      "id": "143",
-      "question": [
-        {
-          "language": "en",
-          "string": "Which professional surfers were born on the Philippines?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbr: <http://dbpedia.org/resource/> PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { ?uri dbo:occupation dbr:Surfer ; dbo:birthPlace res:Philippines }"
-      }
-    },
-    {
-      "id": "144",
-      "question": [
-        {
-          "language": "en",
-          "string": "In which UK city are the headquarters of the MI6?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { res:Secret_Intelligence_Service dbo:headquarter ?uri . ?uri dbo:country res:United_Kingdom }"
-      }
-    },
-    {
-      "id": "145",
-      "question": [
-        {
-          "language": "en",
-          "string": "Which other weapons did the designer of the Uzi develop?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX dbp: <http://dbpedia.org/property/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Weapon ; dbp:designer ?x . res:Uzi dbp:designer ?x FILTER ( ?uri != res:Uzi ) }"
-      }
-    },
-    {
-      "id": "146",
-      "question": [
-        {
-          "language": "en",
-          "string": "Was the Cuban Missile Crisis earlier than the Bay of Pigs Invasion?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> ASK WHERE { res:Cuban_Missile_Crisis dbo:date ?x . res:Bay_of_Pigs_Invasion dbo:date ?y FILTER ( ?x < ?y ) }"
-      }
-    },
-    {
-      "id": "81",
-      "question": [
-        {
-          "language": "en",
-          "string": "Give me all Frisian islands that belong to the Netherlands."
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX yago: <http://dbpedia.org/class/yago/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type yago:WikicatFrisianIslands ; dbo:country res:Netherlands }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Frisian_Islands"
-        }
-      }
-    },
-    {
-      "id": "148",
-      "question": [
-        { "language": "en", "string": "What is the ruling party in Lisbon?" }
-      ],
-      "query": {
-        "sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Lisbon> <http://dbpedia.org/property/leaderParty> ?uri }"
-      }
-    },
-    {
-      "id": "82",
-      "question": [
-        {
-          "language": "en",
-          "string": "What are the nicknames of San Francisco?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX res: <http://dbpedia.org/resource/> PREFIX dbp: <http://dbpedia.org/property/> PREFIX foaf:<http://xmlns.com/foaf/0.1/> SELECT DISTINCT ?string WHERE { res:San_Francisco foaf:nick ?string }"
-      },
-      "answers": {
-        "string": {
-          "type": "literal",
-          "xml:lang": "en",
-          "value": "SeeList of nicknames for San Francisco"
-        }
-      }
-    },
-    {
-      "id": "150",
-      "question": [
-        {
-          "language": "en",
-          "string": "Which Greek goddesses dwelt on Mount Olympus?"
-        }
-      ],
-      "query": {
-        "sparql": "SELECT DISTINCT ?uri WHERE {  ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/class/yago/GreekGoddesses> .  ?uri <http://dbpedia.org/property/abode> <http://dbpedia.org/resource/Mount_Olympus> . } "
-      }
-    },
-    {
-      "id": "151",
-      "question": [
-        { "language": "en", "string": "When were the Hells Angels founded?" }
-      ],
-      "query": {
-        "sparql": "SELECT DISTINCT ?date WHERE { <http://dbpedia.org/resource/Hells_Angels> <http://dbpedia.org/property/founded> ?date }"
-      }
-    },
-    {
-      "id": "83",
-      "question": [
-        { "language": "en", "string": "Give me the Apollo 14 astronauts." }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { ?uri dbo:mission res:Apollo_14 }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Alan_Shepard"
-        }
-      }
-    },
-    {
-      "id": "84",
-      "question": [
-        {
-          "language": "en",
-          "string": "What is the time zone of Salt Lake City?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX res: <http://dbpedia.org/resource/> PREFIX dbp: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Salt_Lake_City <http://dbpedia.org/ontology/timeZone> ?uri }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Mountain_Time_Zone"
-        }
-      }
-    },
-    {
-      "id": "85",
-      "question": [
-        {
-          "language": "en",
-          "string": "Which U.S. states are in the same timezone as Utah?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX yago: <http://dbpedia.org/class/yago/> PREFIX res: <http://dbpedia.org/resource/> PREFIX dbp: <http://dbpedia.org/property/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { res:Utah dbp:timezone ?x . ?uri rdf:type yago:WikicatStatesOfTheUnitedStates ; dbp:timezone ?x FILTER ( ?uri != res:Utah ) }"
-      },
-      "answers": {
-        "uri": { "type": "uri", "value": "http://dbpedia.org/resource/Montana" }
-      }
-    },
-    {
-      "id": "86",
-      "question": [
-        {
-          "language": "en",
-          "string": "Give me a list of all lakes in Denmark."
-        }
-      ],
-      "query": {
-        "sparql": "SELECT DISTINCT ?uri WHERE { { ?uri a <http://dbpedia.org/ontology/Lake> ; <http://dbpedia.org/ontology/country> <http://dbpedia.org/resource/Denmark> } UNION { ?uri a <http://dbpedia.org/class/yago/LakesOfDenmark> } }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Fures\u00f8_(lake)"
-        }
-      }
-    },
-    {
-      "id": "87",
-      "question": [
-        {
-          "language": "en",
-          "string": "How many space missions have there been?"
-        }
-      ],
-      "query": {
-        "sparql": " PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT COUNT(DISTINCT ?uri) WHERE {         ?uri rdf:type dbo:SpaceMission . } "
-      },
-      "answers": {
-        "callret-0": {
-          "type": "typed-literal",
-          "datatype": "http://www.w3.org/2001/XMLSchema#integer",
-          "value": "3433"
-        }
-      }
-    },
-    {
-      "id": "157",
-      "question": [
-        { "language": "en", "string": "Did Socrates influence Aristotle?" }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> ASK WHERE { res:Aristotle dbo:influencedBy res:Socrates }"
-      }
-    },
-    {
-      "id": "88",
-      "question": [
-        { "language": "en", "string": "Give me all Argentine films." }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX yago: <http://dbpedia.org/class/yago/> PREFIX res: <http://dbpedia.org/resource/> PREFIX dbp: <http://dbpedia.org/property/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> 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 } } }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/All\u00e1_en_el_Norte"
-        }
-      }
-    },
-    {
-      "id": "89",
-      "question": [
-        {
-          "language": "en",
-          "string": "Give me all launch pads operated by NASA."
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:LaunchPad ; dbo:operator res:NASA }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Wallops_Flight_Facility_Launch_Area_3"
-        }
-      }
-    },
-    {
-      "id": "160",
-      "question": [
-        {
-          "language": "en",
-          "string": "Which instruments did John Lennon play?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/>PREFIX res: <http://dbpedia.org/resource/>SELECT DISTINCT ?uri WHERE {        res:John_Lennon dbo:instrument ?uri .}"
-      }
-    },
-    {
-      "id": "90",
-      "question": [
-        {
-          "language": "en",
-          "string": "Which ships were called after Benjamin Franklin?"
-        }
-      ],
-      "query": {
-        "sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/shipNamesake> <http://dbpedia.org/resource/Benjamin_Franklin> }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Ben_Franklin_(PX-15)"
-        }
-      }
-    },
-    {
-      "id": "162",
-      "question": [
-        {
-          "language": "en",
-          "string": "Who are the parents of the wife of Juan Carlos I?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Juan_Carlos_I_of_Spain dbo:spouse ?x . ?x dbo:parent ?uri }"
-      }
-    },
-    {
-      "id": "163",
-      "question": [
-        { "language": "en", "string": "How many employees does Google have?" }
-      ],
-      "query": {
-        "sparql": "SELECT DISTINCT ?num WHERE { <http://dbpedia.org/resource/Google> <http://dbpedia.org/ontology/numberOfEmployees> ?num }"
-      }
-    },
-    {
-      "id": "164",
-      "question": [
-        {
-          "language": "en",
-          "string": "Did Tesla win a nobel prize in physics?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> ASK WHERE { res:Nikola_Tesla dbo:award res:Nobel_Prize_in_Physics }"
-      }
-    },
-    {
-      "id": "165",
-      "question": [
-        {
-          "language": "en",
-          "string": "Is Michelle Obama the wife of Barack Obama?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> ASK WHERE { res:Barack_Obama dbo:spouse res:Michelle_Obama }"
-      }
-    },
-    {
-      "id": "91",
-      "question": [
-        { "language": "en", "string": "When was the Statue of Liberty built?" }
-      ],
-      "query": {
-        "sparql": "SELECT DISTINCT ?date WHERE { <http://dbpedia.org/resource/Statue_of_Liberty> <http://dbpedia.org/property/beginningDate> ?date }"
-      },
-      "answers": {
-        "date": {
-          "type": "typed-literal",
-          "datatype": "http://www.w3.org/2001/XMLSchema#date",
-          "value": "1886-10-28"
-        }
-      }
-    },
-    {
-      "id": "167",
-      "question": [
-        {
-          "language": "en",
-          "string": "In which U.S. state is Area 51 located?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> SELECT DISTINCT ?uri WHERE { res:Area_51 dbo:location ?uri . ?uri dbo:country res:United_States. }"
-      }
-    },
-    {
-      "id": "92",
-      "question": [
-        {
-          "language": "en",
-          "string": "How many children did Benjamin Franklin have?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT (COUNT(DISTINCT ?uri) AS ?c) WHERE { res:Benjamin_Franklin dbo:child ?uri }"
-      },
-      "answers": {
-        "c": {
-          "type": "typed-literal",
-          "datatype": "http://www.w3.org/2001/XMLSchema#integer",
-          "value": "3"
-        }
-      }
-    },
-    {
-      "id": "93",
-      "question": [
-        { "language": "en", "string": "When did Michael Jackson die?" }
-      ],
-      "query": {
-        "sparql": "SELECT DISTINCT ?date WHERE { <http://dbpedia.org/resource/Michael_Jackson> <http://dbpedia.org/ontology/deathDate> ?date }"
-      },
-      "answers": {
-        "date": {
-          "type": "typed-literal",
-          "datatype": "http://www.w3.org/2001/XMLSchema#date",
-          "value": "2009-06-25"
-        }
-      }
-    },
-    {
-      "id": "170",
-      "question": [
-        {
-          "language": "en",
-          "string": "Which daughters of British earls died in the same place they were born in?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/>PREFIX yago: <http://dbpedia.org/class/yago/>PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>SELECT DISTINCT ?uri WHERE {\t?uri rdf:type yago:DaughtersOfBritishEarls .\t?uri dbo:birthPlace ?x .\t?uri dbo:deathPlace ?y .\tFILTER (?x != ?y) .}"
-      }
-    },
-    {
-      "id": "94",
-      "question": [
-        {
-          "language": "en",
-          "string": "List the children of Margaret Thatcher."
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Margaret_Thatcher dbo:child ?uri }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Mark_Thatcher"
-        }
-      }
-    },
-    {
-      "id": "95",
-      "question": [{ "language": "en", "string": "Who was called Scarface?" }],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> SELECT ?uri WHERE { ?uri dbo:alias ?alias FILTER contains(lcase(?alias), \"scarface\") }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/%22Scarface%22_John_Williams"
-        }
-      }
-    },
-    {
-      "id": "173",
-      "question": [
-        { "language": "en", "string": "Was Margaret Thatcher a chemist?" }
-      ],
-      "query": {
-        "sparql": "ASK WHERE { <http://dbpedia.org/resource/Margaret_Thatcher> <http://dbpedia.org/ontology/profession> <http://dbpedia.org/resource/Chemist> }"
-      }
-    },
-    {
-      "id": "174",
-      "question": [{ "language": "en", "string": "Was Dutch Schultz a jew?" }],
-      "query": {
-        "sparql": "PREFIX dbp: <http://dbpedia.org/property/>PREFIX res: <http://dbpedia.org/resource/>ASK WHERE {\tres:Dutch_Schultz dbp:ethnicity 'Jewish'@en .}"
-      }
-    },
-    {
-      "id": "96",
-      "question": [
-        {
-          "language": "en",
-          "string": "Give me all books by William Goldman with more than 300 pages."
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Book ; dbo:author res:William_Goldman ; dbo:numberOfPages ?x FILTER ( ?x > 300 ) }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Boys_and_Girls_Together"
-        }
-      }
-    },
-    {
-      "id": "97",
-      "question": [
-        {
-          "language": "en",
-          "string": "Which books by Kerouac were published by Viking Press?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Book ; dbo:publisher res:Viking_Press ; dbo:author res:Jack_Kerouac }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Atop_an_Underwood"
-        }
-      }
-    },
-    {
-      "id": "177",
-      "question": [
-        {
-          "language": "en",
-          "string": "Give me a list of all American inventions."
-        }
-      ],
-      "query": {
-        "sparql": "SELECT DISTINCT ?uri WHERE {  ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/class/yago/AmericanInventions> . } "
-      }
-    },
-    {
-      "id": "178",
-      "question": [
-        { "language": "en", "string": "How high is the Mount Everest?" }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/>PREFIX res: <http://dbpedia.org/resource/>SELECT DISTINCT ?num WHERE {\tres:Mount_Everest dbo:elevation ?num.}"
-      }
-    },
-    {
-      "id": "98",
-      "question": [
-        { "language": "en", "string": "Who created the comic Captain America?" }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Captain_America dbo:creator ?uri }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Jack_Kirby"
-        }
-      }
-    },
-    {
-      "id": "99",
-      "question": [
-        {
-          "language": "en",
-          "string": "How many people live in the capital of Australia?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?num WHERE { res:Australia dbo:capital ?x . ?x dbo:populationTotal ?num }"
-      },
-      "answers": {
-        "num": {
-          "type": "typed-literal",
-          "datatype": "http://www.w3.org/2001/XMLSchema#nonNegativeInteger",
-          "value": "453558"
-        }
-      }
-    },
-    {
-      "id": "100",
-      "question": [
-        { "language": "en", "string": "What is the largest city in Australia?" }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Australia dbo:largestCity ?uri }"
-      },
-      "answers": {
-        "uri": { "type": "uri", "value": "http://dbpedia.org/resource/Sydney" }
-      }
-    },
-    {
-      "id": "182",
-      "question": [
-        {
-          "language": "en",
-          "string": "Who composed the music for Harold and Maude?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Harold_and_Maude dbo:musicComposer ?uri }"
-      }
-    },
-    {
-      "id": "101",
-      "question": [
-        {
-          "language": "en",
-          "string": "Which films starring Clint Eastwood did he direct himself?"
-        }
-      ],
-      "query": {
-        "sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/director> <http://dbpedia.org/resource/Clint_Eastwood> ; <http://dbpedia.org/ontology/starring> <http://dbpedia.org/resource/Clint_Eastwood> }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Dirty_Harry_(film_series)"
-        }
-      }
-    },
-    {
-      "id": "184",
-      "question": [
-        {
-          "language": "en",
-          "string": "In which city was the former Dutch queen Juliana buried?"
-        }
-      ],
-      "query": {
-        "sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Juliana_of_the_Netherlands> <http://dbpedia.org/property/burialPlace> ?uri . ?uri a <http://dbpedia.org/ontology/Settlement> }"
-      }
-    },
-    {
-      "id": "102",
-      "question": [
-        {
-          "language": "en",
-          "string": "Where is the residence of the prime minister of Spain?"
-        }
-      ],
-      "query": {
-        "sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Prime_Minister_of_Spain> <http://dbpedia.org/property/residence> ?uri }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Palacio_de_la_Moncloa"
-        }
-      }
-    },
-    {
-      "id": "186",
-      "question": [
-        {
-          "language": "en",
-          "string": "Which U.S. State has the abbreviation MN?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbp: <http://dbpedia.org/property/>PREFIX res: <http://dbpedia.org/resource/>PREFIX yago: <http://dbpedia.org/class/yago/>PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>SELECT ?uri ?string WHERE {\t?uri rdf:type yago:StatesOfTheUnitedStates .        ?uri dbp:postalabbreviation 'MN'@en .\tOPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') }}"
-      }
-    },
-    {
-      "id": "103",
-      "question": [
-        {
-          "language": "en",
-          "string": "Show me all songs from Bruce Springsteen released between 1980 and 1990."
-        }
-      ],
-      "query": {
-        "sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Song> . ?uri <http://dbpedia.org/ontology/artist> <http://dbpedia.org/resource/Bruce_Springsteen> . ?uri <http://dbpedia.org/ontology/releaseDate> ?date . FILTER (?date >= '1980-01-01'^^xsd:date && ?date <= '1990-12-31'^^xsd:date) }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Johnny_99_(song)"
-        }
-      }
-    },
-    {
-      "id": "188",
-      "question": [
-        {
-          "language": "en",
-          "string": "Which movies did Sam Raimi direct after Army of Darkness?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/>PREFIX dbp: <http://dbpedia.org/property/>PREFIX res: <http://dbpedia.org/resource/>PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>SELECT DISTINCT ?uri ?string WHERE{\t?uri rdf:type dbo:Film .\t?uri dbo:director res:Sam_Raimi .\t{ ?uri dbo:releaseDate ?x . } UNION { ?uri dbp:released ?x . }\tres:Army_of_Darkness dbo:releaseDate ?y .\tFILTER (?x > ?y)\tOPTIONAL { ?uri rdfs:label ?string. FILTER (lang(?string) = 'en') }}"
-      }
-    },
-    {
-      "id": "189",
-      "question": [
-        {
-          "language": "en",
-          "string": "What is the founding year of the brewery that produces Pilsner Urquell?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> SELECT DISTINCT xsd:date(?num) WHERE { <http://dbpedia.org/resource/Pilsner_Urquell> <http://dbpedia.org/property/brewery> ?uri . ?uri dbo:foundingYear ?num }"
-      }
-    },
-    {
-      "id": "104",
-      "question": [
-        {
-          "language": "en",
-          "string": "Who wrote the lyrics for the Polish national anthem?"
-        }
-      ],
-      "query": {
-        "sparql": "SELECT DISTINCT ?uri WHERE {  <http://dbpedia.org/resource/Poland> <http://dbpedia.org/ontology/anthem> ?x .  ?x <http://dbpedia.org/property/author> ?uri . } "
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/J\u00f3zef_Wybicki"
-        }
-      }
-    },
-    {
-      "id": "191",
-      "question": [
-        { "language": "en", "string": "Give me all B-sides of the Ramones. " }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/>PREFIX dbp: <http://dbpedia.org/property/>PREFIX res: <http://dbpedia.org/resource/>SELECT DISTINCT ?string WHERE {\t?x dbo:musicalArtist res:Ramones .        ?x dbp:bSide ?string . }"
-      }
-    },
-    {
-      "id": "105",
-      "question": [
-        {
-          "language": "en",
-          "string": "Who painted The Storm on the Sea of Galilee?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX res: <http://dbpedia.org/resource/> PREFIX dbp: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:The_Storm_on_the_Sea_of_Galilee dbo:author ?uri }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Rembrandt"
-        }
-      }
-    },
-    {
-      "id": "193",
-      "question": [
-        {
-          "language": "en",
-          "string": "Which country does the creator of Miffy come from?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Miffy dbo:creator ?x . ?x dbo:nationality ?uri }"
-      }
-    },
-    {
-      "id": "106",
-      "question": [
-        {
-          "language": "en",
-          "string": "For which label did Elvis record his first album?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?x rdf:type dbo:Album ; dbo:artist res:Elvis_Presley ; dbo:releaseDate ?y ; dbo:recordLabel ?uri } ORDER BY ASC(?y) OFFSET 0 LIMIT 1"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/RCA_Records"
-        }
-      }
-    },
-    {
-      "id": "195",
-      "question": [{ "language": "en", "string": "Who produces Orangina?" }],
-      "query": {
-        "sparql": "SELECT DISTINCT ?uri WHERE {  ?uri <http://dbpedia.org/ontology/product> <http://dbpedia.org/resource/Orangina> . } "
-      }
-    },
-    {
-      "id": "196",
-      "question": [
-        { "language": "en", "string": "Give me all female Russian astronauts." }
-      ],
-      "query": {
-        "sparql": "PREFIX yago: <http://dbpedia.org/class/yago/>PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>SELECT DISTINCT ?uriWHERE {\t?uri rdf:type yago:RussianCosmonauts .        ?uri rdf:type yago:FemaleAstronauts .}"
-      }
-    },
-    {
-      "id": "107",
-      "question": [
-        {
-          "language": "en",
-          "string": "Give me the birthdays of all actors of the television show Charmed."
-        }
-      ],
-      "query": {
-        "sparql": "SELECT DISTINCT ?date WHERE { <http://dbpedia.org/resource/Charmed> <http://dbpedia.org/ontology/starring> ?actor . ?actor <http://dbpedia.org/ontology/birthDate> ?date }"
-      },
-      "answers": {
-        "date": {
-          "type": "typed-literal",
-          "datatype": "http://www.w3.org/2001/XMLSchema#date",
-          "value": "1972-12-19"
-        }
-      }
-    },
-    {
-      "id": "198",
-      "question": [
-        {
-          "language": "en",
-          "string": "Is the wife of president Obama called Michelle?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> ASK WHERE { res:Barack_Obama dbo:spouse ?spouse . ?spouse rdfs:label ?name FILTER regex(?name, \"Michelle\") }"
-      }
-    },
-    {
-      "id": "108",
-      "question": [
-        {
-          "language": "en",
-          "string": "Which countries have places with more than two caves?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?cave rdf:type dbo:Cave ; dbo:location ?uri . ?uri rdf:type dbo:Country } GROUP BY ?uri HAVING ( COUNT(?cave) > 2 )"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Georgia_(country)"
-        }
-      }
-    },
-    {
-      "id": "109",
-      "question": [
-        {
-          "language": "en",
-          "string": "Give me the capitals of all countries in Africa."
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbc: <http://dbpedia.org/resource/Category:> PREFIX dct: <http://purl.org/dc/terms/> SELECT DISTINCT ?uri WHERE { ?country dct:subject dbc:Countries_in_Africa ; dbo:capital ?uri }"
-      },
-      "answers": {
-        "uri": { "type": "uri", "value": "http://dbpedia.org/resource/Buea" }
-      }
-    },
-    {
-      "id": "110",
-      "question": [
-        { "language": "en", "string": "How many employees does IBM have?" }
-      ],
-      "query": {
-        "sparql": "SELECT DISTINCT ?number WHERE { <http://dbpedia.org/resource/IBM> <http://dbpedia.org/ontology/numberOfEmployees> ?number }"
-      },
-      "answers": {
-        "number": {
-          "type": "typed-literal",
-          "datatype": "http://www.w3.org/2001/XMLSchema#nonNegativeInteger",
-          "value": "282100"
-        }
-      }
-    },
-    {
-      "id": "111",
-      "question": [
-        { "language": "en", "string": "Which states border Illinois?" }
-      ],
-      "query": {
-        "sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Illinois> <http://dbpedia.org/property/borderingstates> ?uri }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Kentucky"
-        }
-      }
-    },
-    {
-      "id": "112",
-      "question": [
-        {
-          "language": "en",
-          "string": "Which European countries have a constitutional monarchy?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dct: <http://purl.org/dc/terms/> PREFIX dbc: <http://dbpedia.org/resource/Category:> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?uri WHERE { ?uri dct:subject dbc:Countries_in_Europe ; dbo:governmentType dbr:Constitutional_monarchy }"
-      },
-      "answers": {
-        "uri": { "type": "uri", "value": "http://dbpedia.org/resource/Andorra" }
-      }
-    },
-    {
-      "id": "204",
-      "question": [
-        { "language": "en", "string": "Which awards did WikiLeaks win?" }
-      ],
-      "query": {
-        "sparql": "PREFIX res: <http://dbpedia.org/resource/>PREFIX dbp: <http://dbpedia.org/property/>SELECT DISTINCT ?uriWHERE {        res:WikiLeaks dbp:awards ?uri .}"
-      }
-    },
-    {
-      "id": "205",
-      "question": [
-        {
-          "language": "en",
-          "string": "Which state of the USA has the highest population density?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX yago: <http://dbpedia.org/class/yago/> PREFIX dbp: <http://dbpedia.org/property/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type yago:WikicatStatesOfTheUnitedStates ; dbp:densityrank ?rank } ORDER BY ASC(?rank) LIMIT 1"
-      }
-    },
-    {
-      "id": "206",
-      "question": [
-        { "language": "en", "string": "When did Finland join the EU?" }
-      ],
-      "query": {
-        "sparql": "PREFIX res: <http://dbpedia.org/resource/> PREFIX dbp: <http://dbpedia.org/property/> SELECT DISTINCT ?date WHERE { res:Finland dbp:accessioneudate ?date }"
-      }
-    },
-    {
-      "id": "113",
-      "question": [
-        {
-          "language": "en",
-          "string": "What is the highest mountain in Australia?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Mountain ; dbo:locatedInArea res:Australia ; dbo:elevation ?elevation } ORDER BY DESC(?elevation) LIMIT 1"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Mawson_Peak"
-        }
-      }
-    },
-    {
-      "id": "208",
-      "question": [
-        { "language": "en", "string": "Is Frank Herbert still alive?" }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> ASK WHERE { OPTIONAL { res:Frank_Herbert dbo:deathDate ?date } FILTER ( ! bound(?date) ) }"
-      }
-    },
-    {
-      "id": "114",
-      "question": [
-        {
-          "language": "en",
-          "string": "Give me all companies in the advertising industry."
-        }
-      ],
-      "query": {
-        "sparql": "SELECT (COUNT(DISTINCT ?uri) AS ?c) WHERE { ?uri a <http://dbpedia.org/ontology/Company> { ?uri <http://dbpedia.org/ontology/industry> <http://dbpedia.org/resource/Advertising> } UNION { ?uri <http://dbpedia.org/ontology/industry> ?industry FILTER regex(?industry, \"advertising\", \"i\") } }"
-      },
-      "answers": {
-        "c": {
-          "type": "typed-literal",
-          "datatype": "http://www.w3.org/2001/XMLSchema#integer",
-          "value": "361"
-        }
-      }
-    },
-    {
-      "id": "210",
-      "question": [
-        {
-          "language": "en",
-          "string": "Give me all presidents of the United States."
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX yago: <http://dbpedia.org/class/yago/>PREFIX dbo: <http://dbpedia.org/ontology/>PREFIX dbp: <http://dbpedia.org/property/>PREFIX res: <http://dbpedia.org/resource/>PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>SELECT DISTINCT ?uriWHERE {        ?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. }}"
-      }
-    },
-    {
-      "id": "115",
-      "question": [
-        {
-          "language": "en",
-          "string": "Who was the wife of U.S. president Lincoln?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Abraham_Lincoln dbo:spouse ?uri }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Mary_Todd_Lincoln"
-        }
-      }
-    },
-    {
-      "id": "212",
-      "question": [
-        {
-          "language": "en",
-          "string": "What is the official website of Tom Cruise?"
-        }
-      ],
-      "query": {
-        "sparql": "SELECT DISTINCT ?string WHERE {  <http://dbpedia.org/resource/Tom_Cruise> <http://dbpedia.org/property/website> ?string . } "
-      }
-    },
-    {
-      "id": "213",
-      "question": [
-        {
-          "language": "en",
-          "string": "Give me all people with first name Jimmy."
-        }
-      ],
-      "query": {
-        "sparql": "SELECT DISTINCT ?uri WHERE {  ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> foaf:Person .  ?uri foaf:givenName 'Jimmy'@en . } "
-      }
-    },
-    {
-      "id": "214",
-      "question": [{ "language": "en", "string": "Who created Wikipedia?" }],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Wikipedia dbo:author ?uri }"
-      }
-    },
-    {
-      "id": "116",
-      "question": [
-        {
-          "language": "en",
-          "string": "Give me all video games published by Mean Hamster Software."
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:VideoGame ; dbo:publisher res:Mean_Hamster_Software }"
-      },
-      "answers": {
-        "uri": { "type": "uri", "value": "http://dbpedia.org/resource/Riven" }
-      }
-    },
-    {
-      "id": "117",
-      "question": [
-        { "language": "en", "string": "Which languages are spoken in Estonia?" }
-      ],
-      "query": {
-        "sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/spokenIn> <http://dbpedia.org/resource/Estonia> }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/V\u00f5ro_language"
-        }
-      }
-    },
-    {
-      "id": "118",
-      "question": [
-        { "language": "en", "string": "How many films did Hal Roach produce?" }
-      ],
-      "query": {
-        "sparql": "SELECT (COUNT(DISTINCT ?uri) AS ?c) WHERE { ?uri <http://dbpedia.org/ontology/producer> <http://dbpedia.org/resource/Hal_Roach> }"
-      },
-      "answers": {
-        "c": {
-          "type": "typed-literal",
-          "datatype": "http://www.w3.org/2001/XMLSchema#integer",
-          "value": "539"
-        }
-      }
-    },
-    {
-      "id": "119",
-      "question": [
-        {
-          "language": "en",
-          "string": "Give me all books written by Danielle Steel."
-        }
-      ],
-      "query": {
-        "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Book> ; <http://dbpedia.org/ontology/author> <http://dbpedia.org/resource/Danielle_Steel> }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Amazing_Grace_(novel)"
-        }
-      }
-    },
-    {
-      "id": "120",
-      "question": [
-        {
-          "language": "en",
-          "string": "Which airports are located in California, USA?"
-        }
-      ],
-      "query": {
-        "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Airport> { ?uri <http://dbpedia.org/ontology/location> <http://dbpedia.org/resource/California> } UNION { ?uri <http://dbpedia.org/ontology/city> <http://dbpedia.org/resource/California> } UNION { ?uri <http://dbpedia.org/ontology/city> ?city . ?city <http://dbpedia.org/ontology/isPartOf> <http://dbpedia.org/resource/California> } UNION { ?uri <http://dbpedia.org/ontology/operator> <http://dbpedia.org/resource/California> } }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Amboy_Airfield"
-        }
-      }
-    },
-    {
-      "id": "121",
-      "question": [
-        {
-          "language": "en",
-          "string": "Give me all Canadian Grunge record labels."
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:RecordLabel ; dbo:genre res:Grunge ; dbo:country res:Canada }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Murderecords"
-        }
-      }
-    },
-    {
-      "id": "122",
-      "question": [
-        { "language": "en", "string": "Give me all movies with Tom Cruise." }
-      ],
-      "query": {
-        "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Film> ; <http://dbpedia.org/ontology/starring> <http://dbpedia.org/resource/Tom_Cruise> }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/All_the_Right_Moves_(film)"
-        }
-      }
-    },
-    {
-      "id": "123",
-      "question": [
-        { "language": "en", "string": "Give me all female German chancellors." }
-      ],
-      "query": {
-        "sparql": "PREFIX res: <http://dbpedia.org/resource/> PREFIX dbp: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Chancellor_of_Germany dbp:incumbent ?uri }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Olaf_Scholz"
-        }
-      }
-    },
-    {
-      "id": "223",
-      "question": [
-        {
-          "language": "en",
-          "string": "Was Natalie Portman born in the United States?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> ASK WHERE { res:Natalie_Portman dbo:birthPlace ?city . ?city dbo:country res:United_States }"
-      }
-    },
-    {
-      "id": "124",
-      "question": [
-        { "language": "en", "string": "Who is the governor of Wyoming?" }
-      ],
-      "query": {
-        "sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Wyoming> <http://dbpedia.org/property/governor> ?uri }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Mark_Gordon"
-        }
-      }
-    },
-    {
-      "id": "225",
-      "question": [
-        {
-          "language": "en",
-          "string": "Do Prince Harry and Prince William have the same mother?"
-        }
-      ],
-      "query": {
-        "sparql": " PREFIX dbp: <http://dbpedia.org/property/> ASK WHERE {         <http://dbpedia.org/resource/Prince_William,_Duke_of_Cambridge> dbp:mother ?x .         <http://dbpedia.org/resource/Prince_Harry_of_Wales> dbp:mother ?y .         FILTER (?x = ?y) } "
-      }
-    },
-    {
-      "id": "125",
-      "question": [{ "language": "en", "string": "Who developed Minecraft?" }],
-      "query": {
-        "sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Minecraft> <http://dbpedia.org/ontology/developer> ?uri }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Mojang_Studios"
-        }
-      }
-    },
-    {
-      "id": "126",
-      "question": [{ "language": "en", "string": "List all games by GMT." }],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { ?uri dbo:publisher res:GMT_Games }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Fields_of_Fire_(game)"
-        }
-      }
-    },
-    {
-      "id": "127",
-      "question": [
-        {
-          "language": "en",
-          "string": "In which U.S. state is Fort Knox located?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX dbp: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Fort_Knox dbo:location ?uri . ?uri dbo:country res:United_States }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Kentucky"
-        }
-      }
-    },
-    {
-      "id": "229",
-      "question": [
-        {
-          "language": "en",
-          "string": "Which U.S. state has the abbreviation MN?"
-        }
-      ],
-      "query": {
-        "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a yago:WikicatStatesOfTheUnitedStates ; <http://dbpedia.org/property/postalabbreviation> \"MN\"^^<http://www.w3.org/1999/02/22-rdf-syntax-ns#langString> }"
-      }
-    },
-    {
-      "id": "230",
-      "question": [
-        {
-          "language": "en",
-          "string": "Which movies did Kurosawa direct after Rashomon?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/>PREFIX dbp: <http://dbpedia.org/property/>PREFIX res: <http://dbpedia.org/resource/>PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>SELECT DISTINCT ?uriWHERE {        ?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)}"
-      }
-    },
-    {
-      "id": "231",
-      "question": [
-        {
-          "language": "en",
-          "string": "Who is the daughter of Ingrid Bergman married to?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Ingrid_Bergman dbo:child ?child . ?child <http://dbpedia.org/property/spouse> ?uri }"
-      }
-    },
-    {
-      "id": "128",
-      "question": [
-        { "language": "en", "string": "In which city did John F. Kennedy die?" }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { res:John_F._Kennedy dbo:deathPlace ?uri . ?uri rdf:type dbo:City }"
-      },
-      "answers": {
-        "uri": { "type": "uri", "value": "http://dbpedia.org/resource/Dallas" }
-      }
-    },
-    {
-      "id": "233",
-      "question": [
-        { "language": "en", "string": "Which classis do tree frogs belong to?" }
-      ],
-      "query": {
-        "sparql": "PREFIX dbp: <http://dbpedia.org/property/>PREFIX res: <http://dbpedia.org/resource/>SELECT DISTINCT ?uriWHERE {       res:Hylidae dbp:classis ?uri .}"
-      }
-    },
-    {
-      "id": "234",
-      "question": [
-        { "language": "en", "string": "When did Latvia join the EU?" }
-      ],
-      "query": {
-        "sparql": "SELECT DISTINCT ?date WHERE { <http://dbpedia.org/resource/Latvia> <http://dbpedia.org/property/accessioneudate> ?date }"
-      }
-    },
-    {
-      "id": "129",
-      "question": [
-        {
-          "language": "en",
-          "string": "Give me all actors starring in Last Action Hero."
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Last_Action_Hero dbo:starring ?uri }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Art_Carney"
-        }
-      }
-    },
-    {
-      "id": "130",
-      "question": [
-        {
-          "language": "en",
-          "string": "Who wrote the book Les Piliers de la terre?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:The_Pillars_of_the_Earth dbo:author ?uri }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Ken_Follett"
-        }
-      }
-    },
-    {
-      "id": "131",
-      "question": [{ "language": "en", "string": "Give me all taikonauts." }],
-      "query": {
-        "sparql": "SELECT DISTINCT ?uri WHERE { { ?uri a <http://dbpedia.org/ontology/Astronaut> ; <http://dbpedia.org/ontology/nationality> <http://dbpedia.org/resource/People's_Republic_of_China> } UNION { ?uri a <http://dbpedia.org/ontology/Astronaut> ; <http://dbpedia.org/ontology/nationality> <http://dbpedia.org/resource/China> } }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Tang_Hongbo"
-        }
-      }
-    },
-    {
-      "id": "132",
-      "question": [
-        {
-          "language": "en",
-          "string": "How many languages are spoken in Colombia?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT (COUNT(DISTINCT ?uri) AS ?c) WHERE { ?uri rdf:type dbo:Language . res:Colombia dbo:language ?uri }"
-      },
-      "answers": {
-        "c": {
-          "type": "typed-literal",
-          "datatype": "http://www.w3.org/2001/XMLSchema#integer",
-          "value": "0"
-        }
-      }
-    },
-    {
-      "id": "133",
-      "question": [
-        { "language": "en", "string": "Which poet wrote the most books?" }
-      ],
-      "query": {
-        "sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/occupation> <http://dbpedia.org/resource/Poet> . ?x <http://dbpedia.org/ontology/author> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Book> . } ORDER BY DESC(COUNT(?x)) OFFSET 0 LIMIT 1"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Jules_Verne"
-        }
-      }
-    },
-    {
-      "id": "134",
-      "question": [
-        {
-          "language": "en",
-          "string": "How many programming languages are there?"
-        }
-      ],
-      "query": {
-        "sparql": "SELECT (COUNT(DISTINCT ?uri) AS ?c) WHERE { ?uri a <http://dbpedia.org/ontology/ProgrammingLanguage> }"
-      },
-      "answers": {
-        "c": {
-          "type": "typed-literal",
-          "datatype": "http://www.w3.org/2001/XMLSchema#integer",
-          "value": "3328"
-        }
-      }
-    },
-    {
-      "id": "135",
-      "question": [
-        { "language": "en", "string": "Give me all Dutch parties." }
-      ],
-      "query": {
-        "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/PoliticalParty> ; <http://dbpedia.org/ontology/country> <http://dbpedia.org/resource/Netherlands> }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Democratic_Political_Turning_Point"
-        }
-      }
-    },
-    {
-      "id": "136",
-      "question": [
-        { "language": "en", "string": "When was Carlo Giuliani shot?" }
-      ],
-      "query": {
-        "sparql": "PREFIX res: <http://dbpedia.org/resource/> PREFIX dbp: <http://dbpedia.org/property/> SELECT DISTINCT xsd:date(?date) WHERE { res:Death_of_Carlo_Giuliani dbo:deathDate ?date }"
-      },
-      "answers": {
-        "callret-0": {
-          "type": "typed-literal",
-          "datatype": "http://www.w3.org/2001/XMLSchema#date",
-          "value": "2001-07-20"
-        }
-      }
-    },
-    {
-      "id": "243",
-      "question": [
-        { "language": "en", "string": "Does the Isar flow into a lake?" }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> ASK WHERE { ?x dbo:inflow res:Isar ; rdf:type dbo:Lake }"
-      }
-    },
-    {
-      "id": "137",
-      "question": [
-        { "language": "en", "string": "Which rivers flow into a German lake?" }
-      ],
-      "query": {
-        "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/River> . ?x <http://dbpedia.org/ontology/inflow> ?uri ; a <http://dbpedia.org/ontology/Lake> ; <http://dbpedia.org/ontology/country> <http://dbpedia.org/resource/Germany> }"
-      },
-      "answers": {
-        "uri": { "type": "uri", "value": "http://dbpedia.org/resource/Alster" }
-      }
-    },
-    {
-      "id": "245",
-      "question": [
-        { "language": "en", "string": "How heavy is Jupiter's lightest moon?" }
-      ],
-      "query": {
-        "sparql": "SELECT DISTINCT ?n WHERE { ?uri <http://dbpedia.org/property/satelliteOf> <http://dbpedia.org/resource/Jupiter> ; <http://dbpedia.org/ontology/mass> ?n } ORDER BY ASC(?n) OFFSET 0 LIMIT 1"
-      }
-    },
-    {
-      "id": "138",
-      "question": [
-        { "language": "en", "string": "Who is the youngest Darts player?" }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:DartsPlayer ; dbo:birthDate ?date } ORDER BY DESC(?date) OFFSET 0 LIMIT 1"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Aurora_Fochesato"
-        }
-      }
-    },
-    {
-      "id": "139",
-      "question": [
-        { "language": "en", "string": "Give me all animals that are extinct." }
-      ],
-      "query": {
-        "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Animal> ; <http://dbpedia.org/ontology/conservationStatus> \"EX\" }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Advena_campbelli"
-        }
-      }
-    },
-    {
-      "id": "140",
-      "question": [
-        {
-          "language": "en",
-          "string": "How many pages does War and Peace have?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?n WHERE { res:War_and_Peace dbo:numberOfPages ?n }"
-      },
-      "answers": {
-        "n": {
-          "type": "typed-literal",
-          "datatype": "http://www.w3.org/2001/XMLSchema#positiveInteger",
-          "value": "1225"
-        }
-      }
-    },
-    {
-      "id": "141",
-      "question": [
-        {
-          "language": "en",
-          "string": "Which ingredients do I need for carrot cake?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Carrot_cake dbo:ingredient ?uri }"
-      },
-      "answers": {
-        "uri": { "type": "uri", "value": "http://dbpedia.org/resource/Carrot" }
-      }
-    },
-    {
-      "id": "142",
-      "question": [
-        { "language": "en", "string": "What is the most frequent death cause?" }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/>SELECT DISTINCT ?xWHERE {        ?uri dbo:deathCause ?x . }ORDER BY DESC(COUNT(DISTINCT ?uri)) OFFSET 0 LIMIT 1"
-      },
-      "answers": {}
-    },
-    {
-      "id": "143",
-      "question": [
-        { "language": "en", "string": "Who has Tom Cruise been married to?" }
-      ],
-      "query": {
-        "sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/spouse> <http://dbpedia.org/resource/Tom_Cruise> }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Katie_Holmes"
-        }
-      }
-    },
-    {
-      "id": "252",
-      "question": [
-        {
-          "language": "en",
-          "string": "Who is the tallest player of the Atlanta Falcons?"
-        }
-      ],
-      "query": {
-        "sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/team> <http://dbpedia.org/resource/Atlanta_Falcons> ; <http://dbpedia.org/ontology/height> ?h } ORDER BY DESC(?h) OFFSET 0 LIMIT 1"
-      }
-    },
-    {
-      "id": "144",
-      "question": [
-        {
-          "language": "en",
-          "string": "What is the bridge with the longest span?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Bridge ; dbo:mainspan ?s } ORDER BY DESC(?s) OFFSET 0 LIMIT 1"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/C\u1ea7n_Gi\u1edd_Bridge"
-        }
-      }
-    },
-    {
-      "id": "145",
-      "question": [
-        {
-          "language": "en",
-          "string": "Give me all films produced by Steven Spielberg with a budget of at least $80 million."
-        }
-      ],
-      "query": {
-        "sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film> . ?uri <http://dbpedia.org/ontology/director> <http://dbpedia.org/resource/Steven_Spielberg> . ?uri <http://dbpedia.org/ontology/budget> ?b . FILTER( xsd:double(?b) >= 8.0E7 ) }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/War_of_the_Worlds_(2005_film)"
-        }
-      }
-    },
-    {
-      "id": "255",
-      "question": [{ "language": "en", "string": "Is Cola a beverage?" }],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> ASK WHERE { res:Cola rdf:type dbo:Beverage }"
-      }
-    },
-    {
-      "id": "146",
-      "question": [
-        {
-          "language": "en",
-          "string": "Which actor was casted in the most movies?"
-        }
-      ],
-      "query": {
-        "sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Actor> . ?f <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film> . ?f <http://dbpedia.org/ontology/starring> ?uri . } ORDER BY DESC(COUNT(DISTINCT(?f))) OFFSET 0 LIMIT 1"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Amitabh_Bachchan"
-        }
-      }
-    },
-    {
-      "id": "147",
-      "question": [{ "language": "en", "string": "Where was Bach born?" }],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Johann_Sebastian_Bach dbo:birthPlace ?uri }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Eisenach"
-        }
-      }
-    },
-    {
-      "id": "148",
-      "question": [
-        {
-          "language": "en",
-          "string": "Which of Tim Burton's films had the highest budget?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { ?uri dbo:director res:Tim_Burton ; dbo:budget ?b } ORDER BY ?b OFFSET 0 LIMIT 1"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Big_Eyes"
-        }
-      }
-    },
-    {
-      "id": "259",
-      "question": [
-        {
-          "language": "en",
-          "string": "Does Abraham Lincoln's death place have a website?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> ASK WHERE { res:Abraham_Lincoln dbo:deathPlace ?p . ?p dbo:website ?w }"
-      }
-    },
-    {
-      "id": "149",
-      "question": [
-        {
-          "language": "en",
-          "string": "Who are the four youngest MVP basketball players?"
-        }
-      ],
-      "query": {
-        "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/BasketballPlayer> ; <http://dbpedia.org/ontology/birthDate> ?date ; <http://dbpedia.org/property/highlights> ?h FILTER regex(?h, \"MVP\") } ORDER BY DESC(?date) OFFSET 0 LIMIT 4"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Robert_Dillingham"
-        }
-      }
-    },
-    {
-      "id": "150",
-      "question": [
-        {
-          "language": "en",
-          "string": "What are the top-10 action role-playing video games according to IGN?"
-        }
-      ],
-      "query": {
-        "sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://purl.org/dc/terms/subject> <http://dbpedia.org/resource/Category:Action_role-playing_video_games> ; <http://dbpedia.org/property/ign> ?score } ORDER BY DESC(?score) LIMIT 10"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Battleheart_Legacy"
-        }
-      }
-    },
-    {
-      "id": "151",
-      "question": [
-        {
-          "language": "en",
-          "string": "Give me all actors who were born in Berlin."
-        }
-      ],
-      "query": {
-        "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Actor> ; <http://dbpedia.org/ontology/birthPlace> <http://dbpedia.org/resource/Berlin> }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Walter_Bluhm"
-        }
-      }
-    },
-    {
-      "id": "152",
-      "question": [
-        {
-          "language": "en",
-          "string": "Give me all actors who were born in Paris after 1950."
-        }
-      ],
-      "query": {
-        "sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Actor> . ?uri <http://dbpedia.org/ontology/birthPlace> <http://dbpedia.org/resource/Paris> . ?uri <http://dbpedia.org/ontology/birthDate> ?date . FILTER ( ?date >= xsd:dateTime('1950-12-31T00:00:00Z')) }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Fran\u00e7ois_Hadji-Lazaro"
-        }
-      }
-    },
-    {
-      "id": "153",
-      "question": [
-        {
-          "language": "en",
-          "string": "What was Brazil's lowest rank in the FIFA World Ranking?"
-        }
-      ],
-      "query": {
-        "sparql": "SELECT DISTINCT ?n WHERE { <http://dbpedia.org/resource/Brazil_national_football_team> <http://dbpedia.org/property/fifaMin> ?n }"
-      },
-      "answers": {
-        "n": {
-          "type": "typed-literal",
-          "datatype": "http://www.w3.org/2001/XMLSchema#integer",
-          "value": "22"
-        }
-      }
-    },
-    {
-      "id": "154",
-      "question": [
-        {
-          "language": "en",
-          "string": "Give me all Australian metalcore bands."
-        }
-      ],
-      "query": {
-        "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Band> ; <http://dbpedia.org/ontology/genre> <http://dbpedia.org/resource/Metalcore> { ?uri <http://dbpedia.org/ontology/hometown> <http://dbpedia.org/resource/Australia> } UNION { ?uri <http://dbpedia.org/ontology/hometown> ?h . ?h <http://dbpedia.org/ontology/country> <http://dbpedia.org/resource/Australia> } }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Dream_On,_Dreamer"
-        }
-      }
-    },
-    {
-      "id": "155",
-      "question": [{ "language": "en", "string": "When is Halloween?" }],
-      "query": {
-        "sparql": "SELECT DISTINCT ?date WHERE {  <http://dbpedia.org/resource/Halloween> <http://dbpedia.org/property/date> ?date . } "
-      },
-      "answers": {
-        "date": {
-          "type": "typed-literal",
-          "datatype": "http://www.w3.org/2001/XMLSchema#gMonthDay",
-          "value": "--10-31"
-        }
-      }
-    },
-    {
-      "id": "156",
-      "question": [
-        {
-          "language": "en",
-          "string": "How many inhabitants does the largest city in Canada have?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?num WHERE { res:Canada dbo:largestCity ?city . ?city dbo:populationTotal ?num }"
-      },
-      "answers": {
-        "num": {
-          "type": "typed-literal",
-          "datatype": "http://www.w3.org/2001/XMLSchema#nonNegativeInteger",
-          "value": "2794356"
-        }
-      }
-    },
-    {
-      "id": "157",
-      "question": [
-        {
-          "language": "en",
-          "string": "In which countries can you pay using the West African CFA franc?"
-        }
-      ],
-      "query": {
-        "sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/currency> <http://dbpedia.org/resource/West_African_CFA_franc> }"
-      },
-      "answers": {
-        "uri": { "type": "uri", "value": "http://dbpedia.org/resource/Benin" }
-      }
-    },
-    {
-      "id": "158",
-      "question": [
-        {
-          "language": "en",
-          "string": "Give me the capitals of all countries that the Himalayas run through."
-        }
-      ],
-      "query": {
-        "sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Himalayas> <http://dbpedia.org/ontology/country> ?country . ?country <http://dbpedia.org/ontology/capital> ?uri }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/New_Delhi"
-        }
-      }
-    },
-    {
-      "id": "159",
-      "question": [
-        {
-          "language": "en",
-          "string": "Who was the first to climb Mount Everest?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Mount_Everest dbo:firstAscentPerson ?uri }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Tenzing_Norgay"
-        }
-      }
-    },
-    {
-      "id": "160",
-      "question": [
-        {
-          "language": "en",
-          "string": "To which artistic movement did the painter of The Three Dancers belong?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:The_Three_Dancers dbo:author ?person . ?person dbo:movement ?uri }"
-      },
-      "answers": {
-        "uri": { "type": "uri", "value": "http://dbpedia.org/resource/Cubism" }
-      }
-    },
-    {
-      "id": "161",
-      "question": [
-        { "language": "en", "string": "Which pope succeeded John Paul II?" }
-      ],
-      "query": {
-        "sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Pope_John_Paul_II> <http://dbpedia.org/property/successor> ?uri }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Pope_Benedict_XVI"
-        }
-      }
-    },
-    {
-      "id": "162",
-      "question": [
-        {
-          "language": "en",
-          "string": "What was the last movie with Alec Guinness?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Film ; dbo:starring res:Alec_Guinness ; dbo:releaseDate ?date } ORDER BY DESC(?date) LIMIT 1"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Star_Wars_original_trilogy"
-        }
-      }
-    },
-    {
-      "id": "163",
-      "question": [
-        { "language": "en", "string": "How many James Bond movies are there?" }
-      ],
-      "query": {
-        "sparql": "SELECT (COUNT(DISTINCT ?uri) as ?c) WHERE {  ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/class/yago/JamesBondFilms> . } "
-      },
-      "answers": {
-        "c": {
-          "type": "typed-literal",
-          "datatype": "http://www.w3.org/2001/XMLSchema#integer",
-          "value": "0"
-        }
-      }
-    },
-    {
-      "id": "164",
-      "question": [
-        { "language": "en", "string": "Which actor played Chewbacca?" }
-      ],
-      "query": {
-        "sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Chewbacca> <http://dbpedia.org/ontology/portrayer> ?uri }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Joonas_Suotamo"
-        }
-      }
-    },
-    {
-      "id": "165",
-      "question": [
-        {
-          "language": "en",
-          "string": "Give me the grandchildren of Bruce Lee."
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Bruce_Lee dbo:child ?child . ?child <http://dbpedia.org/property/children> ?uri }"
-      },
-      "answers": {
-        "uri": {
-          "type": "typed-literal",
-          "datatype": "http://www.w3.org/2001/XMLSchema#integer",
-          "value": "1"
-        }
-      }
-    },
-    {
-      "id": "166",
-      "question": [
-        {
-          "language": "en",
-          "string": "Give me all writers that won the Nobel Prize in literature."
-        }
-      ],
-      "query": {
-        "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Writer> ; <http://dbpedia.org/ontology/award> <http://dbpedia.org/resource/Nobel_Prize_in_Literature> }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Aleksandr_Solzhenitsyn"
-        }
-      }
-    },
-    {
-      "id": "167",
-      "question": [
-        {
-          "language": "en",
-          "string": "What is the official color of the University of Oxford?"
-        }
-      ],
-      "query": {
-        "sparql": "SELECT DISTINCT ?string WHERE { <http://dbpedia.org/resource/University_of_Oxford> <http://dbpedia.org/ontology/officialSchoolColour> ?string }"
-      },
-      "answers": { "string": { "type": "literal", "value": "" } }
-    },
-    {
-      "id": "279",
-      "question": [
-        { "language": "en", "string": "Give me all Swedish oceanographers." }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { ?uri dbo:field res:Oceanography ; dbo:birthPlace res:Sweden }"
-      }
-    },
-    {
-      "id": "168",
-      "question": [{ "language": "en", "string": "How deep is Lake Placid?" }],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> SELECT DISTINCT ?n WHERE { <http://dbpedia.org/resource/Lake_Placid_(Texas)> dbo:maximumDepth ?n }"
-      },
-      "answers": {
-        "n": {
-          "type": "typed-literal",
-          "datatype": "http://www.w3.org/2001/XMLSchema#double",
-          "value": "12.192"
-        }
-      }
-    },
-    {
-      "id": "281",
-      "question": [{ "language": "en", "string": "Is James Bond married?" }],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> ASK WHERE { res:James_Bond dbo:spouse ?uri }"
-      }
-    },
-    {
-      "id": "169",
-      "question": [
-        {
-          "language": "en",
-          "string": "Which spaceflights were launched from Baikonur?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/launchPad> res:Baikonur_Cosmodrome }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Salyut_1"
-        }
-      }
-    },
-    {
-      "id": "283",
-      "question": [
-        { "language": "en", "string": "Give me all actors called Baldwin." }
-      ],
-      "query": {
-        "sparql": "PREFIX foaf:<http://xmlns.com/foaf/0.1/> SELECT DISTINCT ?uri WHERE { ?uri foaf:surname 'Baldwin'@en . { ?uri <http://dbpedia.org/ontology/occupation> <http://dbpedia.org/resource/Actor> . } UNION { ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Actor> . } }"
-      }
-    },
-    {
-      "id": "284",
-      "question": [{ "language": "en", "string": "What does CPU stand for?" }],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/>PREFIX res: <http://dbpedia.org/resource/>SELECT DISTINCT ?uriWHERE {        ?uri dbo:abbreviation \"CPU\"@en .} "
-      }
-    },
-    {
-      "id": "170",
-      "question": [{ "language": "en", "string": "Give me all cosmonauts." }],
-      "query": {
-        "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Astronaut> { ?uri <http://dbpedia.org/ontology/nationality> <http://dbpedia.org/resource/Russia> } UNION { ?uri <http://dbpedia.org/ontology/nationality> <http://dbpedia.org/resource/Soviet_Union> } }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Valery_Kubasov"
-        }
-      }
-    },
-    {
-      "id": "286",
-      "question": [
-        {
-          "language": "en",
-          "string": "Who was John F. Kennedy's vice president?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:John_F._Kennedy dbo:vicePresident ?uri }"
-      }
-    },
-    {
-      "id": "171",
-      "question": [
-        {
-          "language": "en",
-          "string": "Give me a list of all bandleaders that play trumpet."
-        }
-      ],
-      "query": {
-        "sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/occupation> <http://dbpedia.org/resource/Bandleader> ; <http://dbpedia.org/ontology/instrument> <http://dbpedia.org/resource/Trumpet> }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Danny_Davis_(country_musician)"
-        }
-      }
-    },
-    {
-      "id": "172",
-      "question": [
-        {
-          "language": "en",
-          "string": "Which countries have more than ten caves?"
-        }
-      ],
-      "query": {
-        "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Country> . ?cave a <http://dbpedia.org/ontology/Cave> { ?cave <http://dbpedia.org/ontology/location> ?uri } UNION { ?cave <http://dbpedia.org/ontology/location> ?loc . ?loc <http://dbpedia.org/ontology/country> ?uri } } GROUP BY ?uri HAVING ( COUNT(?cave) > 10 )"
-      },
-      "answers": {
-        "uri": { "type": "uri", "value": "http://dbpedia.org/resource/Jamaica" }
-      }
-    },
-    {
-      "id": "173",
-      "question": [
-        {
-          "language": "en",
-          "string": "Give me all world heritage sites designated within the past two years."
-        }
-      ],
-      "query": {
-        "sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/WorldHeritageSite> . { ?uri <http://dbpedia.org/property/year> '2013'^^xsd:integer . } UNION { ?uri <http://dbpedia.org/property/year> '2014'^^xsd:integer . } }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Descent_of_the_Holy_Spirit_Church"
-        }
-      }
-    },
-    {
-      "id": "290",
-      "question": [
-        {
-          "language": "en",
-          "string": "Does Breaking Bad have more episodes than Game of Thrones?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> ASK WHERE { res:Breaking_Bad dbo:numberOfEpisodes ?x . res:Game_of_Thrones dbo:numberOfEpisodes ?y FILTER ( ?y > ?x ) }"
-      }
-    },
-    {
-      "id": "174",
-      "question": [
-        {
-          "language": "en",
-          "string": "How many languages are spoken in Turkmenistan?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT (COUNT(DISTINCT ?x) AS ?c) WHERE { res:Turkmenistan dbo:language ?x }"
-      },
-      "answers": {
-        "c": {
-          "type": "typed-literal",
-          "datatype": "http://www.w3.org/2001/XMLSchema#integer",
-          "value": "0"
-        }
-      }
-    },
-    {
-      "id": "175",
-      "question": [
-        {
-          "language": "en",
-          "string": "Give me all actors starring in movies directed by William Shatner."
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { ?x dbo:director res:William_Shatner ; dbo:starring ?uri }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/DeForest_Kelley"
-        }
-      }
-    },
-    {
-      "id": "293",
-      "question": [
-        { "language": "en", "string": "Are tree frogs a type of amphibian?" }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> ASK WHERE { res:Hylidae dbo:class res:Amphibian }"
-      }
-    },
-    {
-      "id": "176",
-      "question": [
-        { "language": "en", "string": "Give me all Methodist politicians." }
-      ],
-      "query": {
-        "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Politician> ; <http://dbpedia.org/ontology/religion> <http://dbpedia.org/resource/Methodism> }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Bourke_B._Hickenlooper"
-        }
-      }
-    },
-    {
-      "id": "177",
-      "question": [
-        { "language": "en", "string": "How often did Jane Fonda marry?" }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT (COUNT(DISTINCT ?uri) AS ?c) WHERE { res:Jane_Fonda dbo:spouse ?uri }"
-      },
-      "answers": {
-        "c": {
-          "type": "typed-literal",
-          "datatype": "http://www.w3.org/2001/XMLSchema#integer",
-          "value": "3"
-        }
-      }
-    },
-    {
-      "id": "296",
-      "question": [
-        {
-          "language": "en",
-          "string": "Which professional surfers were born in Australia?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { { ?uri dbo:occupation res:Surfer ; dbo:birthPlace res:Australia } UNION { ?uri dbo:occupation res:Surfer ; dbo:birthPlace ?place . ?place dbo:country res:Australia } }"
-      }
-    },
-    {
-      "id": "178",
-      "question": [
-        {
-          "language": "en",
-          "string": "Give me all islands that belong to Japan."
-        }
-      ],
-      "query": {
-        "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Island> ; <http://dbpedia.org/ontology/country> <http://dbpedia.org/resource/Japan> }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Amami_Islands"
-        }
-      }
-    },
-    {
-      "id": "179",
-      "question": [
-        { "language": "en", "string": "Give me all Apollo 14 astronauts." }
-      ],
-      "query": {
-        "sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/mission> <http://dbpedia.org/resource/Apollo_14> }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Alan_Shepard"
-        }
-      }
-    },
-    {
-      "id": "180",
-      "question": [
-        {
-          "language": "en",
-          "string": "Which U.S. states are in the same time zone as Utah?"
-        }
-      ],
-      "query": {
-        "sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Utah> <http://dbpedia.org/property/timezone> ?x . ?uri a <http://dbpedia.org/class/yago/WikicatStatesOfTheUnitedStates> ; <http://dbpedia.org/property/timezone> ?x FILTER ( ?uri != <http://dbpedia.org/resource/Utah> ) }"
-      },
-      "answers": {
-        "uri": { "type": "uri", "value": "http://dbpedia.org/resource/Montana" }
-      }
-    },
-    {
-      "id": "181",
-      "question": [{ "language": "en", "string": "Give me all Danish films." }],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Film ; dbo:country res:Denmark }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/De_Udstillede"
-        }
-      }
-    },
-    {
-      "id": "301",
-      "question": [
-        {
-          "language": "en",
-          "string": "Which instruments does Cat Stevens play?"
-        }
-      ],
-      "query": {
-        "sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Cat_Stevens> <http://dbpedia.org/ontology/instrument> ?uri }"
-      }
-    },
-    {
-      "id": "182",
-      "question": [
-        {
-          "language": "en",
-          "string": "Which Chess players died in the same place they were born in?"
-        }
-      ],
-      "query": {
-        "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/ChessPlayer> ; <http://dbpedia.org/ontology/birthPlace> ?x ; <http://dbpedia.org/ontology/deathPlace> ?y FILTER ( ?x = ?y ) }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Bertus_Enklaar"
-        }
-      }
-    },
-    {
-      "id": "303",
-      "question": [{ "language": "en", "string": "Was Marc Chagall a jew?" }],
-      "query": {
-        "sparql": "ASK WHERE { <http://dbpedia.org/resource/Marc_Chagall> <http://dbpedia.org/property/ethnicity> \"Jewish\"@en }"
-      }
-    },
-    {
-      "id": "304",
-      "question": [
-        { "language": "en", "string": "Give me all B-sides of the Ramones." }
-      ],
-      "query": {
-        "sparql": "SELECT DISTINCT ?string WHERE { ?x <http://dbpedia.org/ontology/musicalArtist> <http://dbpedia.org/resource/Ramones> ; <http://dbpedia.org/ontology/bSide> ?string }"
-      }
-    },
-    {
-      "id": "305",
-      "question": [
-        { "language": "en", "string": "Give me all communist countries." }
-      ],
-      "query": {
-        "sparql": "SELECT DISTINCT ?uri WHERE {  ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Country> . ?uri <http://dbpedia.org/property/ideology> <http://dbpedia.org/resource/Communism> . }"
-      }
-    },
-    {
-      "id": "306",
-      "question": [
-        {
-          "language": "en",
-          "string": "Which U.S. state has the highest population density?"
-        }
-      ],
-      "query": {
-        "sparql": "SELECT ?uri WHERE { ?uri <http://dbpedia.org/ontology/country> <http://dbpedia.org/resource/United_States> . ?uri <http://dbpedia.org/ontology/capital> ?capital . ?uri <http://dbpedia.org/property/densityrank> ?density . OPTIONAL {?uri <http://www.w3.org/2000/01/rdf-schema#label> ?string. FILTER (lang(?string) = 'en') } } ORDER BY ASC(?density) LIMIT 1"
-      }
-    },
-    {
-      "id": "183",
-      "question": [
-        { "language": "en", "string": "Which countries adopted the Euro?" }
-      ],
-      "query": {
-        "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Country> { ?uri <http://dbpedia.org/ontology/currency> <http://dbpedia.org/resource/Euro> } UNION { ?uri <http://dbpedia.org/property/currencyCode> \"EUR\"@en } }"
-      },
-      "answers": {
-        "uri": { "type": "uri", "value": "http://dbpedia.org/resource/Andorra" }
-      }
-    },
-    {
-      "id": "308",
-      "question": [
-        {
-          "language": "en",
-          "string": "Which monarchs were married to a German?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Monarch ; dbo:spouse ?spouse { ?spouse dbo:birthPlace res:Germany } UNION { ?spouse dbo:birthPlace ?p . ?p dbo:country res:Germany } }"
-      }
-    },
-    {
-      "id": "184",
-      "question": [
-        {
-          "language": "en",
-          "string": "What is the official language of Suriname?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Suriname dbo:officialLanguage ?uri }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Surinamese_Dutch"
-        }
-      }
-    },
-    {
-      "id": "310",
-      "question": [
-        { "language": "en", "string": "Who is the mayor of Tel Aviv?" }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Tel_Aviv dbo:leaderName ?uri }"
-      }
-    },
-    {
-      "id": "185",
-      "question": [
-        {
-          "language": "en",
-          "string": "What is the highest place of the Urals?"
-        }
-      ],
-      "query": {
-        "sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Ural_Mountains> <http://dbpedia.org/property/highest> ?uri }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Mount_Narodnaya"
-        }
-      }
-    },
-    {
-      "id": "312",
-      "question": [
-        { "language": "en", "string": "Who is the editor of Forbes?" }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Forbes dbo:editor ?uri }"
-      }
-    },
-    {
-      "id": "186",
-      "question": [
-        {
-          "language": "en",
-          "string": "How many countries are there in Europe?"
-        }
-      ],
-      "query": {
-        "sparql": "SELECT (COUNT(DISTINCT ?uri) as ?c) WHERE {  ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/class/yago/EuropeanCountries> . } "
-      },
-      "answers": {
-        "c": {
-          "type": "typed-literal",
-          "datatype": "http://www.w3.org/2001/XMLSchema#integer",
-          "value": "0"
-        }
-      }
-    },
-    {
-      "id": "187",
-      "question": [
-        {
-          "language": "en",
-          "string": "Give me all libraries established earlier than 1400."
-        }
-      ],
-      "query": {
-        "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Library> ; <http://dbpedia.org/property/established> ?year FILTER ( ?year < 1400 ) }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Library_of_Pergamum"
-        }
-      }
-    },
-    {
-      "id": "188",
-      "question": [
-        {
-          "language": "en",
-          "string": "Give me all federal chancellors of Germany."
-        }
-      ],
-      "query": {
-        "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Person> { ?uri <http://dbpedia.org/ontology/office> \"Chancellor of Germany\" } UNION { ?uri <http://dbpedia.org/property/office> <http://dbpedia.org/resource/Chancellor_of_Germany> } }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Franz_von_Papen"
-        }
-      }
-    },
-    {
-      "id": "316",
-      "question": [
-        {
-          "language": "en",
-          "string": "List all episodes of the first season of the HBO television series The Sopranos."
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { ?uri dbo:series res:The_Sopranos ; dbo:seasonNumber 1 }"
-      }
-    },
-    {
-      "id": "317",
-      "question": [
-        {
-          "language": "en",
-          "string": "Which companies work in the aerospace industry as well as in medicine?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { ?uri a dbo:Company ; dbo:industry dbr:Aerospace ; dbo:industry dbr:Medical }"
-      }
-    },
-    {
-      "id": "318",
-      "question": [
-        {
-          "language": "en",
-          "string": "Is Christian Bale starring in Velvet Goldmine?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> ASK WHERE { res:Velvet_Goldmine dbo:starring res:Christian_Bale }"
-      }
-    },
-    {
-      "id": "189",
-      "question": [
-        { "language": "en", "string": "How many Aldi stores are there?" }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?number WHERE { res:Aldi dbo:numberOfLocations ?number }"
-      },
-      "answers": {
-        "number": {
-          "type": "typed-literal",
-          "datatype": "http://www.w3.org/2001/XMLSchema#nonNegativeInteger",
-          "value": "11235"
-        }
-      }
-    },
-    {
-      "id": "320",
-      "question": [
-        {
-          "language": "en",
-          "string": "Who was the first president of the United States?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/>PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>SELECT DISTINCT ?uriWHERE {         ?uri rdf:type dbo:Person .         ?uri dbo:office '1st President of the United States'@en .}"
-      }
-    },
-    {
-      "id": "190",
-      "question": [
-        { "language": "en", "string": "Give me all female given names." }
-      ],
-      "query": {
-        "sparql": "SELECT DISTINCT ?uri WHERE {  ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/GivenName> .  ?uri <http://dbpedia.org/ontology/gender> <http://dbpedia.org/resource/Female> . } "
-      },
-      "answers": {
-        "uri": { "type": "uri", "value": "http://dbpedia.org/resource/Amy" }
-      }
-    },
-    {
-      "id": "191",
-      "question": [
-        {
-          "language": "en",
-          "string": "Who wrote the book The Pillars of the Earth?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:The_Pillars_of_the_Earth dbo:author ?uri }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Ken_Follett"
-        }
-      }
-    },
-    {
-      "id": "192",
-      "question": [
-        {
-          "language": "en",
-          "string": "In which U.S. state is Mount McKinley located?"
-        }
-      ],
-      "query": {
-        "sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Mount_McKinley> dbo:wikiPageRedirects ?x . ?x <http://dbpedia.org/ontology/locatedInArea> ?uri. ?uri rdf:type yago:WikicatStatesOfTheUnitedStates }"
-      },
-      "answers": {
-        "uri": { "type": "uri", "value": "http://dbpedia.org/resource/Alaska" }
-      }
-    },
-    {
-      "id": "193",
-      "question": [
-        {
-          "language": "en",
-          "string": "Which organizations were founded in 1930?"
-        }
-      ],
-      "query": {
-        "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Organisation> { ?uri <http://dbpedia.org/ontology/formationYear> ?date } UNION { ?uri <http://dbpedia.org/ontology/foundingYear> ?date } FILTER regex(?date, \"^1930\") }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/American_Popular_Revolutionary_Alliance"
-        }
-      }
-    },
-    {
-      "id": "194",
-      "question": [
-        { "language": "en", "string": "Give me all ESA astronauts." }
-      ],
-      "query": {
-        "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Astronaut> ; <http://dbpedia.org/property/type> <http://dbpedia.org/resource/European_Space_Agency> }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Dirk_Frimout"
-        }
-      }
-    },
-    {
-      "id": "195",
-      "question": [
-        { "language": "en", "string": "Give me all Swedish holidays." }
-      ],
-      "query": {
-        "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Holiday> ; <http://dbpedia.org/ontology/country> <http://dbpedia.org/resource/Sweden> }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Saint_Knut's_Day"
-        }
-      }
-    },
-    {
-      "id": "196",
-      "question": [
-        {
-          "language": "en",
-          "string": "Who is the youngest Pulitzer Prize winner?"
-        }
-      ],
-      "query": {
-        "sparql": "SELECT DISTINCT ?uri WHERE {  ?uri <http://dbpedia.org/ontology/award> <http://dbpedia.org/resource/Pulitzer_Prize> .  ?uri <http://dbpedia.org/ontology/birthDate> ?d . } ORDER BY DESC(?d) OFFSET 0 LIMIT 1 "
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Mohammad_Ponir_Hossain"
-        }
-      }
-    },
-    {
-      "id": "197",
-      "question": [
-        {
-          "language": "en",
-          "string": "Which animals are critically endangered?"
-        }
-      ],
-      "query": {
-        "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Animal> ; <http://dbpedia.org/ontology/conservationStatus> \"CR\" }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Africallagma_cuneistigma"
-        }
-      }
-    },
-    {
-      "id": "198",
-      "question": [
-        {
-          "language": "en",
-          "string": "Which soccer players were born on Malta?"
-        }
-      ],
-      "query": {
-        "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/SoccerPlayer> ; <http://dbpedia.org/ontology/birthPlace> <http://dbpedia.org/resource/Malta> }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Andrei_Agius"
-        }
-      }
-    },
-    {
-      "id": "330",
-      "question": [
-        {
-          "language": "en",
-          "string": "Did Arnold Schwarzenegger attend a university?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> ASK WHERE { res:Arnold_Schwarzenegger dbo:almaMater ?x . ?x rdf:type dbo:University }"
-      }
-    },
-    {
-      "id": "199",
-      "question": [
-        {
-          "language": "en",
-          "string": "Which programming languages were influenced by Perl?"
-        }
-      ],
-      "query": {
-        "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/ProgrammingLanguage> { ?uri <http://dbpedia.org/ontology/influencedBy> <http://dbpedia.org/resource/Perl> } UNION { <http://dbpedia.org/resource/Perl> <http://dbpedia.org/ontology/influenced> ?uri } }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/BeanShell"
-        }
-      }
-    },
-    {
-      "id": "332",
-      "question": [
-        { "language": "en", "string": "Is Barack Obama a democrat?" }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> ASK WHERE { res:Barack_Obama dbo:party <http://dbpedia.org/resource/Democratic_Party_(United_States)> }"
-      }
-    },
-    {
-      "id": "200",
-      "question": [
-        {
-          "language": "en",
-          "string": "How many children does Eddie Murphy have?"
-        }
-      ],
-      "query": {
-        "sparql": "SELECT DISTINCT ?n WHERE { <http://dbpedia.org/resource/Eddie_Murphy> <http://dbpedia.org/property/children> ?n }"
-      },
-      "answers": {
-        "n": {
-          "type": "typed-literal",
-          "datatype": "http://www.w3.org/2001/XMLSchema#integer",
-          "value": "10"
-        }
-      }
-    },
-    {
-      "id": "334",
-      "question": [
-        {
-          "language": "en",
-          "string": "Who is the oldest child of Meryl Streep?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Meryl_Streep dbo:child ?uri . ?uri dbo:birthDate ?d } ORDER BY ASC(?d) OFFSET 0 LIMIT 1"
-      }
-    },
-    {
-      "id": "335",
-      "question": [{ "language": "en", "string": "Who killed John Lennon?" }],
-      "query": {
-        "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Person> ; <http://dbpedia.org/property/conviction> <http://dbpedia.org/resource/Death_of_John_Lennon> }"
-      }
-    },
-    {
-      "id": "201",
-      "question": [
-        {
-          "language": "en",
-          "string": "Which frequent flyer program has the most airlines?"
-        }
-      ],
-      "query": {
-        "sparql": "SELECT ?uri WHERE { ?airline <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Airline> . ?airline <http://dbpedia.org/property/frequentFlyer> ?uri. } GROUP BY ?uri ORDER BY DESC(COUNT(DISTINCT ?airline)) OFFSET 0 LIMIT 1"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Miles_&_More"
-        }
-      }
-    },
-    {
-      "id": "202",
-      "question": [
-        {
-          "language": "en",
-          "string": "In which city is Air China headquartered?"
-        }
-      ],
-      "query": {
-        "sparql": "SELECT DISTINCT ?uri WHERE {  <http://dbpedia.org/resource/Air_China> <http://dbpedia.org/ontology/headquarter> ?uri .  ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/class/yago/City108524735> . } "
-      },
-      "answers": {
-        "uri": { "type": "uri", "value": "http://dbpedia.org/resource/Beijing" }
-      }
-    },
-    {
-      "id": "203",
-      "question": [
-        {
-          "language": "en",
-          "string": "Which artists were born on the same date as Rachel Stevens?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { ?uri a dbo:Artist . dbr:Rachel_Stevens dbo:birthDate ?birthdate . ?uri dbo:birthDate ?birthdate }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Vesna_Pisarovi\u0107"
-        }
-      }
-    },
-    {
-      "id": "204",
-      "question": [
-        {
-          "language": "en",
-          "string": "How many scientists graduated from an Ivy League university?"
-        }
-      ],
-      "query": {
-        "sparql": "SELECT (COUNT(DISTINCT ?uri) AS ?c) WHERE { ?uri a <http://dbpedia.org/ontology/Scientist> ; <http://dbpedia.org/ontology/almaMater> ?university . ?university <http://dbpedia.org/ontology/affiliation> <http://dbpedia.org/resource/Ivy_League> ; a <http://dbpedia.org/ontology/University> }"
-      },
-      "answers": {
-        "c": {
-          "type": "typed-literal",
-          "datatype": "http://www.w3.org/2001/XMLSchema#integer",
-          "value": "0"
-        }
-      }
-    },
-    {
-      "id": "205",
-      "question": [
-        { "language": "en", "string": "Which types of grapes grow in Oregon?" }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Oregon_wine dbo:growingGrape ?uri }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Dolcetto"
-        }
-      }
-    },
-    {
-      "id": "206",
-      "question": [
-        {
-          "language": "en",
-          "string": "Who is starring in Spanish movies produced by Benicio del Toro?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?film rdf:type dbo:Film ; dbo:country res:Spain ; dbo:producer res:Benicio_del_Toro ; dbo:starring ?uri . ?uri rdf:type dbo:Person }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Benicio_del_Toro"
-        }
-      }
-    },
-    {
-      "id": "342",
-      "question": [
-        { "language": "en", "string": "Who is the manager of Real Madrid?" }
-      ],
-      "query": {
-        "sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Real_Madrid_C.F.> <http://dbpedia.org/ontology/manager> ?uri }"
-      }
-    },
-    {
-      "id": "207",
-      "question": [
-        { "language": "en", "string": "Give me the currency of China." }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:China dbo:currency ?uri }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Renminbi"
-        }
-      }
-    },
-    {
-      "id": "208",
-      "question": [
-        {
-          "language": "en",
-          "string": "Which movies starring Brad Pitt were directed by Guy Ritchie?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Film ; dbo:starring res:Brad_Pitt ; dbo:director res:Guy_Ritchie }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Snatch_(film)__Snatch__1"
-        }
-      }
-    },
-    {
-      "id": "209",
-      "question": [
-        {
-          "language": "en",
-          "string": "How many companies were founded by the founder of Facebook?"
-        }
-      ],
-      "query": {
-        "sparql": "SELECT (COUNT(DISTINCT ?x) AS ?c) WHERE { <http://dbpedia.org/resource/Facebook> <http://dbpedia.org/ontology/foundedBy> ?uri . ?x <http://dbpedia.org/ontology/foundedBy> ?uri }"
-      },
-      "answers": {
-        "c": {
-          "type": "typed-literal",
-          "datatype": "http://www.w3.org/2001/XMLSchema#integer",
-          "value": "0"
-        }
-      }
-    },
-    {
-      "id": "210",
-      "question": [
-        {
-          "language": "en",
-          "string": "How many companies were founded in the same year as Google?"
-        }
-      ],
-      "query": {
-        "sparql": "SELECT (COUNT(DISTINCT ?uri) as ?c) WHERE {  ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Company> .  ?uri <http://dbpedia.org/ontology/foundingYear> ?year .  <http://dbpedia.org/resource/Google> <http://dbpedia.org/ontology/foundingYear> ?year . } "
-      },
-      "answers": {
-        "c": {
-          "type": "typed-literal",
-          "datatype": "http://www.w3.org/2001/XMLSchema#integer",
-          "value": "1343"
-        }
-      }
-    },
-    {
-      "id": "347",
-      "question": [
-        {
-          "language": "en",
-          "string": "Which subsidiary of Lufthansa serves both Dortmund and Berlin Tegel?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Lufthansa dbo:subsidiary ?uri . ?uri dbo:targetAirport res:Dortmund_Airport ; dbo:targetAirport res:Berlin_Tegel_Airport }"
-      }
-    },
-    {
-      "id": "211",
-      "question": [
-        {
-          "language": "en",
-          "string": "How many airlines are members of the Star Alliance?"
-        }
-      ],
-      "query": {
-        "sparql": "SELECT (COUNT(DISTINCT ?uri) AS ?c) WHERE { ?uri a <http://dbpedia.org/ontology/Airline> ; <http://dbpedia.org/ontology/alliance> <http://dbpedia.org/resource/Star_Alliance> }"
-      },
-      "answers": {
-        "c": {
-          "type": "typed-literal",
-          "datatype": "http://www.w3.org/2001/XMLSchema#integer",
-          "value": "107"
-        }
-      }
-    },
-    {
-      "id": "212",
-      "question": [
-        {
-          "language": "en",
-          "string": "Give me all spacecrafts that flew to Mars."
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbc: <http://dbpedia.org/resource/Category:> PREFIX dct: <http://purl.org/dc/terms/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?s WHERE { ?s dct:subject dbc:Mars_rovers ; rdf:type ?type FILTER ( ?type IN (dbo:Satellite, dbo:ArtificialSatellite) ) }"
-      },
-      "answers": {
-        "s": { "type": "uri", "value": "http://dbpedia.org/resource/Mars_2" }
-      }
-    },
-    {
-      "id": "213",
-      "question": [
-        { "language": "en", "string": "Which musician wrote the most books?" }
-      ],
-      "query": {
-        "sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/occupation> <http://dbpedia.org/resource/Musician> . ?x <http://dbpedia.org/ontology/author> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Book> . } ORDER BY DESC(COUNT(?x)) OFFSET 0 LIMIT 1"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Julius_Lester"
-        }
-      }
-    },
-    {
-      "id": "214",
-      "question": [
-        {
-          "language": "en",
-          "string": "Show me everyone who was born on Halloween."
-        }
-      ],
-      "query": {
-        "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Person> { ?uri <http://dbpedia.org/ontology/birthDate> ?date } UNION { ?uri <http://dbpedia.org/property/birthDate> ?date } <http://dbpedia.org/resource/Halloween> <http://dbpedia.org/property/date> ?date }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Mathias_Braschler_and_Monika_Fischer"
-        }
-      }
-    },
-    {
-      "id": "215",
-      "question": [
-        {
-          "language": "en",
-          "string": "Give me all Swiss non-profit organizations."
-        }
-      ],
-      "query": {
-        "sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/type> <http://dbpedia.org/resource/Nonprofit_organization> { ?uri <http://dbpedia.org/ontology/location> <http://dbpedia.org/resource/Switzerland> } UNION { ?uri <http://dbpedia.org/ontology/location> ?x . ?x <http://dbpedia.org/ontology/country> <http://dbpedia.org/resource/Switzerland> } }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Aiducation"
-        }
-      }
-    },
-    {
-      "id": "216",
-      "question": [
-        { "language": "en", "string": "In which country is Mecca located?" }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Mecca dbo:country ?uri }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Saudi_Arabia"
-        }
-      }
-    },
-    {
-      "id": "217",
-      "question": [
-        { "language": "en", "string": "What is the net income of Apple?" }
-      ],
-      "query": {
-        "sparql": "SELECT DISTINCT ?ni WHERE { <http://dbpedia.org/resource/Apple_Inc.> <http://dbpedia.org/ontology/netIncome> ?ni }"
-      },
-      "answers": {
-        "ni": {
-          "type": "typed-literal",
-          "datatype": "http://dbpedia.org/datatype/usDollar",
-          "value": "9.468E10"
-        }
-      }
-    },
-    {
-      "id": "218",
-      "question": [
-        {
-          "language": "en",
-          "string": "What does the abbreviation FIFA stand for?"
-        }
-      ],
-      "query": {
-        "sparql": "SELECT DISTINCT ?name WHERE {  <http://dbpedia.org/resource/FIFA> <http://dbpedia.org/property/name> ?name . } "
-      },
-      "answers": {
-        "name": {
-          "type": "literal",
-          "xml:lang": "en",
-          "value": "F\u00e9d\u00e9ration internationale de Football Association"
-        }
-      }
-    },
-    {
-      "id": "356",
-      "question": [
-        { "language": "en", "string": "When did the Ming dynasty dissolve?" }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?date WHERE { res:Ming_dynasty dbo:dissolutionDate ?date }"
-      }
-    },
-    {
-      "id": "219",
-      "question": [
-        {
-          "language": "en",
-          "string": "Which museum in New York has the most visitors?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Museum ; dbo:location res:New_York_City ; dbo:numberOfVisitors ?num } ORDER BY DESC(?num) OFFSET 0 LIMIT 1"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/American_Museum_of_Natural_History"
-        }
-      }
-    },
-    {
-      "id": "358",
-      "question": [
-        {
-          "language": "en",
-          "string": "Is Lake Baikal bigger than the Great Bear Lake?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> ASK WHERE { res:Lake_Baikal dbo:areaTotal ?a1 . res:Great_Bear_Lake dbo:areaTotal ?a2 FILTER ( ?a1 > ?a2 ) }"
-      }
-    },
-    {
-      "id": "359",
-      "question": [
-        {
-          "language": "en",
-          "string": "Desserts from which country contain fish?"
-        }
-      ],
-      "query": {
-        "sparql": "SELECT DISTINCT ?uri WHERE {  ?x <http://dbpedia.org/ontology/type> <http://dbpedia.org/resource/Dessert> .  ?x <http://dbpedia.org/ontology/origin> ?uri .  ?x <http://dbpedia.org/ontology/ingredient> <http://dbpedia.org/resource/Fish> . } "
-      }
-    },
-    {
-      "id": "220",
-      "question": [
-        { "language": "en", "string": "What is the highest mountain in Italy?" }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Mountain ; dbo:locatedInArea res:Italy ; dbo:elevation ?num } ORDER BY DESC(?num) OFFSET 0 LIMIT 1"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Mont_Blanc"
-        }
-      }
-    },
-    {
-      "id": "221",
-      "question": [
-        {
-          "language": "en",
-          "string": "Where did the architect of the Eiffel Tower study?"
-        }
-      ],
-      "query": {
-        "sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Eiffel_Tower> <http://dbpedia.org/ontology/architect> ?x . ?x <http://dbpedia.org/property/almaMater> ?uri }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/\u00c9cole_Sp\u00e9ciale_d'Architecture"
-        }
-      }
-    },
-    {
-      "id": "222",
-      "question": [
-        { "language": "en", "string": "Which Greek parties are pro-European?" }
-      ],
-      "query": {
-        "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/PoliticalParty> ; <http://dbpedia.org/ontology/country> <http://dbpedia.org/resource/Greece> ; <http://dbpedia.org/ontology/ideology> <http://dbpedia.org/resource/Pro-Europeanism> }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Democratic_Alignment_(2015)"
-        }
-      }
-    },
-    {
-      "id": "363",
-      "question": [
-        {
-          "language": "en",
-          "string": "What is the height difference between Mount Everest and K2?"
-        }
-      ],
-      "query": {
-        "sparql": "SELECT DISTINCT (?h1-?h2) WHERE {  <http://dbpedia.org/resource/Mount_Everest> <http://dbpedia.org/ontology/elevation> ?h1 .  <http://dbpedia.org/resource/K2> <http://dbpedia.org/ontology/elevation> ?h2 . } "
-      }
-    },
-    {
-      "id": "364",
-      "question": [
-        { "language": "en", "string": "Who is the mayor of Rotterdam?" }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Rotterdam dbo:leaderName ?uri }"
-      }
-    },
-    {
-      "id": "223",
-      "question": [
-        { "language": "en", "string": "How high is the Yokohama Marine Tower?" }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?num WHERE { res:Yokohama_Marine_Tower dbo:height ?num }"
-      },
-      "answers": {
-        "num": {
-          "type": "typed-literal",
-          "datatype": "http://www.w3.org/2001/XMLSchema#double",
-          "value": "106.07"
-        }
-      }
-    },
-    {
-      "id": "366",
-      "question": [
-        {
-          "language": "en",
-          "string": "Are Taiko a kind of Japanese musical instruments?"
-        }
-      ],
-      "query": {
-        "sparql": "ASK WHERE {  <http://dbpedia.org/resource/Taiko> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/class/yago/JapaneseMusicalInstruments> . } "
-      }
-    },
-    {
-      "id": "224",
-      "question": [
-        {
-          "language": "en",
-          "string": "How many ethnic groups live in Slovenia?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT (COUNT(DISTINCT ?uri) AS ?c) WHERE { res:Slovenia dbo:ethnicGroup ?uri }"
-      },
-      "answers": {
-        "c": {
-          "type": "typed-literal",
-          "datatype": "http://www.w3.org/2001/XMLSchema#integer",
-          "value": "7"
-        }
-      }
-    },
-    {
-      "id": "225",
-      "question": [
-        { "language": "en", "string": "List the seven kings of Rome." }
-      ],
-      "query": {
-        "sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/title> <http://dbpedia.org/resource/King_of_Rome> }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Ancus_Marcius"
-        }
-      }
-    },
-    {
-      "id": "226",
-      "question": [
-        {
-          "language": "en",
-          "string": "Who were the parents of Queen Victoria?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Queen_Victoria dbo:parent ?uri }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Prince_Edward,_Duke_of_Kent_and_Strathearn"
-        }
-      }
-    },
-    {
-      "id": "227",
-      "question": [
-        {
-          "language": "en",
-          "string": "Who is the heaviest player of the Chicago Bulls?"
-        }
-      ],
-      "query": {
-        "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Person> ; <http://dbpedia.org/ontology/weight> ?num { ?uri <http://dbpedia.org/property/team> <http://dbpedia.org/resource/Chicago_Bulls> } UNION { ?uri <http://dbpedia.org/property/draftTeam> <http://dbpedia.org/resource/Chicago_Bulls> } UNION { ?uri <http://dbpedia.org/ontology/draftTeam> <http://dbpedia.org/resource/Chicago_Bulls> } } ORDER BY DESC(?num) OFFSET 0 LIMIT 1"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Michael_Sweetney"
-        }
-      }
-    },
-    {
-      "id": "228",
-      "question": [
-        {
-          "language": "en",
-          "string": "Which volcanos in Japan erupted since 2000?"
-        }
-      ],
-      "query": {
-        "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Volcano> ; <http://dbpedia.org/ontology/locatedInArea> <http://dbpedia.org/resource/Japan> ; <http://dbpedia.org/ontology/eruptionYear> ?date FILTER ( year(?date) >= 2000 ) }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Mount_I\u014d_(I\u014djima)"
-        }
-      }
-    },
-    {
-      "id": "229",
-      "question": [
-        { "language": "en", "string": "Who is the tallest basketball player?" }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:BasketballPlayer ; dbo:height ?num } ORDER BY DESC(?num) OFFSET 0 LIMIT 1"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Edison_Reshketa"
-        }
-      }
-    },
-    {
-      "id": "373",
-      "question": [
-        {
-          "language": "en",
-          "string": "In which country does the Ganges start?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Ganges dbo:sourceCountry ?uri }"
-      }
-    },
-    {
-      "id": "374",
-      "question": [
-        {
-          "language": "en",
-          "string": "Do Prince Harry and Prince William have the same parents?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> ASK WHERE { <http://dbpedia.org/resource/Prince_William,_Duke_of_Cambridge> dbo:parent ?x . res:Prince_Harry dbo:parent ?x }"
-      }
-    },
-    {
-      "id": "230",
-      "question": [
-        {
-          "language": "en",
-          "string": "How many missions does the Soyuz programme have?"
-        }
-      ],
-      "query": {
-        "sparql": "SELECT (COUNT(DISTINCT ?uri) AS ?c) WHERE { ?uri <http://dbpedia.org/property/programme> <http://dbpedia.org/resource/Soyuz_programme> }"
-      },
-      "answers": {
-        "c": {
-          "type": "typed-literal",
-          "datatype": "http://www.w3.org/2001/XMLSchema#integer",
-          "value": "148"
-        }
-      }
-    },
-    {
-      "id": "231",
-      "question": [
-        { "language": "en", "string": "Give me all Danish movies." }
-      ],
-      "query": {
-        "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Film> ; <http://dbpedia.org/ontology/country> <http://dbpedia.org/resource/Denmark> }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/De_Udstillede"
-        }
-      }
-    },
-    {
-      "id": "377",
-      "question": [
-        { "language": "en", "string": "Is Rita Wilson the wife of Tom Hanks?" }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> ASK WHERE { res:Tom_Hanks dbo:spouse res:Rita_Wilson }"
-      }
-    },
-    {
-      "id": "378",
-      "question": [
-        { "language": "en", "string": "Who was called Frank The Tank?" }
-      ],
-      "query": {
-        "sparql": "PREFIX dbp: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE {         ?uri dbp:nickname 'Frank The Tank'@en . }"
-      }
-    },
-    {
-      "id": "232",
-      "question": [
-        { "language": "en", "string": "Which movies did Kurosawa direct?" }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT ?uri WHERE { ?uri rdf:type dbo:Film ; dbo:director res:Akira_Kurosawa }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Dersu_Uzala_(1975_film)"
-        }
-      }
-    },
-    {
-      "id": "233",
-      "question": [
-        {
-          "language": "en",
-          "string": "Which television shows were created by John Cleese?"
-        }
-      ],
-      "query": {
-        "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/TelevisionShow> ; <http://dbpedia.org/ontology/creator> <http://dbpedia.org/resource/John_Cleese> }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Monty_Python's_Fliegender_Zirkus"
-        }
-      }
-    },
-    {
-      "id": "234",
-      "question": [
-        {
-          "language": "en",
-          "string": "Which awards did Douglas Hofstadter win?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Douglas_Hofstadter dbo:award ?uri }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/American_Academy_of_Arts_and_Sciences"
-        }
-      }
-    },
-    {
-      "id": "235",
-      "question": [
-        {
-          "language": "en",
-          "string": "Who is the daughter of Robert Kennedy married to?"
-        }
-      ],
-      "query": {
-        "sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Robert_F._Kennedy> <http://dbpedia.org/ontology/child> ?child . ?child <http://dbpedia.org/ontology/spouse> ?uri }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Andrew_Cuomo"
-        }
-      }
-    },
-    {
-      "id": "236",
-      "question": [
-        { "language": "en", "string": "Who is the owner of Rolls-Royce?" }
-      ],
-      "query": {
-        "sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Rolls-Royce_Motors> <http://dbpedia.org/ontology/owner> ?uri }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Vickers_plc"
-        }
-      }
-    },
-    {
-      "id": "384",
-      "question": [
-        {
-          "language": "en",
-          "string": "Was the wife of president Lincoln called Mary?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> ASK WHERE { res:Abraham_Lincoln dbo:spouse ?spouse . ?spouse rdfs:label ?name FILTER regex(?name, \"Mary\") }"
-      }
-    },
-    {
-      "id": "385",
-      "question": [
-        {
-          "language": "en",
-          "string": "Who was the 16th president of the United States?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/>PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>SELECT DISTINCT ?uriWHERE {         ?uri dbo:office 'President of the United States' .         ?uri dbo:orderInOffice '16th' .}"
-      }
-    },
-    {
-      "id": "237",
-      "question": [
-        {
-          "language": "en",
-          "string": "What is the most frequent cause of death?"
-        }
-      ],
-      "query": {
-        "sparql": "SELECT DISTINCT ?x WHERE { ?uri <http://dbpedia.org/ontology/deathCause> ?x . } ORDER BY DESC(COUNT(DISTINCT ?uri)) OFFSET 0 LIMIT 1"
-      },
-      "answers": {
-        "x": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Gunshot_wound"
-        }
-      }
-    },
-    {
-      "id": "238",
-      "question": [
-        {
-          "language": "en",
-          "string": "Which rockets were launched from Baikonur?"
-        }
-      ],
-      "query": {
-        "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Rocket> ; <http://dbpedia.org/ontology/launchSite> <http://dbpedia.org/resource/Baikonur_Cosmodrome> }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Voskhod_(rocket)"
-        }
-      }
-    },
-    {
-      "id": "239",
-      "question": [{ "language": "en", "string": "What does IYCM stand for?" }],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { ?uri dbo:abbreviation \"IYCM\" }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Youth_Climate_Movement"
-        }
-      }
-    },
-    {
-      "id": "240",
-      "question": [
-        {
-          "language": "en",
-          "string": "Which companies have more than 1 million employees?"
-        }
-      ],
-      "query": {
-        "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Company> { ?uri <http://dbpedia.org/ontology/numberOfEmployees> ?n } UNION { ?uri <http://dbpedia.org/property/numEmployees> ?n } FILTER ( ?n > 1000000 ) }"
-      },
-      "answers": {
-        "uri": { "type": "uri", "value": "http://dbpedia.org/resource/Walmart" }
-      }
-    },
-    {
-      "id": "241",
-      "question": [
-        {
-          "language": "en",
-          "string": "Give all swimmers that were born in Moscow."
-        }
-      ],
-      "query": {
-        "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Swimmer> ; <http://dbpedia.org/ontology/birthPlace> <http://dbpedia.org/resource/Moscow> }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Alla_Grebennikova"
-        }
-      }
-    },
-    {
-      "id": "391",
-      "question": [{ "language": "en", "string": "Who was called Rodzilla?" }],
-      "query": {
-        "sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://xmlns.com/foaf/0.1/nick> \"Rodzilla\"@en }"
-      }
-    },
-    {
-      "id": "242",
-      "question": [
-        {
-          "language": "en",
-          "string": "Show me the book that Muhammad Ali wrote."
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Book ; dbo:author res:Muhammad_Ali }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/The_Soul_of_a_Butterfly"
-        }
-      }
-    },
-    {
-      "id": "243",
-      "question": [
-        { "language": "en", "string": "How many museums does Paris have?" }
-      ],
-      "query": {
-        "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Museum> ; <http://dbpedia.org/ontology/location> <http://dbpedia.org/resource/Paris> }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Gallery_of_Paleontology_and_Comparative_Anatomy"
-        }
-      }
-    },
-    {
-      "id": "244",
-      "question": [
-        { "language": "en", "string": "Which city has the most inhabitants?" }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:City ; dbo:populationTotal ?pop } ORDER BY DESC(?pop) OFFSET 0 LIMIT 1"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Beinamar"
-        }
-      }
-    },
-    {
-      "id": "245",
-      "question": [
-        { "language": "en", "string": "Which city has the least inhabitants?" }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:City ; dbo:populationTotal ?pop } ORDER BY ASC(?pop) OFFSET 0 LIMIT 1"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Ambae_Island"
-        }
-      }
-    },
-    {
-      "id": "246",
-      "question": [
-        {
-          "language": "en",
-          "string": "Give me all the TV shows with Neil Patrick Harris."
-        }
-      ],
-      "query": {
-        "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/TelevisionShow> ; <http://dbpedia.org/ontology/starring> <http://dbpedia.org/resource/Neil_Patrick_Harris> }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/The_Christmas_Blessing"
-        }
-      }
-    },
-    {
-      "id": "247",
-      "question": [
-        { "language": "en", "string": "Who wrote The Hunger Games?" }
-      ],
-      "query": {
-        "sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/The_Hunger_Games> <http://dbpedia.org/property/author> ?uri }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Suzanne_Collins"
-        }
-      }
-    },
-    {
-      "id": "248",
-      "question": [
-        {
-          "language": "en",
-          "string": "Show a list of soccer clubs that play in the Bundesliga."
-        }
-      ],
-      "query": {
-        "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/SoccerClub> ; <http://dbpedia.org/ontology/league> <http://dbpedia.org/resource/Bundesliga> }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/1969\u201370_FC_Bayern_Munich_season"
-        }
-      }
-    },
-    {
-      "id": "249",
-      "question": [
-        { "language": "en", "string": "What country is Mount Everest in?" }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { res:Mount_Everest dbo:locatedInArea ?uri . ?uri rdf:type dbo:Country }"
-      },
-      "answers": {
-        "uri": { "type": "uri", "value": "http://dbpedia.org/resource/China" }
-      }
-    },
-    {
-      "id": "250",
-      "question": [
-        { "language": "en", "string": "Who is the founder of Penguin Books?" }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { res:Penguin_Books dbo:founder ?uri }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Allen_Lane"
-        }
-      }
-    },
-    {
-      "id": "251",
-      "question": [
-        {
-          "language": "en",
-          "string": "Which programming languages influenced Javascript?"
-        }
-      ],
-      "query": {
-        "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/ProgrammingLanguage> ; <http://dbpedia.org/ontology/influenced> <http://dbpedia.org/resource/JavaScript> }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/CoffeeScript"
-        }
-      }
-    },
-    {
-      "id": "402",
-      "question": [
-        { "language": "en", "string": "Did Che Guevara have children?" }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> ASK WHERE { res:Che_Guevara dbo:child ?uri }"
-      }
-    },
-    {
-      "id": "252",
-      "question": [
-        {
-          "language": "en",
-          "string": "List all the musicals with music by Elton John."
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Musical ; dbo:musicBy res:Elton_John }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Aida_(musical)"
-        }
-      }
-    },
-    {
-      "id": "253",
-      "question": [
-        {
-          "language": "en",
-          "string": "Show me all the breweries in Australia."
-        }
-      ],
-      "query": {
-        "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Brewery> { ?uri <http://dbpedia.org/ontology/location> <http://dbpedia.org/resource/Australia> } UNION { ?uri <http://dbpedia.org/ontology/location> ?x . ?x <http://dbpedia.org/ontology/country> <http://dbpedia.org/resource/Australia> } }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Cascade_Brewery"
-        }
-      }
-    },
-    {
-      "id": "405",
-      "question": [
-        { "language": "en", "string": "When was the Titanic completed?" }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?date WHERE { res:RMS_Titanic dbo:completionDate ?date }"
-      }
-    },
-    {
-      "id": "254",
-      "question": [
-        { "language": "en", "string": "How much did Pulp Fiction cost?" }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?n WHERE { res:Pulp_Fiction dbo:budget ?n }"
-      },
-      "answers": {
-        "n": {
-          "type": "typed-literal",
-          "datatype": "http://dbpedia.org/datatype/usDollar",
-          "value": "8.0"
-        }
-      }
-    },
-    {
-      "id": "255",
-      "question": [
-        { "language": "en", "string": "How many airlines are there?" }
-      ],
-      "query": {
-        "sparql": "SELECT (COUNT(DISTINCT ?uri) AS ?c) WHERE { ?uri a <http://dbpedia.org/ontology/Airline> }"
-      },
-      "answers": {
-        "c": {
-          "type": "typed-literal",
-          "datatype": "http://www.w3.org/2001/XMLSchema#integer",
-          "value": "4838"
-        }
-      }
-    },
-    {
-      "id": "256",
-      "question": [
-        { "language": "en", "string": "Who played Agent Smith in Matrix?" }
-      ],
-      "query": {
-        "sparql": "PREFIX res: <http://dbpedia.org/resource/> PREFIX dbp: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Agent_Smith <http://dbpedia.org/ontology/portrayer> ?uri }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Jonathan_Groff"
-        }
-      }
-    },
-    {
-      "id": "257",
-      "question": [
-        {
-          "language": "en",
-          "string": "How much carbs does peanut butter have?"
-        }
-      ],
-      "query": {
-        "sparql": "SELECT DISTINCT ?carbs WHERE { <http://dbpedia.org/resource/Peanut_butter> <http://dbpedia.org/property/carbs> ?carbs }"
-      },
-      "answers": {
-        "carbs": {
-          "type": "typed-literal",
-          "datatype": "http://dbpedia.org/datatype/gram",
-          "value": "22.3"
-        }
-      }
-    },
-    {
-      "id": "258",
-      "question": [
-        { "language": "en", "string": "Which book has the most pages?" }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Book ; dbo:numberOfPages ?n } ORDER BY DESC(?n) OFFSET 0 LIMIT 1"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/The_Tolkien_Reader"
-        }
-      }
-    },
-    {
-      "id": "259",
-      "question": [
-        { "language": "en", "string": "Which bridges cross the Seine?" }
-      ],
-      "query": {
-        "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Bridge> ; <http://dbpedia.org/ontology/crosses> <http://dbpedia.org/resource/Seine> }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Viaduc_d'Austerlitz"
-        }
-      }
-    },
-    {
-      "id": "412",
-      "question": [
-        {
-          "language": "en",
-          "string": "Who is the mayor of the capital of French Polynesia?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:French_Polynesia dbo:capital ?x . ?x dbo:mayor ?uri }"
-      }
-    },
-    {
-      "id": "260",
-      "question": [
-        { "language": "en", "string": "When did Dracula's creator die?" }
-      ],
-      "query": {
-        "sparql": "SELECT DISTINCT xsd:date(?date) WHERE { <http://dbpedia.org/resource/Count_Dracula> <http://dbpedia.org/ontology/creator> ?x . ?x <http://dbpedia.org/ontology/deathDate> ?date. }"
-      },
-      "answers": {
-        "callret-0": {
-          "type": "typed-literal",
-          "datatype": "http://www.w3.org/2001/XMLSchema#date",
-          "value": "1912-04-20"
-        }
-      }
-    },
-    {
-      "id": "261",
-      "question": [
-        {
-          "language": "en",
-          "string": "What is the location of the Houses of Parliament?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT ?uri WHERE { res:Palace_of_Westminster dbo:location ?uri }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/United_Kingdom"
-        }
-      }
-    },
-    {
-      "id": "262",
-      "question": [
-        {
-          "language": "en",
-          "string": "Show me all English Gothic buildings in Kent."
-        }
-      ],
-      "query": {
-        "sparql": "SELECT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Building> ; <http://dbpedia.org/ontology/architecturalStyle> <http://dbpedia.org/resource/English_Gothic_architecture> ; <http://dbpedia.org/ontology/location> <http://dbpedia.org/resource/Kent> }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/All_Saints_Church,_Waldershare"
-        }
-      }
-    },
-    {
-      "id": "416",
-      "question": [
-        {
-          "language": "en",
-          "string": "Who was the pope that founded the Vatican Television?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT ?uri WHERE { ?uri rdf:type dbo:Pope . res:Vatican_Television_Center dbo:foundedBy ?uri }"
-      }
-    },
-    {
-      "id": "263",
-      "question": [
-        {
-          "language": "en",
-          "string": "What airlines are part of the SkyTeam alliance?"
-        }
-      ],
-      "query": {
-        "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Airline> { ?uri <http://dbpedia.org/ontology/alliance> <http://dbpedia.org/resource/SkyTeam> } UNION { ?uri <http://dbpedia.org/ontology/Alliance> <http://dbpedia.org/resource/SkyTeam> } }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Alitalia"
-        }
-      }
-    },
-    {
-      "id": "264",
-      "question": [
-        {
-          "language": "en",
-          "string": "What is the total population of Melbourne, Florida?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> SELECT ?uri WHERE { <http://dbpedia.org/resource/Melbourne,_Florida> dbo:populationTotal ?uri }"
-      },
-      "answers": {
-        "uri": {
-          "type": "typed-literal",
-          "datatype": "http://www.w3.org/2001/XMLSchema#nonNegativeInteger",
-          "value": "84678"
-        }
-      }
-    },
-    {
-      "id": "265",
-      "question": [
-        { "language": "en", "string": "Which airports does Air China serve?" }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Air_China dbo:targetAirport ?uri }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Hangzhou_Xiaoshan_International_Airport"
-        }
-      }
-    },
-    {
-      "id": "266",
-      "question": [
-        { "language": "en", "string": "In which year was Rachel Stevens born?" }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Rachel_Stevens dbo:birthYear ?uri }"
-      },
-      "answers": {
-        "uri": {
-          "type": "typed-literal",
-          "datatype": "http://www.w3.org/2001/XMLSchema#gYear",
-          "value": "1978"
-        }
-      }
-    },
-    {
-      "id": "267",
-      "question": [
-        { "language": "en", "string": "Where was JFK assassinated?" }
-      ],
-      "query": {
-        "sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/John_F._Kennedy> <http://dbpedia.org/ontology/deathPlace> ?uri }"
-      },
-      "answers": {
-        "uri": { "type": "uri", "value": "http://dbpedia.org/resource/Dallas" }
-      }
-    },
-    {
-      "id": "268",
-      "question": [
-        {
-          "language": "en",
-          "string": "How many politicians graduated from Columbia University?"
-        }
-      ],
-      "query": {
-        "sparql": "SELECT (COUNT(DISTINCT ?uri) AS ?c) WHERE { ?uri <http://dbpedia.org/ontology/profession> <http://dbpedia.org/resource/Politician> ; <http://dbpedia.org/ontology/almaMater> <http://dbpedia.org/resource/Columbia_University> }"
-      },
-      "answers": {
-        "c": {
-          "type": "typed-literal",
-          "datatype": "http://www.w3.org/2001/XMLSchema#integer",
-          "value": "10"
-        }
-      }
-    },
-    {
-      "id": "423",
-      "question": [
-        {
-          "language": "en",
-          "string": "Which scientist is known for the Manhattan Project and the Nobel Peace Prize?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri dbo:knownFor res:Manhattan_Project ; rdf:type dbo:Scientist ; dbo:knownFor res:Nobel_Peace_Prize }"
-      }
-    },
-    {
-      "id": "269",
-      "question": [
-        { "language": "en", "string": "What is the highest volcano in Africa?" }
-      ],
-      "query": {
-        "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Volcano> ; <http://dbpedia.org/ontology/locatedInArea> ?area . ?area dct:subject dbc:Countries_in_Africa . ?uri <http://dbpedia.org/ontology/elevation> ?elevation } ORDER BY DESC(?elevation) LIMIT 1"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Mount_Kenya"
-        }
-      }
-    },
-    {
-      "id": "425",
-      "question": [
-        { "language": "en", "string": "Which beer originated in Ireland?" }
-      ],
-      "query": {
-        "sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/type> <http://dbpedia.org/resource/Beer> ; <http://dbpedia.org/ontology/origin> <http://dbpedia.org/resource/Beer_in_Ireland> }"
-      }
-    },
-    {
-      "id": "270",
-      "question": [
-        {
-          "language": "en",
-          "string": "What are the specialities of the UNC Health Care?"
-        }
-      ],
-      "query": {
-        "sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/UNC_Health_Care> <http://dbpedia.org/property/speciality> ?uri }"
-      },
-      "answers": {
-        "uri": { "type": "uri", "value": "http://dbpedia.org/resource/Cancer" }
-      }
-    },
-    {
-      "id": "427",
-      "question": [
-        { "language": "en", "string": "Who is the owner of Facebook?" }
-      ],
-      "query": {
-        "sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Facebook> <http://dbpedia.org/ontology/foundedBy> ?uri }"
-      }
-    },
-    {
-      "id": "271",
-      "question": [
-        {
-          "language": "en",
-          "string": "From which region is the Melon de Bourgogne?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Melon_de_Bourgogne dbo:wineRegion ?uri }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Washington_(state)"
-        }
-      }
-    },
-    {
-      "id": "272",
-      "question": [
-        { "language": "en", "string": "Who was influenced by Socrates?" }
-      ],
-      "query": {
-        "sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/influencedBy> <http://dbpedia.org/resource/Socrates> }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Arcesilaus"
-        }
-      }
-    },
-    {
-      "id": "273",
-      "question": [
-        { "language": "en", "string": "Who was president of Pakistan in 1978?" }
-      ],
-      "query": {
-        "sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/title> <http://dbpedia.org/resource/President_of_Pakistan> ; <http://dbpedia.org/property/years> 1978 }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Muhammad_Zia-ul-Haq"
-        }
-      }
-    },
-    {
-      "id": "274",
-      "question": [
-        {
-          "language": "en",
-          "string": "Give me English actors starring in Lovesick."
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Lovesick_(1983_film)> dbo:starring ?uri . ?uri dbo:birthPlace ?city . ?city dbo:country <http://dbpedia.org/resource/United_Kingdom> }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Dudley_Moore"
-        }
-      }
-    },
-    {
-      "id": "275",
-      "question": [
-        { "language": "en", "string": "Give me all types of eating disorders." }
-      ],
-      "query": {
-        "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/class/yago/WikicatEatingDisorders> }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Disordered_eating"
-        }
-      }
-    },
-    {
-      "id": "276",
-      "question": [
-        { "language": "en", "string": "Who was married to president Chirac?" }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Jacques_Chirac dbo:spouse ?uri }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Bernadette_Chirac"
-        }
-      }
-    },
-    {
-      "id": "277",
-      "question": [
-        {
-          "language": "en",
-          "string": "What is the largest metropolitan area in Washington state?"
-        }
-      ],
-      "query": {
-        "sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Washington_(state)> <http://dbpedia.org/property/largestmetro> ?uri }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Seattle_metropolitan_area"
-        }
-      }
-    },
-    {
-      "id": "278",
-      "question": [
-        {
-          "language": "en",
-          "string": "Where in France is sparkling wine produced?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { ?uri dbo:wineProduced res:Sparkling_wine ; dbo:location res:France }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Loire_Valley_(wine)"
-        }
-      }
-    },
-    {
-      "id": "279",
-      "question": [
-        { "language": "en", "string": "Where did Hillel Slovak die?" }
-      ],
-      "query": {
-        "sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Hillel_Slovak> <http://dbpedia.org/ontology/deathPlace> ?uri }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/California"
-        }
-      }
-    },
-    {
-      "id": "280",
-      "question": [
-        {
-          "language": "en",
-          "string": "What is the timezone in San Pedro de Atacama?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:San_Pedro_de_Atacama dbo:timeZone ?uri }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Time_in_Chile"
-        }
-      }
-    },
-    {
-      "id": "281",
-      "question": [
-        {
-          "language": "en",
-          "string": "In which city does the Chile Route 68 end?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Chile_Route_68 dbo:routeEnd ?uri }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Valpara\u00edso"
-        }
-      }
-    },
-    {
-      "id": "282",
-      "question": [
-        {
-          "language": "en",
-          "string": "Who was the doctoral supervisor of Albert Einstein?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Albert_Einstein dbo:doctoralAdvisor ?uri }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Alfred_Kleiner"
-        }
-      }
-    },
-    {
-      "id": "440",
-      "question": [
-        {
-          "language": "en",
-          "string": "Did Kaurism\u00e4ki ever win the Grand Prix at Cannes?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> ASK WHERE { res:Aki_Kaurism\u00e4ki dbo:award <http://dbpedia.org/resource/Grand_Prix_(Cannes_Film_Festival)> }"
-      }
-    },
-    {
-      "id": "283",
-      "question": [
-        { "language": "en", "string": "Who wrote the song Hotel California?" }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Hotel_California dbo:writer ?uri }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Glenn_Frey"
-        }
-      }
-    },
-    {
-      "id": "284",
-      "question": [
-        { "language": "en", "string": "Who was on the Apollo 11 mission?" }
-      ],
-      "query": {
-        "sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Apollo_11> <http://dbpedia.org/property/crewMembers> ?uri }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Buzz_Aldrin"
-        }
-      }
-    },
-    {
-      "id": "443",
-      "question": [
-        {
-          "language": "en",
-          "string": "Which electronics companies were founded in Beijing?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Company ; dbo:industry res:Electronics ; dbo:foundationPlace res:Beijing }"
-      }
-    },
-    {
-      "id": "285",
-      "question": [
-        { "language": "en", "string": "What is in a chocolate chip cookie?" }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Chocolate_chip_cookie dbo:ingredient ?uri }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Chocolate_chip"
-        }
-      }
-    },
-    {
-      "id": "286",
-      "question": [
-        {
-          "language": "en",
-          "string": "What is the atmosphere of the Moon composed of?"
-        }
-      ],
-      "query": {
-        "sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Moon> <http://dbpedia.org/property/atmosphereComposition> ?uri }"
-      },
-      "answers": {
-        "uri": { "type": "uri", "value": "http://dbpedia.org/resource/Argon" }
-      }
-    },
-    {
-      "id": "287",
-      "question": [
-        {
-          "language": "en",
-          "string": "How many movies did Park Chan-wook direct?"
-        }
-      ],
-      "query": {
-        "sparql": "SELECT COUNT(DISTINCT ?uri AS ?uri) WHERE { ?uri <http://dbpedia.org/ontology/director> <http://dbpedia.org/resource/Park_Chan-wook> . }"
-      },
-      "answers": {
-        "callret-0": {
-          "type": "typed-literal",
-          "datatype": "http://www.w3.org/2001/XMLSchema#integer",
-          "value": "17"
-        }
-      }
-    },
-    {
-      "id": "288",
-      "question": [
-        { "language": "en", "string": "Who are the developers of DBpedia?" }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:DBpedia dbo:developer ?uri }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/OpenLink_Software"
-        }
-      }
-    },
-    {
-      "id": "289",
-      "question": [
-        {
-          "language": "en",
-          "string": "Which Indian company has the most employees?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Company ; dbo:location res:India ; dbo:numberOfEmployees ?n } ORDER BY DESC(?n) OFFSET 0 LIMIT 1"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Ministry_of_Railways_(India)"
-        }
-      }
-    },
-    {
-      "id": "449",
-      "question": [
-        {
-          "language": "en",
-          "string": "What is the name of the school where Obama's wife studied?"
-        }
-      ],
-      "query": {
-        "sparql": "SELECT DISTINCT ?s WHERE { <http://dbpedia.org/resource/Barack_Obama> <http://dbpedia.org/property/spouse> ?x . ?x <http://dbpedia.org/property/almaMater> ?s . } "
-      }
-    },
-    {
-      "id": "290",
-      "question": [
-        { "language": "en", "string": "Where does Piccadilly start?" }
-      ],
-      "query": {
-        "sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/routeStart> <http://dbpedia.org/resource/Piccadilly> }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Dover_Street"
-        }
-      }
-    },
-    {
-      "id": "291",
-      "question": [
-        { "language": "en", "string": "What is the capital of Cameroon?" }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Cameroon dbo:capital ?uri }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Yaound\u00e9"
-        }
-      }
-    },
-    {
-      "id": "292",
-      "question": [
-        {
-          "language": "en",
-          "string": "When did the Boston Tea Party take place?"
-        }
-      ],
-      "query": {
-        "sparql": "SELECT DISTINCT ?d WHERE { <http://dbpedia.org/resource/Boston_Tea_Party> <http://dbpedia.org/property/date> ?d }"
-      },
-      "answers": {
-        "d": {
-          "type": "typed-literal",
-          "datatype": "http://www.w3.org/2001/XMLSchema#date",
-          "value": "1773-12-16"
-        }
-      }
-    },
-    {
-      "id": "293",
-      "question": [
-        { "language": "en", "string": "Who played Gus Fring in Breaking Bad?" }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Gus_Fring dbo:portrayer ?uri }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Giancarlo_Esposito"
-        }
-      }
-    },
-    {
-      "id": "294",
-      "question": [{ "language": "en", "string": "Who wrote Harry Potter?" }],
-      "query": {
-        "sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Harry_Potter> <http://dbpedia.org/property/author> ?uri }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/J._K._Rowling"
-        }
-      }
-    },
-    {
-      "id": "295",
-      "question": [
-        { "language": "en", "string": "Which actors play in Big Bang Theory?" }
-      ],
-      "query": {
-        "sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/The_Big_Bang_Theory> <http://dbpedia.org/ontology/starring> ?uri }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Kevin_Sussman"
-        }
-      }
-    },
-    {
-      "id": "296",
-      "question": [
-        {
-          "language": "en",
-          "string": "What is the largest country in the world?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Country ; dbo:areaTotal ?n } ORDER BY DESC(?n) OFFSET 0 LIMIT 1"
-      },
-      "answers": {
-        "uri": { "type": "uri", "value": "http://dbpedia.org/resource/Asia" }
-      }
-    },
-    {
-      "id": "457",
-      "question": [
-        { "language": "en", "string": "Who is the most powerful Jedi?" }
-      ],
-      "query": { "sparql": {} }
-    },
-    {
-      "id": "458",
-      "question": [
-        { "language": "en", "string": "How many goals did Pel\u00e9 score?" }
-      ],
-      "query": { "sparql": {} }
-    },
-    {
-      "id": "459",
-      "question": [
-        { "language": "en", "string": "Who is the president of Eritrea?" }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Eritrea dbo:leader ?uri ; dbo:leaderTitle \"President\"@en }"
-      }
-    },
-    {
-      "id": "460",
-      "question": [
-        { "language": "en", "string": "Which computer scientist won an oscar?" }
-      ],
-      "query": {
-        "sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/field> <http://dbpedia.org/resource/Computer_science> ; <http://dbpedia.org/ontology/award> <http://dbpedia.org/resource/Academy_Award> }"
-      }
-    },
-    {
-      "id": "297",
-      "question": [{ "language": "en", "string": "Who created Family Guy?" }],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Family_Guy dbo:creator ?uri }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Seth_MacFarlane"
-        }
-      }
-    },
-    {
-      "id": "462",
-      "question": [
-        { "language": "en", "string": "How many people live in Poland?" }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Poland dbo:populationTotal ?uri }"
-      }
-    },
-    {
-      "id": "298",
-      "question": [
-        {
-          "language": "en",
-          "string": "To which party does the mayor of Paris belong?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Paris dbo:mayor ?x . ?x dbo:party ?uri }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Socialist_Party_(France)"
-        }
-      }
-    },
-    {
-      "id": "464",
-      "question": [
-        { "language": "en", "string": "Who does the voice of Bart Simpson?" }
-      ],
-      "query": {
-        "sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Bart_Simpson> <http://dbpedia.org/property/voiceactor> ?uri }"
-      }
-    },
-    {
-      "id": "299",
-      "question": [
-        {
-          "language": "en",
-          "string": "Who composed the soundtrack for Cameron's Titanic?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Titanic_(1997_film)> dbo:musicComposer ?uri }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/James_Horner"
-        }
-      }
-    },
-    {
-      "id": "300",
-      "question": [
-        {
-          "language": "en",
-          "string": "When did Boris Becker end his active career?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?d WHERE { res:Boris_Becker dbo:activeYearsEndDate ?d }"
-      },
-      "answers": {
-        "d": {
-          "type": "typed-literal",
-          "datatype": "http://www.w3.org/2001/XMLSchema#date",
-          "value": "1999-06-25"
-        }
-      }
-    },
-    {
-      "id": "301",
-      "question": [
-        {
-          "language": "en",
-          "string": "Show me all basketball players that are higher than 2 meters."
-        }
-      ],
-      "query": {
-        "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/BasketballPlayer> ; <http://dbpedia.org/ontology/height> ?n FILTER ( ?n > 2.0 ) }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Alize_Johnson"
-        }
-      }
-    },
-    {
-      "id": "468",
-      "question": [
-        { "language": "en", "string": "What country is Sitecore from?" }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Sitecore dbo:foundationPlace ?uri }"
-      }
-    },
-    {
-      "id": "469",
-      "question": [
-        { "language": "en", "string": "Which country was Bill Gates born in?" }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> PREFIX dbr: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?country WHERE { { dbr:Bill_Gates dbo:birthPlace ?birthPlace . ?birthPlace dbo:country ?country } UNION { dbr:Bill_Gates dbo:birthPlace ?birthPlace . ?birthPlace dbo:isPartOf ?place . ?place dbo:country ?country } }"
-      }
-    },
-    {
-      "id": "302",
-      "question": [{ "language": "en", "string": "Who developed Slack?" }],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?uri dbo:product <http://dbpedia.org/resource/Slack_(software)> }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Slack_Technologies"
-        }
-      }
-    },
-    {
-      "id": "471",
-      "question": [
-        {
-          "language": "en",
-          "string": "In which city did Nikos Kazantzakis die?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { res:Nikos_Kazantzakis dbo:deathPlace ?uri . ?uri rdf:type dbo:Town }"
-      }
-    },
-    {
-      "id": "303",
-      "question": [
-        {
-          "language": "en",
-          "string": "How many grand-children did Jacques Cousteau have?"
-        }
-      ],
-      "query": {
-        "sparql": "SELECT COUNT(DISTINCT ?y AS ?y) WHERE { <http://dbpedia.org/resource/Jacques_Cousteau> <http://dbpedia.org/ontology/child> ?x . ?x <http://dbpedia.org/ontology/child> ?y . }"
-      },
-      "answers": {
-        "callret-0": {
-          "type": "typed-literal",
-          "datatype": "http://www.w3.org/2001/XMLSchema#integer",
-          "value": "4"
-        }
-      }
-    },
-    {
-      "id": "304",
-      "question": [
-        {
-          "language": "en",
-          "string": "Which films did Stanley Kubrick direct?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { ?uri dbo:director res:Stanley_Kubrick }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Day_of_the_Fight"
-        }
-      }
-    },
-    {
-      "id": "474",
-      "question": [
-        { "language": "en", "string": "Does Neymar play for Real Madrid?" }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> ASK WHERE { res:Neymar dbo:team <http://dbpedia.org/resource/Real_Madrid_C.F.> }"
-      }
-    },
-    {
-      "id": "305",
-      "question": [
-        {
-          "language": "en",
-          "string": "How many seats does the home stadium of FC Porto have?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbp: <http://dbpedia.org/property/> PREFIX dbr: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> PREFIX db: <http://dbpedia.org/> SELECT ?capacity WHERE { { dbr:FC_Porto dbo:ground ?ground . ?ground dbo:capacity ?capacity } UNION { dbr:FC_Porto dbo:ground ?ground . ?ground dbp:capacity ?capacity } }"
-      },
-      "answers": {
-        "capacity": {
-          "type": "typed-literal",
-          "datatype": "http://www.w3.org/2001/XMLSchema#integer",
-          "value": "50035"
-        }
-      }
-    },
-    {
-      "id": "306",
-      "question": [
-        {
-          "language": "en",
-          "string": "Show me all books in Asimov's Foundation series."
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { ?uri dbo:series res:Foundation_series }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/R._Daneel_Olivaw"
-        }
-      }
-    },
-    {
-      "id": "307",
-      "question": [
-        {
-          "language": "en",
-          "string": "Which movies star both Liz Taylor and Richard Burton?"
-        }
-      ],
-      "query": {
-        "sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/starring> <http://dbpedia.org/resource/Elizabeth_Taylor> ; <http://dbpedia.org/ontology/starring> <http://dbpedia.org/resource/Richard_Burton> }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Divorce_His,_Divorce_Hers"
-        }
-      }
-    },
-    {
-      "id": "308",
-      "question": [
-        {
-          "language": "en",
-          "string": "In which city are the headquarters of the United Nations?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { res:Headquarters_of_the_United_Nations dbo:location ?uri . ?uri rdf:type dbo:City }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/New_York_City"
-        }
-      }
-    },
-    {
-      "id": "309",
-      "question": [
-        {
-          "language": "en",
-          "string": "In which city was the president of Montenegro born?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/title> dbr:President_of_Montenegro ; dbo:birthPlace ?uri . ?uri dbo:type dbr:Capital_city }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Belgrade"
-        }
-      }
-    },
-    {
-      "id": "310",
-      "question": [
-        { "language": "en", "string": "Which writers studied in Istanbul?" }
-      ],
-      "query": {
-        "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Writer> { ?uri <http://dbpedia.org/ontology/almaMater> ?x } UNION { ?uri <http://dbpedia.org/ontology/education> ?x } { ?x <http://dbpedia.org/ontology/city> <http://dbpedia.org/resource/Istanbul> } UNION { ?x <http://dbpedia.org/property/city> <http://dbpedia.org/resource/Istanbul> } }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Vedat_T\u00fcrkali"
-        }
-      }
-    },
-    {
-      "id": "311",
-      "question": [
-        { "language": "en", "string": "Who is the mayor of Paris?" }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Paris dbo:mayor ?uri }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Anne_Hidalgo"
-        }
-      }
-    },
-    {
-      "id": "482",
-      "question": [
-        {
-          "language": "en",
-          "string": "What is the full name of Prince Charles?"
-        }
-      ],
-      "query": {
-        "sparql": "SELECT DISTINCT ?s WHERE { <http://dbpedia.org/resource/Charles,_Prince_of_Wales> <http://dbpedia.org/ontology/alias> ?s . } "
-      }
-    },
-    {
-      "id": "312",
-      "question": [
-        { "language": "en", "string": "What is the longest river in China?" }
-      ],
-      "query": {
-        "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/River> ; <http://dbpedia.org/ontology/country> <http://dbpedia.org/resource/China> ; <http://dbpedia.org/property/length> ?l } ORDER BY DESC(?l) OFFSET 0 LIMIT 1"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Jin_River_(Sichuan)"
-        }
-      }
-    },
-    {
-      "id": "313",
-      "question": [{ "language": "en", "string": "Who discovered Ceres?" }],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Ceres_(dwarf_planet)> dbo:discoverer ?uri }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Giuseppe_Piazzi"
-        }
-      }
-    },
-    {
-      "id": "485",
-      "question": [
-        { "language": "en", "string": "When did princess Diana die?" }
-      ],
-      "query": {
-        "sparql": "SELECT DISTINCT xsd:date(?d) WHERE { <http://dbpedia.org/resource/Diana,_Princess_of_Wales> <http://dbpedia.org/ontology/deathDate> ?d }"
-      }
-    },
-    {
-      "id": "486",
-      "question": [{ "language": "en", "string": "What do ants eat?" }],
-      "query": { "sparql": {} }
-    },
-    {
-      "id": "314",
-      "question": [
-        {
-          "language": "en",
-          "string": "Who is the host of the BBC Wildlife Specials?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:BBC_Wildlife_Specials dbo:presenter ?uri }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/David_Attenborough"
-        }
-      }
-    },
-    {
-      "id": "315",
-      "question": [
-        { "language": "en", "string": "How many moons does Mars have?" }
-      ],
-      "query": {
-        "sparql": "SELECT DISTINCT ?n WHERE { <http://dbpedia.org/resource/Mars> <http://dbpedia.org/property/satellites> ?n }"
-      },
-      "answers": {
-        "n": {
-          "type": "typed-literal",
-          "datatype": "http://www.w3.org/2001/XMLSchema#integer",
-          "value": "2"
-        }
-      }
-    },
-    {
-      "id": "316",
-      "question": [
-        { "language": "en", "string": "What was the first Queen album?" }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Album ; dbo:artist <http://dbpedia.org/resource/Queen_(band)> ; dbo:releaseDate ?d } ORDER BY ASC(?d) OFFSET 0 LIMIT 1"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Seven_Seas_of_Rhye"
-        }
-      }
-    },
-    {
-      "id": "490",
-      "question": [
-        { "language": "en", "string": "Did Elvis Presley have children?" }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> ASK WHERE { res:Elvis_Presley dbo:child ?uri }"
-      }
-    },
-    {
-      "id": "317",
-      "question": [
-        {
-          "language": "en",
-          "string": "Give me a list of all Canadians that reside in the U.S."
-        }
-      ],
-      "query": {
-        "sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/birthPlace> <http://dbpedia.org/resource/Canada> . ?uri <http://dbpedia.org/ontology/residence> <http://dbpedia.org/resource/United_States> . } "
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Glenn_Michibata"
-        }
-      }
-    },
-    {
-      "id": "318",
-      "question": [
-        { "language": "en", "string": "Where is Syngman Rhee buried?" }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Syngman_Rhee dbo:restingPlace ?uri }"
-      },
-      "answers": {
-        "uri": { "type": "uri", "value": "http://dbpedia.org/resource/Seoul" }
-      }
-    },
-    {
-      "id": "319",
-      "question": [
-        {
-          "language": "en",
-          "string": "In which countries do people speak Japanese?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Country ; dbo:language res:Japanese_language }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Taiwan_under_Japanese_rule"
-        }
-      }
-    },
-    {
-      "id": "494",
-      "question": [
-        { "language": "en", "string": "Who is the king of the Netherlands?" }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { res:Netherlands dbo:leader ?uri . ?uri rdf:type dbo:Royalty }"
-      }
-    },
-    {
-      "id": "320",
-      "question": [
-        { "language": "en", "string": "When did the Dodo become extinct?" }
-      ],
-      "query": {
-        "sparql": "SELECT DISTINCT ?s WHERE { <http://dbpedia.org/resource/Dodo> <http://dbpedia.org/property/extinct> ?s . } "
-      },
-      "answers": {
-        "s": {
-          "type": "typed-literal",
-          "datatype": "http://www.w3.org/2001/XMLSchema#integer",
-          "value": "1662"
-        }
-      }
-    },
-    {
-      "id": "321",
-      "question": [{ "language": "en", "string": "Show me all Czech movies." }],
-      "query": {
-        "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Film> ; <http://dbpedia.org/ontology/country> <http://dbpedia.org/resource/Czech_Republic> }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Boredom_in_Brno"
-        }
-      }
-    },
-    {
-      "id": "322",
-      "question": [
-        { "language": "en", "string": "Which rivers flow into the North Sea?" }
-      ],
-      "query": {
-        "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/River> ; <http://dbpedia.org/ontology/riverMouth> <http://dbpedia.org/resource/North_Sea> }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Water_of_Cruden"
-        }
-      }
-    },
-    {
-      "id": "323",
-      "question": [
-        { "language": "en", "string": "When did Operation Overlord commence?" }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?d WHERE { res:Operation_Overlord dbo:date ?d }"
-      },
-      "answers": {
-        "d": {
-          "type": "typed-literal",
-          "datatype": "http://www.w3.org/2001/XMLSchema#date",
-          "value": "1944-08-30"
-        }
-      }
-    },
-    {
-      "id": "324",
-      "question": [
-        { "language": "en", "string": "Where do the Red Sox play?" }
-      ],
-      "query": {
-        "sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Boston_Red_Sox> <http://dbpedia.org/property/ballpark> ?uri }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Fenway_Park"
-        }
-      }
-    },
-    {
-      "id": "325",
-      "question": [
-        { "language": "en", "string": "In which time zone is Rome?" }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Rome dbo:timeZone ?uri }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Central_European_Time"
-        }
-      }
-    },
-    {
-      "id": "326",
-      "question": [
-        {
-          "language": "en",
-          "string": "Give me a list of all critically endangered birds."
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dct: <http://purl.org/dc/terms/> PREFIX dbc: <http://dbpedia.org/resource/Category:> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri ?p WHERE { ?uri rdf:type dbo:Bird { ?uri dbo:conservationStatus \"CR\" } UNION { ?uri dct:subject dbc:Critically_endangered_animals } }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Mara\u00f1\u00f3n_spinetail"
-        }
-      }
-    },
-    {
-      "id": "327",
-      "question": [
-        { "language": "en", "string": "How much did the Lego Movie cost?" }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?n WHERE { res:The_Lego_Movie dbo:budget ?n }"
-      },
-      "answers": {
-        "n": {
-          "type": "typed-literal",
-          "datatype": "http://dbpedia.org/datatype/usDollar",
-          "value": "60.0"
-        }
-      }
-    },
-    {
-      "id": "328",
-      "question": [
-        {
-          "language": "en",
-          "string": "What was the original occupation of the inventor of Lego?"
-        }
-      ],
-      "query": {
-        "sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Lego> <http://dbpedia.org/property/inventor> ?x . ?x <http://dbpedia.org/property/occupation> ?uri . } "
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Carpenter"
-        }
-      }
-    },
-    {
-      "id": "329",
-      "question": [
-        {
-          "language": "en",
-          "string": "Which countries have more than ten volcanoes?"
-        }
-      ],
-      "query": {
-        "sparql": "SELECT DISTINCT ?uri WHERE { ?x a <http://dbpedia.org/ontology/Volcano> ; <http://dbpedia.org/ontology/locatedInArea> ?uri . ?uri a <http://dbpedia.org/ontology/Country> } GROUP BY ?uri HAVING ( COUNT(?x) > 10 )"
-      },
-      "answers": {
-        "uri": { "type": "uri", "value": "http://dbpedia.org/resource/Japan" }
-      }
-    },
-    {
-      "id": "505",
-      "question": [{ "language": "en", "string": "Show me all U.S. states." }],
-      "query": {
-        "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/class/yago/StatesOfTheUnitedStates> . } "
-      }
-    },
-    {
-      "id": "330",
-      "question": [
-        { "language": "en", "string": "Who wrote the Game of Thrones theme?" }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Game_of_Thrones dbo:composer ?uri }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Ramin_Djawadi"
-        }
-      }
-    },
-    {
-      "id": "331",
-      "question": [
-        {
-          "language": "en",
-          "string": "How many calories does a baguette have?"
-        }
-      ],
-      "query": {
-        "sparql": "SELECT DISTINCT ?n WHERE { <http://dbpedia.org/resource/Baguette> <http://dbpedia.org/property/calories> ?n }"
-      },
-      "answers": {
-        "n": {
-          "type": "typed-literal",
-          "datatype": "http://www.w3.org/2001/XMLSchema#integer",
-          "value": "263"
-        }
-      }
-    },
-    {
-      "id": "508",
-      "question": [{ "language": "en", "string": "Can you cry underwater?" }],
-      "query": { "sparql": {} }
-    },
-    {
-      "id": "332",
-      "question": [
-        { "language": "en", "string": "Which companies produce hovercrafts?" }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Company ; dbo:product res:Hovercraft }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/HJ_Shipbuilding_&_Construction"
-        }
-      }
-    },
-    {
-      "id": "333",
-      "question": [
-        { "language": "en", "string": "How many emperors did China have?" }
-      ],
-      "query": {
-        "sparql": "SELECT COUNT(DISTINCT ?uri AS ?uri) WHERE { ?uri <http://dbpedia.org/property/title> <http://dbpedia.org/resource/Emperor_of_China> . }"
-      },
-      "answers": {
-        "callret-0": {
-          "type": "typed-literal",
-          "datatype": "http://www.w3.org/2001/XMLSchema#integer",
-          "value": "242"
-        }
-      }
-    },
-    {
-      "id": "334",
-      "question": [
-        {
-          "language": "en",
-          "string": "Show me hiking trails in the Grand Canyon where there's no danger of flash floods."
-        }
-      ],
-      "query": {
-        "sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/trailheads> <http://dbpedia.org/resource/Grand_Canyon> FILTER NOT EXISTS { ?uri <http://dbpedia.org/property/hazards> <http://dbpedia.org/resource/Flash_flood> } }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Bright_Angel_Trail"
-        }
-      }
-    },
-    {
-      "id": "335",
-      "question": [
-        {
-          "language": "en",
-          "string": "In which ancient empire could you pay with cocoa beans?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { ?uri dbo:currency res:Cocoa_bean }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Aztec_Empire"
-        }
-      }
-    },
-    {
-      "id": "336",
-      "question": [
-        { "language": "en", "string": "How did Michael Jackson die?" }
-      ],
-      "query": {
-        "sparql": "SELECT DISTINCT ?s WHERE { <http://dbpedia.org/resource/Michael_Jackson> <http://dbpedia.org/property/deathCause> ?s }"
-      },
-      "answers": {
-        "s": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Death_of_Michael_Jackson"
-        }
-      }
-    },
-    {
-      "id": "337",
-      "question": [
-        {
-          "language": "en",
-          "string": "Which space probes were sent into orbit around the sun?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbc: <http://dbpedia.org/resource/Category:> PREFIX dct: <http://purl.org/dc/terms/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?s WHERE { ?s dct:subject dbc:Missions_to_the_Sun ; rdf:type ?type FILTER ( ?type IN (dbo:Satellite, dbo:ArtificialSatellite) ) }"
-      },
-      "answers": {
-        "s": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Geomagnetic_Field_Monitoring_Program_of_SUPARCO"
-        }
-      }
-    },
-    {
-      "id": "338",
-      "question": [
-        { "language": "en", "string": "When was Coca Cola invented?" }
-      ],
-      "query": {
-        "sparql": "SELECT DISTINCT ?n WHERE { <http://dbpedia.org/resource/Coca-Cola> <http://dbpedia.org/property/introduced> ?n . } "
-      },
-      "answers": {
-        "n": {
-          "type": "typed-literal",
-          "datatype": "http://www.w3.org/2001/XMLSchema#date",
-          "value": "1886-05-08"
-        }
-      }
-    },
-    {
-      "id": "339",
-      "question": [
-        { "language": "en", "string": "What is the biggest stadium in Spain?" }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Stadium ; dbo:location res:Spain ; dbo:seatingCapacity ?n } ORDER BY DESC(?n) OFFSET 0 LIMIT 1"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Camp_Nou"
-        }
-      }
-    },
-    {
-      "id": "340",
-      "question": [
-        { "language": "en", "string": "On which day is Columbus Day?" }
-      ],
-      "query": {
-        "sparql": "SELECT DISTINCT ?d WHERE { <http://dbpedia.org/resource/Columbus_Day> <http://dbpedia.org/property/date> ?d . } "
-      },
-      "answers": {
-        "d": {
-          "type": "typed-literal",
-          "datatype": "http://www.w3.org/2001/XMLSchema#gMonthDay",
-          "value": "--10-12"
-        }
-      }
-    },
-    {
-      "id": "341",
-      "question": [
-        {
-          "language": "en",
-          "string": "How short is the shortest active NBA player?"
-        }
-      ],
-      "query": {
-        "sparql": "SELECT DISTINCT ?n WHERE { ?x a <http://dbpedia.org/ontology/BasketballPlayer> ; <http://dbpedia.org/ontology/league> <http://dbpedia.org/resource/National_Basketball_Association> ; <http://dbpedia.org/ontology/height> ?n FILTER NOT EXISTS { ?x <http://dbpedia.org/ontology/activeYearsEndYear> ?d } } ORDER BY ASC(?n) OFFSET 0 LIMIT 1"
-      },
-      "answers": {
-        "n": {
-          "type": "typed-literal",
-          "datatype": "http://www.w3.org/2001/XMLSchema#double",
-          "value": "1.7526"
-        }
-      }
-    },
-    {
-      "id": "519",
-      "question": [
-        { "language": "en", "string": "Whom did Lance Bass marry?" }
-      ],
-      "query": {
-        "sparql": "SELECT DISTINCT ?uri WHERE { {<http://dbpedia.org/resource/Lance_Bass> dbo:spouse ?uri} UNION {?uri dbo:spouse <http://dbpedia.org/resource/Lance_Bass>} }"
-      }
-    },
-    {
-      "id": "342",
-      "question": [
-        {
-          "language": "en",
-          "string": "What form of government does Russia have?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Russia dbo:governmentType ?uri }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Federalism"
-        }
-      }
-    },
-    {
-      "id": "343",
-      "question": [
-        {
-          "language": "en",
-          "string": "What movies does Jesse Eisenberg play in?"
-        }
-      ],
-      "query": {
-        "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Film> ; <http://dbpedia.org/ontology/starring> <http://dbpedia.org/resource/Jesse_Eisenberg> }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/American_Ultra"
-        }
-      }
-    },
-    {
-      "id": "522",
-      "question": [
-        { "language": "en", "string": "What color expresses loyalty?" }
-      ],
-      "query": {
-        "sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/connotation> <http://dbpedia.org/resource/Loyalty> . }"
-      }
-    },
-    {
-      "id": "344",
-      "question": [
-        { "language": "en", "string": "Show me all museums in London." }
-      ],
-      "query": {
-        "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Museum> ; <http://dbpedia.org/ontology/location> <http://dbpedia.org/resource/London> }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Vagina_Museum"
-        }
-      }
-    },
-    {
-      "id": "524",
-      "question": [
-        { "language": "en", "string": "Give me all South American countries." }
-      ],
-      "query": {
-        "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/class/yago/SouthAmericanCountries> . }"
-      }
-    },
-    {
-      "id": "345",
-      "question": [
-        {
-          "language": "en",
-          "string": "Who is the coach of Ankara's ice hockey team?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { ?x dbo:city res:Ankara ; dbo:league res:Turkish_Ice_Hockey_First_League ; dbo:coach ?uri }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/\u0130brahim_O\u011fuz"
-        }
-      }
-    },
-    {
-      "id": "346",
-      "question": [
-        { "language": "en", "string": "Who is the son of Sonny and Cher?" }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { ?uri dbo:parent res:Cher ; dbo:parent res:Sonny_Bono }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Chaz_Bono"
-        }
-      }
-    },
-    {
-      "id": "527",
-      "question": [
-        {
-          "language": "en",
-          "string": "What are the five boroughs of New York?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?uri dbo:governmentType <http://dbpedia.org/resource/Borough_(New_York_City)> }"
-      }
-    },
-    {
-      "id": "347",
-      "question": [
-        { "language": "en", "string": "Show me Hemingway's autobiography." }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { ?uri dbo:author res:Ernest_Hemingway ; dbo:literaryGenre res:Autobiography }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/A_Moveable_Feast"
-        }
-      }
-    },
-    {
-      "id": "348",
-      "question": [
-        { "language": "en", "string": "What kind of music did Lou Reed play?" }
-      ],
-      "query": {
-        "sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Lou_Reed> <http://dbpedia.org/ontology/genre> ?uri }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Art_rock"
-        }
-      }
-    },
-    {
-      "id": "530",
-      "question": [
-        {
-          "language": "en",
-          "string": "In which city does Sylvester Stallone live?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:City . res:Sylvester_Stallone dbo:residence ?uri }"
-      }
-    },
-    {
-      "id": "531",
-      "question": [
-        { "language": "en", "string": "Who was Vincent van Gogh inspired by?" }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { ?uri dbo:influenced res:Vincent_van_Gogh }"
-      }
-    },
-    {
-      "id": "532",
-      "question": [
-        {
-          "language": "en",
-          "string": "What are the names of the Teenage Mutant Ninja Turtles?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX foaf:<http://xmlns.com/foaf/0.1/> SELECT DISTINCT ?s WHERE { <http://dbpedia.org/resource/Teenage_Mutant_Ninja_Turtles> <http://dbpedia.org/property/members> ?x . ?x foaf:givenName ?s }"
-      }
-    },
-    {
-      "id": "533",
-      "question": [
-        { "language": "en", "string": "What are the zodiac signs?" }
-      ],
-      "query": {
-        "sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/element> <http://dbpedia.org/resource/Astrological_sign> . }"
-      }
-    },
-    {
-      "id": "349",
-      "question": [
-        {
-          "language": "en",
-          "string": "What languages do they speak in Pakistan?"
-        }
-      ],
-      "query": {
-        "sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Pakistan> <http://dbpedia.org/ontology/language> ?uri . }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Memoni_language"
-        }
-      }
-    },
-    {
-      "id": "535",
-      "question": [
-        { "language": "en", "string": "Who became president after JFK died?" }
-      ],
-      "query": {
-        "sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/John_F._Kennedy> <http://dbpedia.org/property/presidentEnd> ?x . ?uri <http://dbpedia.org/property/presidentStart> ?x; a <http://dbpedia.org/ontology/Person>. }"
-      }
-    },
-    {
-      "id": "536",
-      "question": [
-        { "language": "en", "string": "In what city is the Heineken brewery?" }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Heineken dbo:manufacturer ?x . ?x dbo:locationCity ?uri }"
-      }
-    },
-    {
-      "id": "537",
-      "question": [
-        { "language": "en", "string": "What is Elon Musk famous for?" }
-      ],
-      "query": {
-        "sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Elon_Musk> <http://dbpedia.org/ontology/knownFor> ?uri }"
-      }
-    },
-    {
-      "id": "350",
-      "question": [
-        { "language": "en", "string": "What is Batman's real name?" }
-      ],
-      "query": {
-        "sparql": "SELECT DISTINCT ?label WHERE { <http://dbpedia.org/resource/Batman> <http://xmlns.com/foaf/0.1/name> ?label FILTER ( str(?label) != \"Batman\" ) }"
-      },
-      "answers": {
-        "label": { "type": "literal", "xml:lang": "en", "value": "Bruce Wayne" }
-      }
-    },
-    {
-      "id": "351",
-      "question": [
-        {
-          "language": "en",
-          "string": "When is the movie Worst Case Scenario going to be in cinemas in the Netherlands?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> PREFIX dbr: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX foaf: <http://xmlns.com/foaf/0.1/> SELECT DISTINCT ?rel WHERE { <http://dbpedia.org/resource/Worst_Case_Scenario_(film)> ?p ?o ; dbo:releaseDate ?rel FILTER contains(lcase(str(?o)), \"netherlands\") }"
-      },
-      "answers": {
-        "rel": {
-          "type": "typed-literal",
-          "datatype": "http://www.w3.org/2001/XMLSchema#date",
-          "value": "2008-01-30"
-        }
-      }
-    },
-    {
-      "id": "540",
-      "question": [
-        {
-          "language": "en",
-          "string": "What were the main discoveries of the Mars rover Curiosity?"
-        }
-      ],
-      "query": { "sparql": {} }
-    },
-    {
-      "id": "541",
-      "question": [
-        {
-          "language": "en",
-          "string": "Butch Otter is the governor of which U.S. state?"
-        }
-      ],
-      "query": {
-        "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/class/yago/WikicatStatesOfTheUnitedStates> ; <http://dbpedia.org/property/governor> <http://dbpedia.org/resource/Butch_Otter> }"
-      }
-    },
-    {
-      "id": "542",
-      "question": [
-        { "language": "en", "string": "What is the melting point of copper?" }
-      ],
-      "query": { "sparql": {} }
-    },
-    {
-      "id": "543",
-      "question": [
-        { "language": "en", "string": "Give me all sister cities of Brno." }
-      ],
-      "query": { "sparql": {} }
-    },
-    {
-      "id": "352",
-      "question": [{ "language": "en", "string": "How tall is Amazon Eve?" }],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?height WHERE { res:Amazon_Eve dbo:height ?height }"
-      },
-      "answers": {
-        "height": {
-          "type": "typed-literal",
-          "datatype": "http://www.w3.org/2001/XMLSchema#double",
-          "value": "1.8288"
-        }
-      }
-    },
-    {
-      "id": "545",
-      "question": [
-        {
-          "language": "en",
-          "string": "What is the average temperature on Hawaii?"
-        }
-      ],
-      "query": { "sparql": {} }
-    },
-    {
-      "id": "353",
-      "question": [
-        {
-          "language": "en",
-          "string": "Which weapons did Heckler & Koch develop?"
-        }
-      ],
-      "query": {
-        "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Weapon> ; <http://dbpedia.org/property/designer> <http://dbpedia.org/resource/Heckler_&_Koch> }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Ak_4_rifle"
-        }
-      }
-    },
-    {
-      "id": "547",
-      "question": [{ "language": "en", "string": "Who invented the zipper?" }],
-      "query": { "sparql": {} }
-    },
-    {
-      "id": "354",
-      "question": [
-        { "language": "en", "string": "Where is Fort Knox located?" }
-      ],
-      "query": {
-        "sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Fort_Knox> <http://dbpedia.org/ontology/location> ?uri. ?uri a <http://dbpedia.org/ontology/Place>. }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Kentucky"
-        }
-      }
-    },
-    {
-      "id": "355",
-      "question": [{ "language": "en", "string": "Who created Batman?" }],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Batman dbo:creator ?uri }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Bill_Finger"
-        }
-      }
-    },
-    {
-      "id": "356",
-      "question": [
-        {
-          "language": "en",
-          "string": "Which politicians were married to a German?"
-        }
-      ],
-      "query": {
-        "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Politician> ; <http://dbpedia.org/ontology/spouse> ?spouse { ?spouse <http://dbpedia.org/ontology/birthPlace> <http://dbpedia.org/resource/Germany> } UNION { ?spouse <http://dbpedia.org/ontology/birthPlace> ?p . ?p <http://dbpedia.org/ontology/country> <http://dbpedia.org/resource/Germany> } }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Marcus_Pretzell"
-        }
-      }
-    },
-    {
-      "id": "357",
-      "question": [
-        { "language": "en", "string": "When was Jack Wolfskin founded?" }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT xsd:date(?year) WHERE { res:Jack_Wolfskin dbo:foundingYear ?year }"
-      },
-      "answers": {
-        "callret-0": {
-          "type": "typed-literal",
-          "datatype": "http://www.w3.org/2001/XMLSchema#date",
-          "value": "1981-01-01"
-        }
-      }
-    },
-    {
-      "id": "552",
-      "question": [
-        {
-          "language": "en",
-          "string": "Which budget did the first movie of Zdenek Sverak have?"
-        }
-      ],
-      "query": { "sparql": {} }
-    },
-    {
-      "id": "553",
-      "question": [
-        {
-          "language": "en",
-          "string": "How many big fires struck Paris during the Middle Ages?"
-        }
-      ],
-      "query": { "sparql": {} }
-    },
-    {
-      "id": "554",
-      "question": [
-        { "language": "en", "string": "Is Pamela Anderson a vegan?" }
-      ],
-      "query": {
-        "sparql": "PREFIX dbr: <http://dbpedia.org/resource/> ASK WHERE { dbr:Pamela_Anderson a <http://dbpedia.org/class/yago/WikicatAmericanVegans> }"
-      }
-    },
-    {
-      "id": "555",
-      "question": [
-        { "language": "en", "string": "How often was Michael Jordan divorced?" }
-      ],
-      "query": { "sparql": {} }
-    },
-    {
-      "id": "556",
-      "question": [
-        { "language": "en", "string": "What is the most beautiful painting?" }
-      ],
-      "query": { "sparql": {} }
-    },
-    {
-      "id": "557",
-      "question": [
-        {
-          "language": "en",
-          "string": "Give me all animal species that live in the Amazon rainforest."
-        }
-      ],
-      "query": { "sparql": {} }
-    },
-    {
-      "id": "358",
-      "question": [
-        {
-          "language": "en",
-          "string": "In which studio did the Beatles record their first album?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbp: <http://dbpedia.org/property/> PREFIX dbr: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> PREFIX db: <http://dbpedia.org/> 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"
-      },
-      "answers": {
-        "studio": {
-          "type": "literal",
-          "xml:lang": "en",
-          "value": "EMI, London"
-        }
-      }
-    },
-    {
-      "id": "359",
-      "question": [
-        {
-          "language": "en",
-          "string": "How many gold medals did Michael Phelps win at the 2008 Olympics?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> SELECT Count(?sub) as ?c WHERE { ?sub dbo:goldMedalist dbr:Michael_Phelps . filter (contains (str(?sub), \"2008\") && contains (str(?sub), \"Olympics\")) }"
-      },
-      "answers": {
-        "c": {
-          "type": "typed-literal",
-          "datatype": "http://www.w3.org/2001/XMLSchema#integer",
-          "value": "8"
-        }
-      }
-    },
-    {
-      "id": "360",
-      "question": [
-        { "language": "en", "string": "How deep is Lake Chiemsee?" }
-      ],
-      "query": {
-        "sparql": "SELECT DISTINCT ?n WHERE { <http://dbpedia.org/resource/Chiemsee> <http://dbpedia.org/ontology/maximumDepth> ?n }"
-      },
-      "answers": {
-        "n": {
-          "type": "typed-literal",
-          "datatype": "http://www.w3.org/2001/XMLSchema#double",
-          "value": "72.7"
-        }
-      }
-    },
-    {
-      "id": "361",
-      "question": [
-        {
-          "language": "en",
-          "string": "Give me the grandchildren of Elvis Presley."
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Elvis_Presley dbo:child ?child . ?child dbo:child ?uri }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Riley_Keough"
-        }
-      }
-    },
-    {
-      "id": "362",
-      "question": [{ "language": "en", "string": "What does ICRO stand for?" }],
-      "query": {
-        "sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/abbreviation> \"ICRO\" }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Irish_Cave_Rescue_Organisation"
-        }
-      }
-    },
-    {
-      "id": "363",
-      "question": [{ "language": "en", "string": "When was Olof Palme shot?" }],
-      "query": {
-        "sparql": "SELECT DISTINCT ?date WHERE { <http://dbpedia.org/resource/Olof_Palme> <http://dbpedia.org/ontology/deathDate> ?date }"
-      },
-      "answers": {
-        "date": {
-          "type": "typed-literal",
-          "datatype": "http://www.w3.org/2001/XMLSchema#date",
-          "value": "1986-02-28"
-        }
-      }
-    },
-    {
-      "id": "364",
-      "question": [
-        {
-          "language": "en",
-          "string": "List all the musicals with music by Leonard Bernstein."
-        }
-      ],
-      "query": {
-        "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Musical> ; <http://dbpedia.org/ontology/musicBy> <http://dbpedia.org/resource/Leonard_Bernstein> }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Side_by_Side_by_Sondheim"
-        }
-      }
-    },
-    {
-      "id": "565",
-      "question": [
-        {
-          "language": "en",
-          "string": "Which airports does Yeti Airlines serve?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Yeti_Airlines dbo:targetAirport ?uri }"
-      }
-    },
-    {
-      "id": "365",
-      "question": [
-        {
-          "language": "en",
-          "string": "Which movies starring Mickey Rourke were directed by Guy Ritchie?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Film ; dbo:starring res:Mickey_Rourke ; dbo:director res:Guy_Ritchie }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/The_Hire"
-        }
-      }
-    },
-    {
-      "id": "567",
-      "question": [
-        { "language": "en", "string": "Is Darth Vader Luke\u2019s father?" }
-      ],
-      "query": {
-        "sparql": "ASK WHERE { <http://dbpedia.org/resource/Darth_Vader> <http://dbpedia.org/ontology/child> <http://dbpedia.org/resource/Luke_Skywalker> }"
-      }
-    },
-    {
-      "id": "568",
-      "question": [
-        {
-          "language": "en",
-          "string": "Which subsidiary of TUI Travel serves both Glasgow and Dublin?"
-        }
-      ],
-      "query": {
-        "sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/TUI_Travel> <http://dbpedia.org/ontology/subsidiary> ?uri . ?uri <http://dbpedia.org/ontology/targetAirport> <http://dbpedia.org/resource/Glasgow_International_Airport> ; <http://dbpedia.org/ontology/targetAirport> <http://dbpedia.org/resource/Dublin_Airport> }"
-      }
-    },
-    {
-      "id": "569",
-      "question": [
-        {
-          "language": "en",
-          "string": "In which city were the parents of Che Guevara born?"
-        }
-      ],
-      "query": { "sparql": {} }
-    },
-    {
-      "id": "366",
-      "question": [
-        { "language": "en", "string": "How high is the lighthouse in Colombo?" }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?num WHERE { res:Colombo_Lighthouse dbo:height ?num }"
-      },
-      "answers": {
-        "num": {
-          "type": "typed-literal",
-          "datatype": "http://www.w3.org/2001/XMLSchema#double",
-          "value": "15.0"
-        }
-      }
-    },
-    {
-      "id": "571",
-      "question": [
-        {
-          "language": "en",
-          "string": "Are there any castles in the United States?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dct: <http://purl.org/dc/terms/> PREFIX dbc: <http://dbpedia.org/resource/Category:> ASK WHERE { ?uri dct:subject dbc:Castles_in_the_United_States }"
-      }
-    },
-    {
-      "id": "572",
-      "question": [
-        { "language": "en", "string": "Can you find frescoes in Crete?" }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbp: <http://dbpedia.org/property/> PREFIX dct: <http://purl.org/dc/terms/> PREFIX dbc: <http://dbpedia.org/resource/Category:> PREFIX dbr: <http://dbpedia.org/resource/> ASK WHERE { ?uri dct:subject dbc:Minoan_frescos ; dbp:museum ?museum . ?museum dbo:location dbr:Crete }"
-      }
-    },
-    {
-      "id": "573",
-      "question": [
-        {
-          "language": "en",
-          "string": "Do Urdu and Persian have a common root?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> ASK WHERE { dbr:Urdu dbo:languageFamily ?uri . dbr:Persian_language dbo:languageFamily ?uri }"
-      }
-    },
-    {
-      "id": "574",
-      "question": [
-        {
-          "language": "en",
-          "string": "Does the Ford Motor Company have a manufacturing plant in Malaysia?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> ASK WHERE { ?uri dbo:assembly dbr:Malaysia ; dbo:manufacturer dbr:Ford_Motor_Company }"
-      }
-    },
-    {
-      "id": "367",
-      "question": [
-        {
-          "language": "en",
-          "string": "How many years was the Ford Model T manufactured?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX xsd: <http://www.w3.org/2001/XMLSchema#> PREFIX res: <http://dbpedia.org/resource/> SELECT ?years WHERE { res:Ford_Model_T dbo:productionEndYear ?end ; dbo:productionStartYear ?start. BIND ( ( year(xsd:date(?end)) - year(xsd:date(?start)) ) AS ?years) }"
-      },
-      "answers": {
-        "years": {
-          "type": "typed-literal",
-          "datatype": "http://www.w3.org/2001/XMLSchema#integer",
-          "value": "19"
-        }
-      }
-    },
-    {
-      "id": "576",
-      "question": [
-        {
-          "language": "en",
-          "string": "Give me all American presidents in the last 20 years."
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dct: <http://purl.org/dc/terms/> PREFIX dbc: <http://dbpedia.org/resource/Category:> PREFIX dbp: <http://dbpedia.org/property/> 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) }"
-      }
-    },
-    {
-      "id": "368",
-      "question": [
-        {
-          "language": "en",
-          "string": "Give me all gangsters from the prohibition era."
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dct: <http://purl.org/dc/terms/> PREFIX dbc: <http://dbpedia.org/resource/Category:> PREFIX dbr: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { ?uri dbo:occupation dbr:Gangster ; dct:subject dbc:Prohibition-era_gangsters }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Dean_O'Banion"
-        }
-      }
-    },
-    {
-      "id": "369",
-      "question": [
-        {
-          "language": "en",
-          "string": "Give me all Seven Wonders of the Ancient World."
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dct: <http://purl.org/dc/terms/> PREFIX dbc: <http://dbpedia.org/resource/Category:> SELECT ?uri WHERE { ?uri dct:subject dbc:Seven_Wonders_of_the_Ancient_World }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Temple_of_Artemis"
-        }
-      }
-    },
-    {
-      "id": "370",
-      "question": [
-        { "language": "en", "string": "Give me all chemical elements." }
-      ],
-      "query": {
-        "sparql": "PREFIX dct: <http://purl.org/dc/terms/> PREFIX dbc: <http://dbpedia.org/resource/Category:> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX owl: <http://www.w3.org/2002/07/owl#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type owl:Thing ; dct:subject dbc:Chemical_elements }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Aluminium"
-        }
-      }
-    },
-    {
-      "id": "371",
-      "question": [
-        {
-          "language": "en",
-          "string": "How many rivers and lakes are in South Carolina?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dct: <http://purl.org/dc/terms/> PREFIX dbc: <http://dbpedia.org/resource/Category:> PREFIX dbr: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT (COUNT(DISTINCT ?uri) AS ?count) WHERE { { ?uri dbo:location dbr:South_Carolina ; rdf:type dbo:Lake } UNION { ?uri dct:subject dbc:Rivers_and_streams_of_South_Carolina } }"
-      },
-      "answers": {
-        "count": {
-          "type": "typed-literal",
-          "datatype": "http://www.w3.org/2001/XMLSchema#integer",
-          "value": "14"
-        }
-      }
-    },
-    {
-      "id": "372",
-      "question": [
-        { "language": "en", "string": "How many states are in Mexico?" }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT (COUNT(?uri) AS ?count) WHERE { ?uri dbo:type dbr:States_of_Mexico }"
-      },
-      "answers": {
-        "count": {
-          "type": "typed-literal",
-          "datatype": "http://www.w3.org/2001/XMLSchema#integer",
-          "value": "0"
-        }
-      }
-    },
-    {
-      "id": "373",
-      "question": [
-        {
-          "language": "en",
-          "string": "How many theories did Albert Einstein come up with?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT (COUNT(?uri) AS ?count) WHERE { dbr:Albert_Einstein dbo:knownFor ?uri }"
-      },
-      "answers": {
-        "count": {
-          "type": "typed-literal",
-          "datatype": "http://www.w3.org/2001/XMLSchema#integer",
-          "value": "15"
-        }
-      }
-    },
-    {
-      "id": "583",
-      "question": [{ "language": "en", "string": "Is horse racing a sport?" }],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> ASK WHERE { dbr:Horse_racing rdf:type dbo:Sport }"
-      }
-    },
-    {
-      "id": "584",
-      "question": [{ "language": "en", "string": "Is Pluto really a planet?" }],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> ASK WHERE { dbr:Pluto rdf:type dbo:Planet }"
-      }
-    },
-    {
-      "id": "585",
-      "question": [
-        { "language": "en", "string": "Was Sigmund Freud married?" }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> ASK WHERE { dbr:Sigmund_Freud dbo:spouse ?uri }"
-      }
-    },
-    {
-      "id": "374",
-      "question": [
-        {
-          "language": "en",
-          "string": "What form of government is found in South Africa?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?uri WHERE { dbr:South_Africa dbo:governmentType ?uri }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Unitary_state"
-        }
-      }
-    },
-    {
-      "id": "375",
-      "question": [
-        {
-          "language": "en",
-          "string": "What is the largest state in the United States?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dct: <http://purl.org/dc/terms/> PREFIX dbc: <http://dbpedia.org/resource/Category:> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT ?uri WHERE { ?uri dct:subject dbc:States_of_the_United_States ; rdf:type dbo:AdministrativeRegion ; dbo:areaTotal ?area } ORDER BY DESC(?area) OFFSET 0 LIMIT 1"
-      },
-      "answers": {
-        "uri": { "type": "uri", "value": "http://dbpedia.org/resource/Alaska" }
-      }
-    },
-    {
-      "id": "376",
-      "question": [
-        {
-          "language": "en",
-          "string": "What is the longest river in the world?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT ?uri WHERE { ?uri rdf:type dbo:BodyOfWater ; dbo:length ?length } ORDER BY DESC(?length) LIMIT 1"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Indian_Ocean"
-        }
-      }
-    },
-    {
-      "id": "589",
-      "question": [
-        {
-          "language": "en",
-          "string": "Which building after the Burj Khalifa has the most floors?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { res:Burj_Khalifa dbo:floorCount ?burj . ?uri rdf:type dbo:Building ; dbo:floorCount ?proj FILTER ( ?proj < ?burj ) } ORDER BY DESC(?proj) LIMIT 1"
-      }
-    },
-    {
-      "id": "377",
-      "question": [
-        { "language": "en", "string": "What is the wavelength of indigo?" }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?n WHERE { dbr:Indigo dbo:wavelength ?n }"
-      },
-      "answers": {
-        "n": {
-          "type": "typed-literal",
-          "datatype": "http://www.w3.org/2001/XMLSchema#double",
-          "value": "4.2e-07"
-        }
-      }
-    },
-    {
-      "id": "378",
-      "question": [
-        {
-          "language": "en",
-          "string": "What was the name of the famous battle in 1836 in San Antonio?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?uri WHERE { ?uri a dbo:MilitaryConflict ; dbo:place dbr:San_Antonio ; dbo:date ?date FILTER ( ?date > \"1835-12-31T00:00:00Z\"^^xsd:dateTime ) FILTER ( ?date <= \"1836-12-31T00:00:00Z\"^^xsd:dateTime ) }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Battle_of_the_Alamo"
-        }
-      }
-    },
-    {
-      "id": "379",
-      "question": [
-        {
-          "language": "en",
-          "string": "What were the names of the three ships used by Columbus?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dct: <http://purl.org/dc/terms/> PREFIX dbc: <http://dbpedia.org/resource/Category:> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT ?uri WHERE { ?uri rdf:type dbo:Ship ; dct:subject dbc:Christopher_Columbus ; dct:subject dbc:Exploration_ships }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Pinta_(ship)"
-        }
-      }
-    },
-    {
-      "id": "593",
-      "question": [
-        {
-          "language": "en",
-          "string": "What were the original 13 British colonies?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dct: <http://purl.org/dc/terms/> PREFIX dbc: <http://dbpedia.org/resource/Category:> select distinct ?uri where { ?uri dct:subject dbc:Former_British_colonies. ?uri dct:subject dbc:Thirteen_Colonies. }"
-      }
-    },
-    {
-      "id": "380",
-      "question": [{ "language": "en", "string": "When did Muhammad die?" }],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT xsd:date(?date) WHERE { res:Muhammad dbo:deathDate ?date }"
-      },
-      "answers": {
-        "callret-0": {
-          "type": "typed-literal",
-          "datatype": "http://www.w3.org/2001/XMLSchema#date",
-          "value": "0632-06-08"
-        }
-      }
-    },
-    {
-      "id": "381",
-      "question": [
-        { "language": "en", "string": "When was the De Beers company founded?" }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT xsd:date(?date) WHERE { res:De_Beers dbo:foundingYear ?date }"
-      },
-      "answers": {
-        "callret-0": {
-          "type": "typed-literal",
-          "datatype": "http://www.w3.org/2001/XMLSchema#date",
-          "value": "1888-01-01"
-        }
-      }
-    },
-    {
-      "id": "382",
-      "question": [{ "language": "en", "string": "When was John Adams born?" }],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?date WHERE { res:John_Adams dbo:birthDate ?date }"
-      },
-      "answers": {
-        "date": {
-          "type": "typed-literal",
-          "datatype": "http://www.w3.org/2001/XMLSchema#date",
-          "value": "1735-10-30"
-        }
-      }
-    },
-    {
-      "id": "383",
-      "question": [
-        {
-          "language": "en",
-          "string": "Which American presidents were in office during the Vietnam War?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX dct: <http://purl.org/dc/terms/> PREFIX dbc: <http://dbpedia.org/resource/Category:> SELECT ?uri WHERE { ?uri dct:subject dbc:Presidents_of_the_United_States . res:Vietnam_War dbo:commander ?uri }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Richard_Nixon"
-        }
-      }
-    },
-    {
-      "id": "384",
-      "question": [
-        {
-          "language": "en",
-          "string": "Which city has the oldest running metro?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT ?loc WHERE { ?uri dbo:type dbr:Rapid_transit ; dbo:openingYear ?date ; dbo:location ?loc . ?loc rdf:type dbo:City } ORDER BY ASC(?date) LIMIT 1"
-      },
-      "answers": {
-        "loc": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Klang_Valley"
-        }
-      }
-    },
-    {
-      "id": "385",
-      "question": [
-        {
-          "language": "en",
-          "string": "Which holidays are celebrated around the world?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Holiday }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/1981_Handsworth_riots"
-        }
-      }
-    },
-    {
-      "id": "386",
-      "question": [
-        { "language": "en", "string": "Who assassinated President McKinley?" }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dct: <http://purl.org/dc/terms/> PREFIX dbc: <http://dbpedia.org/resource/Category:> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Person ; dct:subject dbc:American_assassins ; dct:subject dbc:Assassination_of_William_McKinley }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Leon_Czolgosz"
-        }
-      }
-    },
-    {
-      "id": "387",
-      "question": [{ "language": "en", "string": "Who discovered Pluto?" }],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?uri WHERE { dbr:Pluto dbo:discoverer ?uri }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Clyde_Tombaugh"
-        }
-      }
-    },
-    {
-      "id": "388",
-      "question": [{ "language": "en", "string": "Who killed Caesar?" }],
-      "query": {
-        "sparql": "PREFIX dct: <http://purl.org/dc/terms/> PREFIX dbc: <http://dbpedia.org/resource/Category:> SELECT DISTINCT ?uri WHERE { ?uri dct:subject dbc:Assassins_of_Julius_Caesar }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Decimus_Junius_Brutus_Albinus"
-        }
-      }
-    },
-    {
-      "id": "603",
-      "question": [
-        {
-          "language": "en",
-          "string": "Who was buried in the Great Pyramid of Giza?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?uri WHERE { ?uri dbo:restingPlace dbr:Great_Pyramid_of_Giza }"
-      }
-    },
-    {
-      "id": "389",
-      "question": [
-        { "language": "en", "string": "Who was the first King of England?" }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX yago: <http://dbpedia.org/class/yago/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Royalty ; rdf:type yago:WikicatEnglishMonarchs ; dbo:activeYearsStartYear ?date } ORDER BY ASC(?date) OFFSET 0 LIMIT 1"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Harold_Godwinson"
-        }
-      }
-    },
-    {
-      "id": "390",
-      "question": [
-        {
-          "language": "en",
-          "string": "What was the final result of the War of the Roses?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT DISTINCT ?result WHERE { ?uri dbo:isPartOfMilitaryConflict dbr:Wars_of_the_Roses ; dbo:result ?result ; dbo:date ?date } ORDER BY DESC(?date) OFFSET 0 LIMIT 1"
-      },
-      "answers": {
-        "result": { "type": "literal", "value": "Decisive Tudor victory" }
-      }
-    },
-    {
-      "id": "391",
-      "question": [
-        { "language": "en", "string": "Who writes the Farmers' Almanac?" }
-      ],
-      "query": {
-        "sparql": "PREFIX dbp: <http://dbpedia.org/property/> SELECT ?uri WHERE { <http://dbpedia.org/resource/Farmers'_Almanac> dbp:editor ?uri }"
-      },
-      "answers": {
-        "uri": { "type": "literal", "xml:lang": "en", "value": "Peter Geiger" }
-      }
-    },
-    {
-      "id": "392",
-      "question": [
-        { "language": "en", "string": "How big is the earth's diameter?" }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT (( xsd:double(?radius) * 2 ) AS ?diameter) WHERE { res:Earth dbo:meanRadius ?radius }"
-      },
-      "answers": {
-        "diameter": {
-          "type": "typed-literal",
-          "datatype": "http://www.w3.org/2001/XMLSchema#double",
-          "value": "1.2742e+07"
-        }
-      }
-    },
-    {
-      "id": "608",
-      "question": [
-        {
-          "language": "en",
-          "string": "When did Paraguay proclaim its independence?"
-        }
-      ],
-      "query": {
-        "sparql": "SELECT DISTINCT ?date WHERE { <http://dbpedia.org/resource/Paraguay> <http://dbpedia.org/ontology/foundingDate> ?date }"
-      }
-    },
-    {
-      "id": "393",
-      "question": [
-        { "language": "en", "string": "How many people live in Eurasia?" }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?population WHERE { res:Eurasia dbo:populationTotal ?population }"
-      },
-      "answers": {
-        "population": {
-          "type": "typed-literal",
-          "datatype": "http://www.w3.org/2001/XMLSchema#nonNegativeInteger",
-          "value": "5360351985"
-        }
-      }
-    },
-    {
-      "id": "394",
-      "question": [
-        { "language": "en", "string": "Give me the runtime of Toy Story." }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?runtime WHERE { res:Toy_Story dbo:runtime ?runtime }"
-      },
-      "answers": {
-        "runtime": {
-          "type": "typed-literal",
-          "datatype": "http://www.w3.org/2001/XMLSchema#double",
-          "value": "4860.0"
-        }
-      }
-    },
-    {
-      "id": "395",
-      "question": [
-        {
-          "language": "en",
-          "string": "What was the first name of the band Queens of the Stone Age?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?name WHERE { res:Queens_of_the_Stone_Age dbo:alias ?name }"
-      },
-      "answers": {
-        "name": {
-          "type": "literal",
-          "xml:lang": "en",
-          "value": "Gamma Ray(1996)"
-        }
-      }
-    },
-    {
-      "id": "396",
-      "question": [
-        {
-          "language": "en",
-          "string": "Give me the birth place of Frank Sinatra."
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?place WHERE { res:Frank_Sinatra dbo:birthPlace ?place }"
-      },
-      "answers": {
-        "place": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Hoboken,_New_Jersey"
-        }
-      }
-    },
-    {
-      "id": "397",
-      "question": [
-        {
-          "language": "en",
-          "string": "Which university did Angela Merkel attend?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?university WHERE { res:Angela_Merkel dbo:almaMater ?university }"
-      },
-      "answers": {
-        "university": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/German_Academy_of_Sciences_at_Berlin"
-        }
-      }
-    },
-    {
-      "id": "398",
-      "question": [
-        {
-          "language": "en",
-          "string": "What is the alma mater of the chancellor of Germany Angela Merkel?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?Almamater WHERE { dbr:Angela_Merkel dbo:almaMater ?Almamater }"
-      },
-      "answers": {
-        "Almamater": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/German_Academy_of_Sciences_at_Berlin"
-        }
-      }
-    },
-    {
-      "id": "615",
-      "question": [
-        { "language": "en", "string": "How large is the area of UK?" }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?area WHERE { dbr:United_Kingdom dbo:areaTotal ?area }"
-      }
-    },
-    {
-      "id": "399",
-      "question": [
-        {
-          "language": "en",
-          "string": "Who is the author of the interpretation of dreams?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?Author WHERE { dbr:The_Interpretation_of_Dreams dbo:author ?Author }"
-      },
-      "answers": {
-        "Author": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Sigmund_Freud"
-        }
-      }
-    },
-    {
-      "id": "400",
-      "question": [
-        { "language": "en", "string": "What is the birth name of Adele?" }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?bn WHERE { dbr:Adele dbo:birthName ?bn }"
-      },
-      "answers": {
-        "bn": {
-          "type": "literal",
-          "xml:lang": "en",
-          "value": "Adele Laurie Blue Adkins"
-        }
-      }
-    },
-    {
-      "id": "401",
-      "question": [
-        {
-          "language": "en",
-          "string": "What are the top selling luxury vehicle brands in Germany?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dct: <http://purl.org/dc/terms/> PREFIX dbc: <http://dbpedia.org/resource/Category:> 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)"
-      },
-      "answers": {
-        "company": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Mercedes-Benz_Group"
-        }
-      }
-    },
-    {
-      "id": "402",
-      "question": [
-        { "language": "en", "string": "How many awards has Bertrand Russell?" }
-      ],
-      "query": {
-        "sparql": "PREFIX dbr: <http://dbpedia.org/resource/> PREFIX dbp: <http://dbpedia.org/property/> SELECT (COUNT(?Awards) AS ?Counter) WHERE { dbr:Bertrand_Russell dbp:awards ?Awards }"
-      },
-      "answers": {
-        "Counter": {
-          "type": "typed-literal",
-          "datatype": "http://www.w3.org/2001/XMLSchema#integer",
-          "value": "6"
-        }
-      }
-    },
-    {
-      "id": "403",
-      "question": [{ "language": "en", "string": "Who is Dan Jurafsky?" }],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?Dan WHERE {  VALUES ?Dan {dbr:Daniel_Jurafsky } }"
-      },
-      "answers": {
-        "Dan": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Daniel_Jurafsky"
-        }
-      }
-    },
-    {
-      "id": "621",
-      "question": [
-        {
-          "language": "en",
-          "string": "When will start the final match of the football world cup 2018?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbr: <http://dbpedia.org/resource/> PREFIX dbp: <http://dbpedia.org/property/> SELECT ?Date WHERE { dbr:2018_FIFA_World_Cup dbp:date ?Date } ORDER BY DESC(?Date) LIMIT 1"
-      }
-    },
-    {
-      "id": "404",
-      "question": [
-        {
-          "language": "en",
-          "string": "how much is the elevation of D\u00fcsseldorf Airport ?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?ele WHERE { dbr:D\u00fcsseldorf_Airport dbo:elevation ?ele } LIMIT 1"
-      },
-      "answers": {
-        "ele": {
-          "type": "typed-literal",
-          "datatype": "http://www.w3.org/2001/XMLSchema#double",
-          "value": "44.8"
-        }
-      }
-    },
-    {
-      "id": "405",
-      "question": [
-        {
-          "language": "en",
-          "string": "how much is the total population of  european union?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?europop WHERE { dbr:European_Union dbo:populationTotal ?europop }"
-      },
-      "answers": {
-        "europop": {
-          "type": "typed-literal",
-          "datatype": "http://www.w3.org/2001/XMLSchema#nonNegativeInteger",
-          "value": "447007596"
-        }
-      }
-    },
-    {
-      "id": "624",
-      "question": [
-        {
-          "language": "en",
-          "string": "when was the founding date of french fifth republic?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?ff WHERE { dbr:French_Fifth_Republic dbo:foundingDate ?ff }"
-      }
-    },
-    {
-      "id": "625",
-      "question": [
-        { "language": "en", "string": "Who are the founders of  BlaBlaCar?" }
-      ],
-      "query": {
-        "sparql": "PREFIX dbr: <http://dbpedia.org/resource/> PREFIX dbp: <http://dbpedia.org/property/> SELECT ?founder WHERE { dbr:BlaBlaCar dbp:founders ?founder }"
-      }
-    },
-    {
-      "id": "406",
-      "question": [
-        { "language": "en", "string": "how many foreigners speak German?" }
-      ],
-      "query": {
-        "sparql": "PREFIX dbr: <http://dbpedia.org/resource/> PREFIX dbp: <http://dbpedia.org/property/> SELECT ?Ger_lang WHERE { dbr:German_language dbp:speakers ?Ger_lang } OFFSET 1 LIMIT 1"
-      },
-      "answers": {
-        "Ger_lang": {
-          "type": "literal",
-          "xml:lang": "en",
-          "value": "L2 speakers: 80\u201385 million"
-        }
-      }
-    },
-    {
-      "id": "407",
-      "question": [
-        { "language": "en", "string": "Where is the birthplace of Goethe?" }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?Goethe WHERE { dbr:Johann_Wolfgang_von_Goethe dbo:birthPlace ?Goethe }"
-      },
-      "answers": {
-        "Goethe": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Holy_Roman_Empire"
-        }
-      }
-    },
-    {
-      "id": "408",
-      "question": [
-        {
-          "language": "en",
-          "string": "Where is the origin of Carolina reaper?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/>PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?uri WHERE { dbr:Carolina_Reaper dbo:origin ?uri}"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Rock_Hill,_South_Carolina"
-        }
-      }
-    },
-    {
-      "id": "409",
-      "question": [
-        {
-          "language": "en",
-          "string": "How much is the population of Mexico City ?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?Mexico_City WHERE { dbr:Mexico_City dbo:populationTotal ?Mexico_City }"
-      },
-      "answers": {
-        "Mexico_City": {
-          "type": "typed-literal",
-          "datatype": "http://www.w3.org/2001/XMLSchema#nonNegativeInteger",
-          "value": "9209944"
-        }
-      }
-    },
-    {
-      "id": "410",
-      "question": [
-        { "language": "en", "string": "What is the nick name of Baghdad?" }
-      ],
-      "query": {
-        "sparql": "PREFIX dbr: <http://dbpedia.org/resource/> PREFIX foaf: <http://xmlns.com/foaf/0.1/> SELECT ?nm WHERE { dbr:Baghdad foaf:nick ?nm }"
-      },
-      "answers": {
-        "nm": {
-          "type": "literal",
-          "xml:lang": "en",
-          "value": "City of Peace (\u0645\u062f\u064a\u0646\u0629 \u0627\u0644\u0633\u0644\u0627\u0645)"
-        }
-      }
-    },
-    {
-      "id": "411",
-      "question": [
-        {
-          "language": "en",
-          "string": "Who is the novelist of the work a song of ice and fire?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbr: <http://dbpedia.org/resource/> PREFIX dbp: <http://dbpedia.org/property/> SELECT ?Novelist WHERE { dbr:A_Song_of_Ice_and_Fire dbp:author ?Novelist }"
-      },
-      "answers": {
-        "Novelist": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/George_R._R._Martin"
-        }
-      }
-    },
-    {
-      "id": "412",
-      "question": [
-        {
-          "language": "en",
-          "string": "What is the percentage of area water in Brazil?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?percentage WHERE { dbr:Brazil dbo:percentageOfAreaWater ?percentage }"
-      },
-      "answers": {
-        "percentage": {
-          "type": "typed-literal",
-          "datatype": "http://www.w3.org/2001/XMLSchema#float",
-          "value": "0.65"
-        }
-      }
-    },
-    {
-      "id": "413",
-      "question": [
-        { "language": "en", "string": "How much is the population of Iraq?" }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?pIraq WHERE { dbr:Iraq dbo:populationTotal ?pIraq }"
-      },
-      "answers": {
-        "pIraq": {
-          "type": "typed-literal",
-          "datatype": "http://www.w3.org/2001/XMLSchema#nonNegativeInteger",
-          "value": "44222503"
-        }
-      }
-    },
-    {
-      "id": "414",
-      "question": [
-        { "language": "en", "string": "What is the population of Cairo?" }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?pop WHERE { dbr:Cairo dbo:populationTotal ?pop }"
-      },
-      "answers": {
-        "pop": {
-          "type": "typed-literal",
-          "datatype": "http://www.w3.org/2001/XMLSchema#nonNegativeInteger",
-          "value": "10025657"
-        }
-      }
-    },
-    {
-      "id": "415",
-      "question": [
-        {
-          "language": "en",
-          "string": "How much is the population density rank of Germany?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbr: <http://dbpedia.org/resource/> PREFIX dbp: <http://dbpedia.org/property/> SELECT ?rank WHERE { dbr:Germany dbp:populationDensityRank ?rank }"
-      },
-      "answers": {
-        "rank": {
-          "type": "typed-literal",
-          "datatype": "http://www.w3.org/2001/XMLSchema#integer",
-          "value": "58"
-        }
-      }
-    },
-    {
-      "id": "416",
-      "question": [
-        {
-          "language": "en",
-          "string": "What is the relation between Resource Description Framework and Web Ontology Language?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?rdf_owl WHERE { dbr:Web_Ontology_Language dbo:abstract ?rdf_owl } LIMIT 1"
-      },
-      "answers": {
-        "rdf_owl": {
-          "type": "literal",
-          "xml:lang": "ca",
-          "value": "OWL \u00e9s l'acr\u00f2nim de l'angl\u00e8s Web Ontology Language, un llenguatge de marcat per publicar i compartir dades usant ontologies en la WWW. OWL t\u00e9 com a objectiu facilitar un model de marcat constru\u00eft sobre RDF i codificat en XML. T\u00e9 com a antecedent DAML+OIL, en els quals es van inspirar els creadors de OWL per crear el llenguatge. Al costat de l'entorn RDF i altres components, aquestes eines fan possible el projecte de web sem\u00e0ntica."
-        }
-      }
-    },
-    {
-      "id": "417",
-      "question": [
-        {
-          "language": "en",
-          "string": "How large is the total area of North Rhine-Westphalia?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?tarea WHERE { dbr:North_Rhine-Westphalia dbo:areaTotal ?tarea }"
-      },
-      "answers": {
-        "tarea": {
-          "type": "typed-literal",
-          "datatype": "http://www.w3.org/2001/XMLSchema#double",
-          "value": "3.40841e+10"
-        }
-      }
-    },
-    {
-      "id": "418",
-      "question": [
-        {
-          "language": "en",
-          "string": "What is the original title of the interpretation of dreams?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbr: <http://dbpedia.org/resource/> PREFIX foaf: <http://xmlns.com/foaf/0.1/> SELECT ?title WHERE { dbr:The_Interpretation_of_Dreams foaf:name ?title }"
-      },
-      "answers": {
-        "title": {
-          "type": "literal",
-          "xml:lang": "en",
-          "value": "Die Traumdeutung"
-        }
-      }
-    },
-    {
-      "id": "639",
-      "question": [
-        {
-          "language": "en",
-          "string": "Who are the writers of the Wall album of Pink Floyd?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbr: <http://dbpedia.org/resource/> PREFIX dbp: <http://dbpedia.org/property/> SELECT ?writers WHERE { dbr:The_Wall dbp:writer ?writers }"
-      }
-    },
-    {
-      "id": "419",
-      "question": [
-        { "language": "en", "string": "When was the death  of  Shakespeare?" }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?x WHERE { dbr:William_Shakespeare dbo:deathDate ?x } LIMIT 1"
-      },
-      "answers": {
-        "x": {
-          "type": "typed-literal",
-          "datatype": "http://www.w3.org/2001/XMLSchema#date",
-          "value": "1616-04-23"
-        }
-      }
-    },
-    {
-      "id": "420",
-      "question": [
-        {
-          "language": "en",
-          "string": "With how many countries Iran has borders?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbr: <http://dbpedia.org/resource/> PREFIX dbp: <http://dbpedia.org/property/> SELECT ?border WHERE { dbr:Geography_of_Iran dbp:borders ?border } LIMIT 8"
-      },
-      "answers": {
-        "border": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Azerbaijan"
-        }
-      }
-    },
-    {
-      "id": "421",
-      "question": [
-        {
-          "language": "en",
-          "string": "What is the smallest city by area in Germany?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX skos: <http://www.w3.org/2004/02/skos/core#> PREFIX dbc: <http://dbpedia.org/resource/Category:> PREFIX dct: <http://purl.org/dc/terms/> SELECT ?city WHERE { ?m skos:broader dbc:Cities_in_Germany . ?city dct:subject ?m ; dbo:areaTotal ?area } ORDER BY ?area LIMIT 1"
-      },
-      "answers": {
-        "city": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Eckernf\u00f6rde"
-        }
-      }
-    },
-    {
-      "id": "422",
-      "question": [
-        {
-          "language": "en",
-          "string": "Which beer brewing comapnies are located in North-Rhine Westphalia?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dct: <http://purl.org/dc/terms/> PREFIX dbc: <http://dbpedia.org/resource/Category:> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT ?company WHERE { ?company dct:subject dbc:Companies_based_in_North_Rhine-Westphalia ; rdf:type dbo:Brewery }"
-      },
-      "answers": {
-        "company": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Veltins_Brewery"
-        }
-      }
-    },
-    {
-      "id": "423",
-      "question": [
-        { "language": "en", "string": "What is the largest city in america?" }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?lcity WHERE { dbr:United_States dbo:largestCity ?lcity }"
-      },
-      "answers": {
-        "lcity": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/New_York_City"
-        }
-      }
-    },
-    {
-      "id": "424",
-      "question": [
-        {
-          "language": "en",
-          "string": "Who is the current federal minister of finance in Germany?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> SELECT ?leader WHERE { <http://dbpedia.org/resource/Federal_Ministry_of_Finance_(Germany)> dbo:leader ?leader }"
-      },
-      "answers": {
-        "leader": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Katja_Hessel"
-        }
-      }
-    },
-    {
-      "id": "425",
-      "question": [
-        {
-          "language": "en",
-          "string": "What is the highest mountain in the Bavarian Alps?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?m  WHERE { dbr:Bavarian_Alps dbp:highest ?m} "
-      },
-      "answers": {
-        "m": { "type": "uri", "value": "http://dbpedia.org/resource/Zugspitze" }
-      }
-    },
-    {
-      "id": "426",
-      "question": [
-        { "language": "en", "string": "Who is 8th president of US?" }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbp: <http://dbpedia.org/property/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?name WHERE { dbr:8th_President_of_the_United_States dbo:wikiPageRedirects ?link . ?link dbp:name ?name }"
-      },
-      "answers": {
-        "name": {
-          "type": "literal",
-          "xml:lang": "en",
-          "value": "Martin Van Buren"
-        }
-      }
-    },
-    {
-      "id": "648",
-      "question": [
-        {
-          "language": "en",
-          "string": "Where is the most deep point in the ocean?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> PREFIX dct: <http://purl.org/dc/terms/> PREFIX dbr: <http://dbpedia.org/resource/> 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"
-      }
-    },
-    {
-      "id": "427",
-      "question": [
-        {
-          "language": "en",
-          "string": "In which state Penn State University is located?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?s WHERE { dbr:Pennsylvania_State_University dbo:state ?s }"
-      },
-      "answers": {
-        "s": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Pennsylvania"
-        }
-      }
-    },
-    {
-      "id": "650",
-      "question": [
-        { "language": "en", "string": "Which species does an elephant belong?" }
-      ],
-      "query": {
-        "sparql": "PREFIX dbr: <http://dbpedia.org/resource/> PREFIX dbp: <http://dbpedia.org/property/> SELECT ?species WHERE { dbr:Elephant dbp:species ?species }"
-      }
-    },
-    {
-      "id": "428",
-      "question": [
-        { "language": "en", "string": "What is Donald Trump's main business?" }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?owner WHERE { ?owner dbo:owner dbr:Donald_Trump }"
-      },
-      "answers": {
-        "owner": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Trump_Model_Management"
-        }
-      }
-    },
-    {
-      "id": "429",
-      "question": [
-        { "language": "en", "string": "What is the last work of Dan Brown?" }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbp: <http://dbpedia.org/property/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?book WHERE { { ?book dbo:author dbr:Dan_Brown . ?book dbp:releaseDate ?date } UNION { ?book dbo:author dbr:Dan_Brown . ?book dbo:publicationDate ?date} } ORDER BY DESC(xsd:date(?date)) LIMIT 1"
-      },
-      "answers": {
-        "book": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Origin_(Brown_novel)"
-        }
-      }
-    },
-    {
-      "id": "653",
-      "question": [
-        {
-          "language": "en",
-          "string": "What other books have been written by the author of The Fault in Our Stars?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> SELECT ?books WHERE { ?books dbo:author <http://dbpedia.org/resource/John_Green_(author)> }"
-      }
-    },
-    {
-      "id": "430",
-      "question": [
-        {
-          "language": "en",
-          "string": "When was the last episode of the TV series Friends aired?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?date WHERE { dbr:Friends dbo:completionDate ?date }"
-      },
-      "answers": {
-        "date": {
-          "type": "typed-literal",
-          "datatype": "http://www.w3.org/2001/XMLSchema#date",
-          "value": "2004-05-06"
-        }
-      }
-    },
-    {
-      "id": "655",
-      "question": [
-        {
-          "language": "en",
-          "string": "Are Taiko some kind of Japanese musical instrument?"
-        }
-      ],
-      "query": {
-        "sparql": "ASK WHERE { <http://dbpedia.org/resource/Taiko> a <http://dbpedia.org/class/yago/WikicatJapaneseMusicalInstruments> }"
-      }
-    },
-    {
-      "id": "431",
-      "question": [
-        {
-          "language": "en",
-          "string": "What is Angela Merkel\u2019s birth name?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX res: <http://dbpedia.org/resource/> PREFIX dbp: <http://dbpedia.org/property/> SELECT DISTINCT ?string WHERE { res:Angela_Merkel dbp:birthName ?string }"
-      },
-      "answers": {
-        "string": {
-          "type": "literal",
-          "xml:lang": "en",
-          "value": "Angela Dorothea Kasner"
-        }
-      }
-    },
-    {
-      "id": "432",
-      "question": [
-        {
-          "language": "en",
-          "string": "Which classes does the Millepede belong to?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX res: <http://dbpedia.org/resource/> PREFIX dbp: <http://dbpedia.org/property/> SELECT DISTINCT ?String WHERE { res:Millipede dbp:taxon ?String }"
-      },
-      "answers": {
-        "String": { "type": "literal", "xml:lang": "en", "value": "Diplopoda" }
-      }
-    },
-    {
-      "id": "658",
-      "question": [
-        {
-          "language": "en",
-          "string": "Sean Parnell was the governor of which U.S. state?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Sean_Parnell dbo:region ?uri }"
-      }
-    },
-    {
-      "id": "659",
-      "question": [
-        {
-          "language": "en",
-          "string": "How many students does the Free University of Amsterdam have?"
-        }
-      ],
-      "query": {
-        "sparql": "SELECT DISTINCT ?num WHERE { dbr:Vrije_Universiteit_Amsterdam <http://dbpedia.org/ontology/numberOfStudents> ?num }"
-      }
-    },
-    {
-      "id": "433",
-      "question": [
-        { "language": "en", "string": "How many James Bond movies do exist?" }
-      ],
-      "query": {
-        "sparql": "SELECT (COUNT(DISTINCT ?uri) AS ?c) WHERE { ?uri dct:subject <http://dbpedia.org/resource/Category:James_Bond_films> }"
-      },
-      "answers": {
-        "c": {
-          "type": "typed-literal",
-          "datatype": "http://www.w3.org/2001/XMLSchema#integer",
-          "value": "29"
-        }
-      }
-    },
-    {
-      "id": "661",
-      "question": [
-        {
-          "language": "en",
-          "string": "Give me all American presidents of the last 20 years."
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbp: <http://dbpedia.org/property/> PREFIX dct: <http://purl.org/dc/terms/> PREFIX dbc: <http://dbpedia.org/resource/Category:> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> 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 ) }"
-      }
-    },
-    {
-      "id": "434",
-      "question": [
-        { "language": "en", "string": "What languages are spoken in Pakistan?" }
-      ],
-      "query": {
-        "sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Pakistan> <http://dbpedia.org/ontology/language> ?uri }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Memoni_language"
-        }
-      }
-    },
-    {
-      "id": "435",
-      "question": [
-        { "language": "en", "string": "What is the wavelength of Indigo?" }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?n WHERE { dbr:Indigo dbo:wavelength ?n }"
-      },
-      "answers": {
-        "n": {
-          "type": "typed-literal",
-          "datatype": "http://www.w3.org/2001/XMLSchema#double",
-          "value": "4.2e-07"
-        }
-      }
-    },
-    {
-      "id": "436",
-      "question": [
-        {
-          "language": "en",
-          "string": "Which daughters of British earls died at the same place they were born at?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX yago: <http://dbpedia.org/class/yago/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type yago:WikicatDaughtersOfBritishEarls ; dbo:birthPlace ?x ; dbo:deathPlace ?y FILTER ( ?x = ?y ) }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Megan_Lloyd_George"
-        }
-      }
-    },
-    {
-      "id": "665",
-      "question": [
-        {
-          "language": "en",
-          "string": "What is the name of the university where Obama's wife studied?"
-        }
-      ],
-      "query": {
-        "sparql": "SELECT DISTINCT ?s WHERE { <http://dbpedia.org/resource/Barack_Obama> <http://dbpedia.org/ontology/spouse> ?x . ?x <http://dbpedia.org/ontology/almaMater> ?s }"
-      }
-    },
-    {
-      "id": "437",
-      "question": [
-        {
-          "language": "en",
-          "string": "In which city is the headquarter of Air China?"
-        }
-      ],
-      "query": {
-        "sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Air_China> <http://dbpedia.org/ontology/headquarter> ?uri . ?uri a <http://dbpedia.org/class/yago/City108524735> }"
-      },
-      "answers": {
-        "uri": { "type": "uri", "value": "http://dbpedia.org/resource/Beijing" }
-      }
-    },
-    {
-      "id": "438",
-      "question": [
-        {
-          "language": "en",
-          "string": "Give me all libraries established before 1400."
-        }
-      ],
-      "query": {
-        "sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Library> ; <http://dbpedia.org/property/established> ?year FILTER ( ?year < 1400 ) }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Library_of_Pergamum"
-        }
-      }
-    },
-    {
-      "id": "439",
-      "question": [
-        {
-          "language": "en",
-          "string": "Which beer brewing companies are located in North-Rhine Westphalia?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dct: <http://purl.org/dc/terms/> PREFIX dbc: <http://dbpedia.org/resource/Category:> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT ?company WHERE { ?company dct:subject dbc:Companies_based_in_North_Rhine-Westphalia ; rdf:type dbo:Brewery }"
-      },
-      "answers": {
-        "company": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Veltins_Brewery"
-        }
-      }
-    },
-    {
-      "id": "440",
-      "question": [
-        {
-          "language": "en",
-          "string": "What were the names of the three ships by Columbus?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dct: <http://purl.org/dc/terms/> PREFIX dbc: <http://dbpedia.org/resource/Category:> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT ?uri WHERE { ?uri rdf:type dbo:Ship ; dct:subject dbc:Christopher_Columbus ; dct:subject dbc:Exploration_ships }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Pinta_(ship)"
-        }
-      }
-    },
-    {
-      "id": "441",
-      "question": [
-        {
-          "language": "en",
-          "string": "What is the highest mountain in Saxony Germany?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?m WHERE { ?m dbo:mountainRange dbr:Ore_Mountains ; dbo:elevation ?height } ORDER BY DESC(?height) LIMIT 1"
-      },
-      "answers": {
-        "m": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/Kl\u00ednovec"
-        }
-      }
-    },
-    {
-      "id": "442",
-      "question": [
-        {
-          "language": "en",
-          "string": "How much is the population of mexico city ?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?Mexico_City WHERE { dbr:Mexico_City dbo:populationTotal ?Mexico_City }"
-      },
-      "answers": {
-        "Mexico_City": {
-          "type": "typed-literal",
-          "datatype": "http://www.w3.org/2001/XMLSchema#nonNegativeInteger",
-          "value": "9209944"
-        }
-      }
-    },
-    {
-      "id": "672",
-      "question": [
-        { "language": "en", "string": "Where is Sungkyunkwan University?" }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT DISTINCT ?country WHERE { dbr:Sungkyunkwan_University dbo:city ?city ; dbo:country ?country }"
-      }
-    },
-    {
-      "id": "443",
-      "question": [
-        {
-          "language": "en",
-          "string": "how big is the total area of North Rhine- Westphalia?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?tarea WHERE { dbr:North_Rhine-Westphalia dbo:areaTotal ?tarea }"
-      },
-      "answers": {
-        "tarea": {
-          "type": "typed-literal",
-          "datatype": "http://www.w3.org/2001/XMLSchema#double",
-          "value": "3.40841e+10"
-        }
-      }
-    },
-    {
-      "id": "444",
-      "question": [
-        { "language": "en", "string": "how much is the population  Iraq?" }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?pIraq WHERE { dbr:Iraq dbo:populationTotal ?pIraq }"
-      },
-      "answers": {
-        "pIraq": {
-          "type": "typed-literal",
-          "datatype": "http://www.w3.org/2001/XMLSchema#nonNegativeInteger",
-          "value": "44222503"
-        }
-      }
-    },
-    {
-      "id": "445",
-      "question": [
-        {
-          "language": "en",
-          "string": "how much is the population densty rank of germany?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbr: <http://dbpedia.org/resource/> PREFIX dbp: <http://dbpedia.org/property/> SELECT ?rank WHERE { dbr:Germany dbp:populationDensityRank ?rank }"
-      },
-      "answers": {
-        "rank": {
-          "type": "typed-literal",
-          "datatype": "http://www.w3.org/2001/XMLSchema#integer",
-          "value": "58"
-        }
-      }
-    },
-    {
-      "id": "446",
-      "question": [
-        {
-          "language": "en",
-          "string": "Which holidays are celebrated around the world?"
-        }
-      ],
-      "query": {
-        "sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Holiday }"
-      },
-      "answers": {
-        "uri": {
-          "type": "uri",
-          "value": "http://dbpedia.org/resource/1981_Handsworth_riots"
-        }
-      }
-    }
-  ]
-}
+{"questions": [{"id": "1", "question": [{"language": "en", "string": "Who is the daughter of Bill Clinton married to?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> PREFIX dbp: <http://dbpedia.org/property/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { dbr:Bill_Clinton dbo:child ?child . ?child dbo:spouse ?uri . ?uri rdfs:label ?string }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Marc_Mezvinsky"}}}, {"id": "2", "question": [{"language": "en", "string": "Which river does the Brooklyn Bridge cross?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Brooklyn_Bridge dbo:crosses ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/East_River"}}}, {"id": "3", "question": [{"language": "en", "string": "How many monarchical countries are there in Europe?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/>PREFIX yago: <http://dbpedia.org/class/yago/>PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>SELECT COUNT(DISTINCT ?uri) WHERE {\t?uri rdf:type yago:EuropeanCountries .        ?uri dbo:governmentType ?govern .        FILTER regex(?govern,'monarchy') .}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "0"}}}, {"id": "4", "question": [{"language": "en", "string": "Which U.S. states possess gold minerals?"}], "query": {"sparql": "PREFIX yago: <http://dbpedia.org/class/yago/> PREFIX dbp: <http://dbpedia.org/property/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type yago:WikicatStatesOfTheUnitedStates ; dbp:mineral ?mineral FILTER regex(?mineral, \"gold\", \"i\") }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alaska"}}}, {"id": "5", "question": [{"language": "en", "string": "How tall is Claudia Schiffer?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?height WHERE { res:Claudia_Schiffer dbo:height ?height }"}, "answers": {"height": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#double", "value": "1.8"}}}, {"id": "6", "question": [{"language": "en", "string": "Who created Goofy?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Goofy> <http://dbpedia.org/ontology/creator> ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bob_Ogle"}}}, {"id": "7", "question": [{"language": "en", "string": "Which museum exhibits The Scream by Munch?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:The_Scream dbo:museum ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/National_Gallery_(Norway)"}}}, {"id": "8", "question": [{"language": "en", "string": "In which country is the Limerick Lake?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Limerick_Lake dbo:country ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Canada"}}}, {"id": "9", "question": [{"language": "en", "string": "Which television shows were created by Walt Disney?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:TelevisionShow ; dbo:creator res:Walt_Disney }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Disney_anthology_television_series"}}}, {"id": "10", "question": [{"language": "en", "string": "Which mountain is the highest after the Annapurna?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {  <http://dbpedia.org/resource/Annapurna> <http://dbpedia.org/ontology/elevation> ?elevation .  ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Mountain> .  ?uri <http://dbpedia.org/ontology/elevation> ?otherelevation .  FILTER (?otherelevation < ?elevation) . } ORDER BY DESC(?otherelevation) OFFSET 0 LIMIT 1 "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gasherbrum_I"}}}, {"id": "11", "question": [{"language": "en", "string": "In which films directed by Garry Marshall was Julia Roberts starring?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Film> ; <http://dbpedia.org/ontology/starring> <http://dbpedia.org/resource/Julia_Roberts> ; <http://dbpedia.org/ontology/director> <http://dbpedia.org/resource/Garry_Marshall> }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Valentine's_Day_(2010_film)"}}}, {"id": "12", "question": [{"language": "en", "string": "Which bridges are of the same type as the Manhattan Bridge?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX dbr: <http://dbpedia.org/resource/> SELECT DISTINCT ?bridge WHERE { dbr:Manhattan_Bridge dbo:type ?type . ?bridge dbo:type ?type ; rdf:type dbo:Bridge }"}, "answers": {"bridge": {"type": "uri", "value": "http://dbpedia.org/resource/Ambassador_Bridge"}}}, {"id": "13", "question": [{"language": "en", "string": "Who is the author of WikiLeaks?"}], "query": {"sparql": "PREFIX res: <http://dbpedia.org/resource/> PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT ?uri WHERE { res:WikiLeaks onto:author ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Julian_Assange"}}}, {"id": "14", "question": [{"language": "en", "string": "Which state of the United States of America has the highest density?"}], "query": {"sparql": "PREFIX yago: <http://dbpedia.org/class/yago/> PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> PREFIX dbp: <http://dbpedia.org/property/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT ?uri WHERE { ?uri dbp:densityrank ?density } ORDER BY ASC(?density) LIMIT 1"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Prince_Edward_Island"}}}, {"id": "15", "question": [{"language": "en", "string": "What is the currency of the Czech Republic?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Czech_Republic dbo:currency ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Czech_koruna"}}}, {"id": "16", "question": [{"language": "en", "string": "Which countries in the European Union adopted the Euro?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Country> { ?uri <http://dbpedia.org/ontology/currency> <http://dbpedia.org/resource/Euro> } UNION { ?uri <http://dbpedia.org/property/currencyCode> \"EUR\"@en } }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Andorra"}}}, {"id": "17", "question": [{"language": "en", "string": "What is the area code of Berlin?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?string WHERE { res:Berlin dbo:areaCode ?string }"}, "answers": {"string": {"type": "literal", "value": "030"}}}, {"id": "18", "question": [{"language": "en", "string": "Which countries have more than two official languages?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Country> ; <http://dbpedia.org/ontology/officialLanguage> ?language } GROUP BY ?uri HAVING ( COUNT(?language) > 2 )"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Democratic_Federal_Yugoslavia"}}}, {"id": "19", "question": [{"language": "en", "string": "What is the highest mountain in Germany?"}], "query": {"sparql": "PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT ?uri WHERE { ?uri rdf:type onto:Mountain ; onto:elevation ?elevation ; onto:locatedInArea <http://dbpedia.org/resource/Germany> } ORDER BY DESC(?elevation) LIMIT 1"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Zugspitze"}}}, {"id": "20", "question": [{"language": "en", "string": "Give me all soccer clubs in Spain."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/SoccerClub> { ?uri <http://dbpedia.org/ontology/ground> <http://dbpedia.org/resource/Spain> } UNION { ?uri <http://dbpedia.org/property/ground> ?ground FILTER regex(?ground, \"Spain\") } }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/And\u00e9s_CF"}}}, {"id": "21", "question": [{"language": "en", "string": "What are the official languages of the Philippines?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Philippines dbo:officialLanguage ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/English_language"}}}, {"id": "22", "question": [{"language": "en", "string": "Who designed the Brooklyn Bridge?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Brooklyn_Bridge dbo:architect ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/John_A._Roebling"}}}, {"id": "23", "question": [{"language": "en", "string": "Which telecommunications organizations are located in Belgium?"}], "query": {"sparql": "SELECT (COUNT(DISTINCT ?uri) AS ?c) WHERE { ?uri a <http://dbpedia.org/ontology/Organisation> { ?uri <http://dbpedia.org/ontology/industry> <http://dbpedia.org/resource/Telecommunication> } UNION { ?uri <http://dbpedia.org/property/industry> ?industry FILTER regex(?industry, \"Telecommunications\") } { ?uri <http://dbpedia.org/ontology/location> <http://dbpedia.org/resource/Belgium> } UNION { ?uri <http://dbpedia.org/property/locationCountry> \"Belgium\"@en } }"}, "answers": {"c": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "7"}}}, {"id": "24", "question": [{"language": "en", "string": "What is the profession of Frank Herbert?"}], "query": {"sparql": "PREFIX dbpedia2: <http://dbpedia.org/property/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?string WHERE { res:Frank_Herbert dbpedia2:occupation ?string }"}, "answers": {"string": {"type": "literal", "xml:lang": "en", "value": "Novelist"}}}, {"id": "25", "question": [{"language": "en", "string": "What is the highest place of Karakoram?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Karakoram dbp:highest ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/K2"}}}, {"id": "26", "question": [{"language": "en", "string": "Give me the homepage of Forbes."}], "query": {"sparql": "PREFIX res: <http://dbpedia.org/resource/> PREFIX foaf: <http://xmlns.com/foaf/0.1/> SELECT DISTINCT ?string WHERE { res:Forbes foaf:homepage ?string }"}, "answers": {"string": {"type": "uri", "value": "https://www.forbes.com/%7Cforbes.com"}}}, {"id": "27", "question": [{"language": "en", "string": "Which presidents were born in 1945?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/President> ; <http://dbpedia.org/ontology/birthDate> ?date FILTER regex(?date, \"^1945\") }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vladislav_Ardzinba"}}}, {"id": "28", "question": [{"language": "en", "string": "Who was the wife of President Lincoln?"}], "query": {"sparql": "PREFIX dbr: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT ?uri ?string WHERE { dbr:Abraham_Lincoln onto:spouse ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mary_Todd_Lincoln"}}}, {"id": "29", "question": [{"language": "en", "string": "Who developed the video game World of Warcraft?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:World_of_Warcraft dbo:developer ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Blizzard_Entertainment"}}}, {"id": "30", "question": [{"language": "en", "string": "Who produced the most films?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?film <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film> . ?film <http://dbpedia.org/ontology/producer> ?uri . } ORDER BY DESC(COUNT(?film)) OFFSET 0 LIMIT 1"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jesse_L._Lasky"}}}, {"id": "31", "question": [{"language": "en", "string": "Which mountains are higher than the Nanga Parbat?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Nanga_Parbat> <http://dbpedia.org/ontology/elevation> ?elevation . ?uri a <http://dbpedia.org/ontology/Mountain> { ?uri <http://dbpedia.org/ontology/elevation> ?otherelevation } UNION { ?uri <http://dbpedia.org/property/elevationM> ?otherelevation } FILTER ( ?otherelevation > ?elevation ) }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/1974_French_Mount_Everest_expedition"}}}, {"id": "32", "question": [{"language": "en", "string": "Give me all actors starring in Batman Begins."}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/>PREFIX res: <http://dbpedia.org/resource/>PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>SELECT DISTINCT ?uri ?string WHERE {\tres:Batman_Begins dbo:starring ?uri .\tOPTIONAL { ?uri rdfs:label ?string . FILTER (lang(?string) = 'en') } }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gary_Oldman"}, "string": {"type": "literal", "xml:lang": "en", "value": "Gary Oldman"}}}, {"id": "33", "question": [{"language": "en", "string": "Give me the websites of companies with more than 500000 employees."}], "query": {"sparql": "PREFIX foaf: <http://xmlns.com/foaf/0.1/> PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> SELECT distinct ?web WHERE { ?sub dbo:numberOfEmployees ?obj . ?sub foaf:homepage ?web FILTER( xsd:integer(?obj) > 500000 ) . }"}, "answers": {"web": {"type": "uri", "value": "https://www.aus.com/"}}}, {"id": "34", "question": [{"language": "en", "string": "Which actors were born in Germany?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Actor> { ?uri <http://dbpedia.org/ontology/birthPlace> <http://dbpedia.org/resource/Germany> } UNION { ?uri <http://dbpedia.org/ontology/birthPlace> ?place . ?place <http://dbpedia.org/ontology/country> <http://dbpedia.org/resource/Germany> } }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Friederike_Caroline_Neuber"}}}, {"id": "35", "question": [{"language": "en", "string": "Who was Tom Hanks married to?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> SELECT DISTINCT ?uri WHERE { dbr:Tom_Hanks dbo:spouse ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rita_Wilson"}}}, {"id": "36", "question": [{"language": "en", "string": "Which people were born in Heraklion?"}], "query": {"sparql": "PREFIX yago: <http://dbpedia.org/class/yago/> PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Person ; onto:birthPlace <http://dbpedia.org/resource/Heraklion>. }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Anastasios_Triantafyllou"}}}, {"id": "37", "question": [{"language": "en", "string": "Which caves have more than 3 entrances?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Cave> ; <http://dbpedia.org/property/entranceCount> ?entrance FILTER ( ?entrance > 3 ) }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Amat\u00e9rsk\u00e1_Cave"}}}, {"id": "38", "question": [{"language": "en", "string": "Give me all films produced by Hal Roach."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Film> ; <http://dbpedia.org/ontology/producer> <http://dbpedia.org/resource/Hal_Roach> }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/All_Aboard_(1917_film)"}}}, {"id": "39", "question": [{"language": "en", "string": "Which software has been published by Mean Hamster Software?"}], "query": {"sparql": "PREFIX res: <http://dbpedia.org/resource/> PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { ?uri rdf:type onto:Software { ?uri prop:publisher \"Mean Hamster Software\"@en } UNION { ?uri onto:publisher res:Mean_Hamster_Software } }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Riven"}}}, {"id": "40", "question": [{"language": "en", "string": "Who owns Aldi?"}], "query": {"sparql": "PREFIX res: <http://dbpedia.org/resource/> PREFIX dbp: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Aldi dbp:founders ?uri }"}, "answers": {"uri": {"type": "literal", "xml:lang": "en", "value": "Karl and Theo Albrecht"}}}, {"id": "41", "question": [{"language": "en", "string": "Which music albums contain the song Last Christmas?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?single <http://dbpedia.org/ontology/album> ?uri ; <http://www.w3.org/2000/01/rdf-schema#label> \"Last Christmas\"@en }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Music_from_the_Edge_of_Heaven"}}}, {"id": "42", "question": [{"language": "en", "string": "Which books were written by Danielle Steel?"}], "query": {"sparql": "PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX foaf: <http://xmlns.com/foaf/0.1/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT ?uri WHERE { ?uri rdf:type onto:Book ; onto:author <http://dbpedia.org/resource/Danielle_Steel> }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Amazing_Grace_(novel)"}}}, {"id": "43", "question": [{"language": "en", "string": "Which country has the most official languages?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Country> . ?uri <http://dbpedia.org/property/officialLanguages> ?language . } ORDER BY DESC(COUNT(?language)) OFFSET 0 LIMIT 1"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/South_Africa"}}}, {"id": "44", "question": [{"language": "en", "string": "In which programming language is GIMP written?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:GIMP dbo:programmingLanguage ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/C_(programming_language)"}}}, {"id": "45", "question": [{"language": "en", "string": "Who produced films starring Natalie Portman?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?film a <http://dbpedia.org/ontology/Film> ; <http://dbpedia.org/ontology/starring> <http://dbpedia.org/resource/Natalie_Portman> ; <http://dbpedia.org/ontology/producer> ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Wachowskis"}}}, {"id": "46", "question": [{"language": "en", "string": "In which films did Julia Roberts as well as Richard Gere play?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Film ; dbo:starring res:Julia_Roberts ; dbo:starring res:Richard_Gere }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pretty_Woman"}}}, {"id": "47", "question": [{"language": "en", "string": "Who wrote the book The pillars of the Earth?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> SELECT DISTINCT ?uri WHERE { res:The_Pillars_of_the_Earth dbo:author ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ken_Follett"}}}, {"id": "48", "question": [{"language": "en", "string": "How many films did Leonardo DiCaprio star in?"}], "query": {"sparql": "SELECT (COUNT(DISTINCT ?uri) AS ?c) WHERE { ?uri a <http://dbpedia.org/ontology/Film> ; <http://dbpedia.org/ontology/starring> <http://dbpedia.org/resource/Leonardo_DiCaprio> }"}, "answers": {"c": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "33"}}}, {"id": "49", "question": [{"language": "en", "string": "Give me all soccer clubs in the Premier League."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/SoccerClub> ; <http://dbpedia.org/ontology/league> <http://dbpedia.org/resource/Premier_League> }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/2010\u201311_Tottenham_Hotspur_F.C._season"}}}, {"id": "50", "question": [{"language": "en", "string": "When was Capcom founded?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/>PREFIX res: <http://dbpedia.org/resource/>SELECT DISTINCT ?date WHERE { res:Capcom dbo:foundingDate ?date .}"}, "answers": {"date": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#date", "value": "1979-05-30"}}}, {"id": "51", "question": [{"language": "en", "string": "Which organizations were founded in 1950?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbp: <http://dbpedia.org/property/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> 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\") }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Danish_Defence_Intelligence_Service"}}}, {"id": "52", "question": [{"language": "en", "string": "What is the highest mountain?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Mountain> ; <http://dbpedia.org/ontology/elevation> ?elevation } ORDER BY DESC(?elevation) OFFSET 0 LIMIT 1"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pico_Alto"}}}, {"id": "53", "question": [{"language": "en", "string": "Which German cities have more than 250000 inhabitants?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { { ?uri a <http://dbpedia.org/ontology/City> } UNION { ?uri a <http://dbpedia.org/ontology/Town> } ?uri <http://dbpedia.org/ontology/country> <http://dbpedia.org/resource/Germany> ; <http://dbpedia.org/ontology/populationTotal> ?population FILTER ( ?population > 250000 ) }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Berlin"}}}, {"id": "54", "question": [{"language": "en", "string": "What is the second highest mountain on Earth?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Mountain> ; <http://dbpedia.org/ontology/elevation> ?elevation } ORDER BY DESC(?elevation) OFFSET 1 LIMIT 1"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alpide_belt"}}}, {"id": "55", "question": [{"language": "en", "string": "When was Alberta admitted as province?"}], "query": {"sparql": "SELECT DISTINCT ?date WHERE { <http://dbpedia.org/resource/Alberta> <http://dbpedia.org/property/admittancedate> ?date }"}, "answers": {"date": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#date", "value": "1905-09-01"}}}, {"id": "56", "question": [{"language": "en", "string": "To which countries does the Himalayan mountain system extend?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Himalayas> <http://dbpedia.org/ontology/country> ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kashmir"}}}, {"id": "57", "question": [{"language": "en", "string": "Give me a list of all trumpet players that were bandleaders."}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { ?uri dbo:occupation res:Bandleader ; dbo:instrument res:Trumpet }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Danny_Davis_(country_musician)"}}}, {"id": "58", "question": [{"language": "en", "string": "What is the total amount of men and women serving in the FDNY?"}], "query": {"sparql": "SELECT DISTINCT ?num WHERE { <http://dbpedia.org/resource/New_York_City_Fire_Department> <http://dbpedia.org/property/employees> ?num }"}, "answers": {"num": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "17321"}}}, {"id": "59", "question": [{"language": "en", "string": "Who is the Formula 1 race driver with the most races?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:FormulaOneRacer ; dbo:races ?x } ORDER BY DESC(?x) OFFSET 0 LIMIT 1"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jenson_Button"}}}, {"id": "60", "question": [{"language": "en", "string": "Give me all world heritage sites designated within the past five years."}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/>PREFIX dbp: <http://dbpedia.org/property/>PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>SELECT DISTINCT ?uri WHERE {\t?uri rdf:type dbo:WorldHeritageSite .\t?uri dbp:year ?x .\tFILTER ( ?x >= \"2008\"^^xsd:integer)}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Amami-\u014cshima_Island,_Tokunoshima_Island,_northern_part_of_Okinawa_Island,_and_Iriomote_Island"}}}, {"id": "61", "question": [{"language": "en", "string": "Who is the youngest player in the Premier League?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { ?uri dbo:team ?team . ?league dbo:league res:Premier_League . ?league dbo:team ?team . ?uri dbo:birthDate ?date } ORDER BY DESC(?date) LIMIT 1"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ben_Doak"}}}, {"id": "62", "question": [{"language": "en", "string": "Give me all members of Prodigy."}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:The_Prodigy dbo:bandMember ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Maxim_(musician)"}}}, {"id": "63", "question": [{"language": "en", "string": "What is the longest river?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/River> { ?uri <http://dbpedia.org/ontology/length> ?l } UNION { ?uri <http://dbpedia.org/property/length> ?l } } ORDER BY DESC(?l) OFFSET 0 LIMIT 1"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Indian_Ocean"}}}, {"id": "64", "question": [{"language": "en", "string": "Give me all cars that are produced in Germany."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Automobile> { ?uri <http://dbpedia.org/ontology/assembly> <http://dbpedia.org/resource/Germany> } UNION { ?uri <http://dbpedia.org/property/assembly> <http://dbpedia.org/resource/Germany> } UNION { { ?uri <http://dbpedia.org/ontology/manufacturer> ?x } UNION { ?uri <http://dbpedia.org/property/manufacturer> ?x } { ?x <http://dbpedia.org/ontology/locationCountry> <http://dbpedia.org/resource/Germany> } UNION { ?x <http://dbpedia.org/ontology/location> <http://dbpedia.org/resource/Germany> } } }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Wanderer_W24"}}}, {"id": "65", "question": [{"language": "en", "string": "Give me all people that were born in Vienna and died in Berlin."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/birthPlace> <http://dbpedia.org/resource/Vienna> ; <http://dbpedia.org/ontology/deathPlace> <http://dbpedia.org/resource/Berlin> }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hans_Fidesser"}}}, {"id": "66", "question": [{"language": "en", "string": "How tall is Michael Jordan?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?num WHERE { res:Michael_Jordan dbo:height ?num }"}, "answers": {"num": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#double", "value": "1.9812"}}}, {"id": "67", "question": [{"language": "en", "string": "What is the capital of Canada?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Canada dbo:capital ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ottawa"}}}, {"id": "68", "question": [{"language": "en", "string": "Who is the governor of Texas?"}], "query": {"sparql": "PREFIX res: <http://dbpedia.org/resource/> PREFIX dbp: <http://dbpedia.org/property/> SELECT DISTINCT ?string WHERE { res:Texas dbp:governor ?string }"}, "answers": {"string": {"type": "uri", "value": "http://dbpedia.org/resource/Greg_Abbott"}}}, {"id": "69", "question": [{"language": "en", "string": "Which U.S. state has been admitted latest?"}], "query": {"sparql": "PREFIX dbc: <http://dbpedia.org/resource/Category:> PREFIX dct: <http://purl.org/dc/terms/> SELECT DISTINCT ?uri WHERE { ?uri dct:subject dbc:States_of_the_United_States ; <http://dbpedia.org/property/admittancedate> ?x } ORDER BY DESC(?x) LIMIT 1"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hawaii"}}}, {"id": "70", "question": [{"language": "en", "string": "How many official languages are spoken on the Seychelles?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/>PREFIX res: <http://dbpedia.org/resource/>SELECT COUNT(DISTINCT ?x) WHERE {        res:Seychelles dbo:officialLanguage ?x .}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "3"}}}, {"id": "71", "question": [{"language": "en", "string": "Give me all movies directed by Francis Ford Coppola."}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Film ; dbo:director res:Francis_Ford_Coppola }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dementia_13"}}}, {"id": "72", "question": [{"language": "en", "string": "Give me all actors starring in movies directed by and starring William Shatner."}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX dbp: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { ?x dbo:director res:William_Shatner ; dbo:starring res:William_Shatner { ?x dbo:starring ?uri } UNION { ?x dbp:starring ?uri } }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/DeForest_Kelley"}}}, {"id": "73", "question": [{"language": "en", "string": "What is the birth name of Angela Merkel?"}], "query": {"sparql": "SELECT DISTINCT ?string WHERE { <http://dbpedia.org/resource/Angela_Merkel> <http://dbpedia.org/property/birthName> ?string }"}, "answers": {"string": {"type": "literal", "xml:lang": "en", "value": "Angela Dorothea Kasner"}}}, {"id": "74", "question": [{"language": "en", "string": "How often did Nicole Kidman marry?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/>PREFIX res: <http://dbpedia.org/resource/>SELECT COUNT(DISTINCT ?x) WHERE {               res:Nicole_Kidman dbo:spouse ?x .}"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "2"}}}, {"id": "75", "question": [{"language": "en", "string": "Give me all Australian nonprofit organizations."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/type> <http://dbpedia.org/resource/Nonprofit_organization> { ?uri <http://dbpedia.org/ontology/locationCountry> <http://dbpedia.org/resource/Australia> } UNION { ?uri <http://dbpedia.org/ontology/location> ?x . ?x <http://dbpedia.org/ontology/country> <http://dbpedia.org/resource/Australia> } }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/YourView"}}}, {"id": "76", "question": [{"language": "en", "string": "In which military conflicts did Lawrence of Arabia participate?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:T._E._Lawrence dbo:battle ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Battle_of_Megiddo_(1918)"}}}, {"id": "77", "question": [{"language": "en", "string": "Who developed Skype?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> SELECT DISTINCT ?uri WHERE { res:Skype dbo:developer ?uri. }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Skype_Technologies"}}}, {"id": "78", "question": [{"language": "en", "string": "Give me all companies in Munich."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Company> { ?uri <http://dbpedia.org/ontology/location> <http://dbpedia.org/resource/Munich> } UNION { ?uri <http://dbpedia.org/ontology/headquarter> <http://dbpedia.org/resource/Munich> } UNION { ?uri <http://dbpedia.org/ontology/locationCity> <http://dbpedia.org/resource/Munich> } }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Allianz"}}}, {"id": "79", "question": [{"language": "en", "string": "List all boardgames by GMT."}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> SELECT ?uri WHERE { ?uri dbo:publisher res:GMT_Games }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Fields_of_Fire_(game)"}}}, {"id": "80", "question": [{"language": "en", "string": "Give me all breeds of the German Shepherd dog."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/breed> <http://dbpedia.org/resource/German_Shepherd> }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mancs_(dog)"}}}, {"id": "81", "question": [{"language": "en", "string": "Give me all Frisian islands that belong to the Netherlands."}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX yago: <http://dbpedia.org/class/yago/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type yago:WikicatFrisianIslands ; dbo:country res:Netherlands }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Frisian_Islands"}}}, {"id": "82", "question": [{"language": "en", "string": "What are the nicknames of San Francisco?"}], "query": {"sparql": "PREFIX res: <http://dbpedia.org/resource/> PREFIX dbp: <http://dbpedia.org/property/> PREFIX foaf:<http://xmlns.com/foaf/0.1/> SELECT DISTINCT ?string WHERE { res:San_Francisco foaf:nick ?string }"}, "answers": {"string": {"type": "literal", "xml:lang": "en", "value": "SeeList of nicknames for San Francisco"}}}, {"id": "83", "question": [{"language": "en", "string": "Give me the Apollo 14 astronauts."}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { ?uri dbo:mission res:Apollo_14 }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alan_Shepard"}}}, {"id": "84", "question": [{"language": "en", "string": "What is the time zone of Salt Lake City?"}], "query": {"sparql": "PREFIX res: <http://dbpedia.org/resource/> PREFIX dbp: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Salt_Lake_City <http://dbpedia.org/ontology/timeZone> ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mountain_Time_Zone"}}}, {"id": "85", "question": [{"language": "en", "string": "Which U.S. states are in the same timezone as Utah?"}], "query": {"sparql": "PREFIX yago: <http://dbpedia.org/class/yago/> PREFIX res: <http://dbpedia.org/resource/> PREFIX dbp: <http://dbpedia.org/property/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { res:Utah dbp:timezone ?x . ?uri rdf:type yago:WikicatStatesOfTheUnitedStates ; dbp:timezone ?x FILTER ( ?uri != res:Utah ) }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Montana"}}}, {"id": "86", "question": [{"language": "en", "string": "Give me a list of all lakes in Denmark."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { { ?uri a <http://dbpedia.org/ontology/Lake> ; <http://dbpedia.org/ontology/country> <http://dbpedia.org/resource/Denmark> } UNION { ?uri a <http://dbpedia.org/class/yago/LakesOfDenmark> } }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Fures\u00f8_(lake)"}}}, {"id": "87", "question": [{"language": "en", "string": "How many space missions have there been?"}], "query": {"sparql": " PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT COUNT(DISTINCT ?uri) WHERE {         ?uri rdf:type dbo:SpaceMission . } "}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "3433"}}}, {"id": "88", "question": [{"language": "en", "string": "Give me all Argentine films."}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX yago: <http://dbpedia.org/class/yago/> PREFIX res: <http://dbpedia.org/resource/> PREFIX dbp: <http://dbpedia.org/property/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> 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 } } }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/All\u00e1_en_el_Norte"}}}, {"id": "89", "question": [{"language": "en", "string": "Give me all launch pads operated by NASA."}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:LaunchPad ; dbo:operator res:NASA }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Wallops_Flight_Facility_Launch_Area_3"}}}, {"id": "90", "question": [{"language": "en", "string": "Which ships were called after Benjamin Franklin?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/shipNamesake> <http://dbpedia.org/resource/Benjamin_Franklin> }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ben_Franklin_(PX-15)"}}}, {"id": "91", "question": [{"language": "en", "string": "When was the Statue of Liberty built?"}], "query": {"sparql": "SELECT DISTINCT ?date WHERE { <http://dbpedia.org/resource/Statue_of_Liberty> <http://dbpedia.org/property/beginningDate> ?date }"}, "answers": {"date": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#date", "value": "1886-10-28"}}}, {"id": "92", "question": [{"language": "en", "string": "How many children did Benjamin Franklin have?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT (COUNT(DISTINCT ?uri) AS ?c) WHERE { res:Benjamin_Franklin dbo:child ?uri }"}, "answers": {"c": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "3"}}}, {"id": "93", "question": [{"language": "en", "string": "When did Michael Jackson die?"}], "query": {"sparql": "SELECT DISTINCT ?date WHERE { <http://dbpedia.org/resource/Michael_Jackson> <http://dbpedia.org/ontology/deathDate> ?date }"}, "answers": {"date": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#date", "value": "2009-06-25"}}}, {"id": "94", "question": [{"language": "en", "string": "List the children of Margaret Thatcher."}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Margaret_Thatcher dbo:child ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mark_Thatcher"}}}, {"id": "95", "question": [{"language": "en", "string": "Who was called Scarface?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> SELECT ?uri WHERE { ?uri dbo:alias ?alias FILTER contains(lcase(?alias), \"scarface\") }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/%22Scarface%22_John_Williams"}}}, {"id": "96", "question": [{"language": "en", "string": "Give me all books by William Goldman with more than 300 pages."}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Book ; dbo:author res:William_Goldman ; dbo:numberOfPages ?x FILTER ( ?x > 300 ) }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Boys_and_Girls_Together"}}}, {"id": "97", "question": [{"language": "en", "string": "Which books by Kerouac were published by Viking Press?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Book ; dbo:publisher res:Viking_Press ; dbo:author res:Jack_Kerouac }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Atop_an_Underwood"}}}, {"id": "98", "question": [{"language": "en", "string": "Who created the comic Captain America?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Captain_America dbo:creator ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jack_Kirby"}}}, {"id": "99", "question": [{"language": "en", "string": "How many people live in the capital of Australia?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?num WHERE { res:Australia dbo:capital ?x . ?x dbo:populationTotal ?num }"}, "answers": {"num": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#nonNegativeInteger", "value": "453558"}}}, {"id": "100", "question": [{"language": "en", "string": "What is the largest city in Australia?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Australia dbo:largestCity ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Sydney"}}}, {"id": "101", "question": [{"language": "en", "string": "Which films starring Clint Eastwood did he direct himself?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/director> <http://dbpedia.org/resource/Clint_Eastwood> ; <http://dbpedia.org/ontology/starring> <http://dbpedia.org/resource/Clint_Eastwood> }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dirty_Harry_(film_series)"}}}, {"id": "102", "question": [{"language": "en", "string": "Where is the residence of the prime minister of Spain?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Prime_Minister_of_Spain> <http://dbpedia.org/property/residence> ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Palacio_de_la_Moncloa"}}}, {"id": "103", "question": [{"language": "en", "string": "Show me all songs from Bruce Springsteen released between 1980 and 1990."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Song> . ?uri <http://dbpedia.org/ontology/artist> <http://dbpedia.org/resource/Bruce_Springsteen> . ?uri <http://dbpedia.org/ontology/releaseDate> ?date . FILTER (?date >= '1980-01-01'^^xsd:date && ?date <= '1990-12-31'^^xsd:date) }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Johnny_99_(song)"}}}, {"id": "104", "question": [{"language": "en", "string": "Who wrote the lyrics for the Polish national anthem?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {  <http://dbpedia.org/resource/Poland> <http://dbpedia.org/ontology/anthem> ?x .  ?x <http://dbpedia.org/property/author> ?uri . } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/J\u00f3zef_Wybicki"}}}, {"id": "105", "question": [{"language": "en", "string": "Who painted The Storm on the Sea of Galilee?"}], "query": {"sparql": "PREFIX res: <http://dbpedia.org/resource/> PREFIX dbp: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:The_Storm_on_the_Sea_of_Galilee dbo:author ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rembrandt"}}}, {"id": "106", "question": [{"language": "en", "string": "For which label did Elvis record his first album?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?x rdf:type dbo:Album ; dbo:artist res:Elvis_Presley ; dbo:releaseDate ?y ; dbo:recordLabel ?uri } ORDER BY ASC(?y) OFFSET 0 LIMIT 1"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/RCA_Records"}}}, {"id": "107", "question": [{"language": "en", "string": "Give me the birthdays of all actors of the television show Charmed."}], "query": {"sparql": "SELECT DISTINCT ?date WHERE { <http://dbpedia.org/resource/Charmed> <http://dbpedia.org/ontology/starring> ?actor . ?actor <http://dbpedia.org/ontology/birthDate> ?date }"}, "answers": {"date": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#date", "value": "1972-12-19"}}}, {"id": "108", "question": [{"language": "en", "string": "Which countries have places with more than two caves?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?cave rdf:type dbo:Cave ; dbo:location ?uri . ?uri rdf:type dbo:Country } GROUP BY ?uri HAVING ( COUNT(?cave) > 2 )"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Georgia_(country)"}}}, {"id": "109", "question": [{"language": "en", "string": "Give me the capitals of all countries in Africa."}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbc: <http://dbpedia.org/resource/Category:> PREFIX dct: <http://purl.org/dc/terms/> SELECT DISTINCT ?uri WHERE { ?country dct:subject dbc:Countries_in_Africa ; dbo:capital ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Buea"}}}, {"id": "110", "question": [{"language": "en", "string": "How many employees does IBM have?"}], "query": {"sparql": "SELECT DISTINCT ?number WHERE { <http://dbpedia.org/resource/IBM> <http://dbpedia.org/ontology/numberOfEmployees> ?number }"}, "answers": {"number": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#nonNegativeInteger", "value": "282100"}}}, {"id": "111", "question": [{"language": "en", "string": "Which states border Illinois?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Illinois> <http://dbpedia.org/property/borderingstates> ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kentucky"}}}, {"id": "112", "question": [{"language": "en", "string": "Which European countries have a constitutional monarchy?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dct: <http://purl.org/dc/terms/> PREFIX dbc: <http://dbpedia.org/resource/Category:> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?uri WHERE { ?uri dct:subject dbc:Countries_in_Europe ; dbo:governmentType dbr:Constitutional_monarchy }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Andorra"}}}, {"id": "113", "question": [{"language": "en", "string": "What is the highest mountain in Australia?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Mountain ; dbo:locatedInArea res:Australia ; dbo:elevation ?elevation } ORDER BY DESC(?elevation) LIMIT 1"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mawson_Peak"}}}, {"id": "114", "question": [{"language": "en", "string": "Give me all companies in the advertising industry."}], "query": {"sparql": "SELECT (COUNT(DISTINCT ?uri) AS ?c) WHERE { ?uri a <http://dbpedia.org/ontology/Company> { ?uri <http://dbpedia.org/ontology/industry> <http://dbpedia.org/resource/Advertising> } UNION { ?uri <http://dbpedia.org/ontology/industry> ?industry FILTER regex(?industry, \"advertising\", \"i\") } }"}, "answers": {"c": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "361"}}}, {"id": "115", "question": [{"language": "en", "string": "Who was the wife of U.S. president Lincoln?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Abraham_Lincoln dbo:spouse ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mary_Todd_Lincoln"}}}, {"id": "116", "question": [{"language": "en", "string": "Give me all video games published by Mean Hamster Software."}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:VideoGame ; dbo:publisher res:Mean_Hamster_Software }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Riven"}}}, {"id": "117", "question": [{"language": "en", "string": "Which languages are spoken in Estonia?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/spokenIn> <http://dbpedia.org/resource/Estonia> }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/V\u00f5ro_language"}}}, {"id": "118", "question": [{"language": "en", "string": "How many films did Hal Roach produce?"}], "query": {"sparql": "SELECT (COUNT(DISTINCT ?uri) AS ?c) WHERE { ?uri <http://dbpedia.org/ontology/producer> <http://dbpedia.org/resource/Hal_Roach> }"}, "answers": {"c": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "539"}}}, {"id": "119", "question": [{"language": "en", "string": "Give me all books written by Danielle Steel."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Book> ; <http://dbpedia.org/ontology/author> <http://dbpedia.org/resource/Danielle_Steel> }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Amazing_Grace_(novel)"}}}, {"id": "120", "question": [{"language": "en", "string": "Which airports are located in California, USA?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Airport> { ?uri <http://dbpedia.org/ontology/location> <http://dbpedia.org/resource/California> } UNION { ?uri <http://dbpedia.org/ontology/city> <http://dbpedia.org/resource/California> } UNION { ?uri <http://dbpedia.org/ontology/city> ?city . ?city <http://dbpedia.org/ontology/isPartOf> <http://dbpedia.org/resource/California> } UNION { ?uri <http://dbpedia.org/ontology/operator> <http://dbpedia.org/resource/California> } }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Amboy_Airfield"}}}, {"id": "121", "question": [{"language": "en", "string": "Give me all Canadian Grunge record labels."}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:RecordLabel ; dbo:genre res:Grunge ; dbo:country res:Canada }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Murderecords"}}}, {"id": "122", "question": [{"language": "en", "string": "Give me all movies with Tom Cruise."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Film> ; <http://dbpedia.org/ontology/starring> <http://dbpedia.org/resource/Tom_Cruise> }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/All_the_Right_Moves_(film)"}}}, {"id": "123", "question": [{"language": "en", "string": "Give me all female German chancellors."}], "query": {"sparql": "PREFIX res: <http://dbpedia.org/resource/> PREFIX dbp: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Chancellor_of_Germany dbp:incumbent ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Olaf_Scholz"}}}, {"id": "124", "question": [{"language": "en", "string": "Who is the governor of Wyoming?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Wyoming> <http://dbpedia.org/property/governor> ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mark_Gordon"}}}, {"id": "125", "question": [{"language": "en", "string": "Who developed Minecraft?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Minecraft> <http://dbpedia.org/ontology/developer> ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mojang_Studios"}}}, {"id": "126", "question": [{"language": "en", "string": "List all games by GMT."}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { ?uri dbo:publisher res:GMT_Games }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Fields_of_Fire_(game)"}}}, {"id": "127", "question": [{"language": "en", "string": "In which U.S. state is Fort Knox located?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX dbp: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Fort_Knox dbo:location ?uri . ?uri dbo:country res:United_States }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kentucky"}}}, {"id": "128", "question": [{"language": "en", "string": "In which city did John F. Kennedy die?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { res:John_F._Kennedy dbo:deathPlace ?uri . ?uri rdf:type dbo:City }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dallas"}}}, {"id": "129", "question": [{"language": "en", "string": "Give me all actors starring in Last Action Hero."}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Last_Action_Hero dbo:starring ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Art_Carney"}}}, {"id": "130", "question": [{"language": "en", "string": "Who wrote the book Les Piliers de la terre?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:The_Pillars_of_the_Earth dbo:author ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ken_Follett"}}}, {"id": "131", "question": [{"language": "en", "string": "Give me all taikonauts."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { { ?uri a <http://dbpedia.org/ontology/Astronaut> ; <http://dbpedia.org/ontology/nationality> <http://dbpedia.org/resource/People's_Republic_of_China> } UNION { ?uri a <http://dbpedia.org/ontology/Astronaut> ; <http://dbpedia.org/ontology/nationality> <http://dbpedia.org/resource/China> } }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tang_Hongbo"}}}, {"id": "132", "question": [{"language": "en", "string": "How many languages are spoken in Colombia?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT (COUNT(DISTINCT ?uri) AS ?c) WHERE { ?uri rdf:type dbo:Language . res:Colombia dbo:language ?uri }"}, "answers": {"c": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "0"}}}, {"id": "133", "question": [{"language": "en", "string": "Which poet wrote the most books?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/occupation> <http://dbpedia.org/resource/Poet> . ?x <http://dbpedia.org/ontology/author> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Book> . } ORDER BY DESC(COUNT(?x)) OFFSET 0 LIMIT 1"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jules_Verne"}}}, {"id": "134", "question": [{"language": "en", "string": "How many programming languages are there?"}], "query": {"sparql": "SELECT (COUNT(DISTINCT ?uri) AS ?c) WHERE { ?uri a <http://dbpedia.org/ontology/ProgrammingLanguage> }"}, "answers": {"c": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "3328"}}}, {"id": "135", "question": [{"language": "en", "string": "Give me all Dutch parties."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/PoliticalParty> ; <http://dbpedia.org/ontology/country> <http://dbpedia.org/resource/Netherlands> }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Democratic_Political_Turning_Point"}}}, {"id": "136", "question": [{"language": "en", "string": "When was Carlo Giuliani shot?"}], "query": {"sparql": "PREFIX res: <http://dbpedia.org/resource/> PREFIX dbp: <http://dbpedia.org/property/> SELECT DISTINCT xsd:date(?date) WHERE { res:Death_of_Carlo_Giuliani dbo:deathDate ?date }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#date", "value": "2001-07-20"}}}, {"id": "137", "question": [{"language": "en", "string": "Which rivers flow into a German lake?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/River> . ?x <http://dbpedia.org/ontology/inflow> ?uri ; a <http://dbpedia.org/ontology/Lake> ; <http://dbpedia.org/ontology/country> <http://dbpedia.org/resource/Germany> }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alster"}}}, {"id": "138", "question": [{"language": "en", "string": "Who is the youngest Darts player?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:DartsPlayer ; dbo:birthDate ?date } ORDER BY DESC(?date) OFFSET 0 LIMIT 1"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Aurora_Fochesato"}}}, {"id": "139", "question": [{"language": "en", "string": "Give me all animals that are extinct."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Animal> ; <http://dbpedia.org/ontology/conservationStatus> \"EX\" }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Advena_campbelli"}}}, {"id": "140", "question": [{"language": "en", "string": "How many pages does War and Peace have?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?n WHERE { res:War_and_Peace dbo:numberOfPages ?n }"}, "answers": {"n": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#positiveInteger", "value": "1225"}}}, {"id": "141", "question": [{"language": "en", "string": "Which ingredients do I need for carrot cake?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Carrot_cake dbo:ingredient ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Carrot"}}}, {"id": "142", "question": [{"language": "en", "string": "What is the most frequent death cause?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/>SELECT DISTINCT ?xWHERE {        ?uri dbo:deathCause ?x . }ORDER BY DESC(COUNT(DISTINCT ?uri)) OFFSET 0 LIMIT 1"}, "answers": {}}, {"id": "143", "question": [{"language": "en", "string": "Who has Tom Cruise been married to?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/spouse> <http://dbpedia.org/resource/Tom_Cruise> }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Katie_Holmes"}}}, {"id": "144", "question": [{"language": "en", "string": "What is the bridge with the longest span?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Bridge ; dbo:mainspan ?s } ORDER BY DESC(?s) OFFSET 0 LIMIT 1"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/C\u1ea7n_Gi\u1edd_Bridge"}}}, {"id": "145", "question": [{"language": "en", "string": "Give me all films produced by Steven Spielberg with a budget of at least $80 million."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film> . ?uri <http://dbpedia.org/ontology/director> <http://dbpedia.org/resource/Steven_Spielberg> . ?uri <http://dbpedia.org/ontology/budget> ?b . FILTER( xsd:double(?b) >= 8.0E7 ) }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/War_of_the_Worlds_(2005_film)"}}}, {"id": "146", "question": [{"language": "en", "string": "Which actor was casted in the most movies?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Actor> . ?f <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Film> . ?f <http://dbpedia.org/ontology/starring> ?uri . } ORDER BY DESC(COUNT(DISTINCT(?f))) OFFSET 0 LIMIT 1"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Amitabh_Bachchan"}}}, {"id": "147", "question": [{"language": "en", "string": "Where was Bach born?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Johann_Sebastian_Bach dbo:birthPlace ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Eisenach"}}}, {"id": "148", "question": [{"language": "en", "string": "Which of Tim Burton's films had the highest budget?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { ?uri dbo:director res:Tim_Burton ; dbo:budget ?b } ORDER BY ?b OFFSET 0 LIMIT 1"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Big_Eyes"}}}, {"id": "149", "question": [{"language": "en", "string": "Who are the four youngest MVP basketball players?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/BasketballPlayer> ; <http://dbpedia.org/ontology/birthDate> ?date ; <http://dbpedia.org/property/highlights> ?h FILTER regex(?h, \"MVP\") } ORDER BY DESC(?date) OFFSET 0 LIMIT 4"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Robert_Dillingham"}}}, {"id": "150", "question": [{"language": "en", "string": "What are the top-10 action role-playing video games according to IGN?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://purl.org/dc/terms/subject> <http://dbpedia.org/resource/Category:Action_role-playing_video_games> ; <http://dbpedia.org/property/ign> ?score } ORDER BY DESC(?score) LIMIT 10"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Battleheart_Legacy"}}}, {"id": "151", "question": [{"language": "en", "string": "Give me all actors who were born in Berlin."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Actor> ; <http://dbpedia.org/ontology/birthPlace> <http://dbpedia.org/resource/Berlin> }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Walter_Bluhm"}}}, {"id": "152", "question": [{"language": "en", "string": "Give me all actors who were born in Paris after 1950."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Actor> . ?uri <http://dbpedia.org/ontology/birthPlace> <http://dbpedia.org/resource/Paris> . ?uri <http://dbpedia.org/ontology/birthDate> ?date . FILTER ( ?date >= xsd:dateTime('1950-12-31T00:00:00Z')) }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Fran\u00e7ois_Hadji-Lazaro"}}}, {"id": "153", "question": [{"language": "en", "string": "What was Brazil's lowest rank in the FIFA World Ranking?"}], "query": {"sparql": "SELECT DISTINCT ?n WHERE { <http://dbpedia.org/resource/Brazil_national_football_team> <http://dbpedia.org/property/fifaMin> ?n }"}, "answers": {"n": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "22"}}}, {"id": "154", "question": [{"language": "en", "string": "Give me all Australian metalcore bands."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Band> ; <http://dbpedia.org/ontology/genre> <http://dbpedia.org/resource/Metalcore> { ?uri <http://dbpedia.org/ontology/hometown> <http://dbpedia.org/resource/Australia> } UNION { ?uri <http://dbpedia.org/ontology/hometown> ?h . ?h <http://dbpedia.org/ontology/country> <http://dbpedia.org/resource/Australia> } }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dream_On,_Dreamer"}}}, {"id": "155", "question": [{"language": "en", "string": "When is Halloween?"}], "query": {"sparql": "SELECT DISTINCT ?date WHERE {  <http://dbpedia.org/resource/Halloween> <http://dbpedia.org/property/date> ?date . } "}, "answers": {"date": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#gMonthDay", "value": "--10-31"}}}, {"id": "156", "question": [{"language": "en", "string": "How many inhabitants does the largest city in Canada have?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?num WHERE { res:Canada dbo:largestCity ?city . ?city dbo:populationTotal ?num }"}, "answers": {"num": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#nonNegativeInteger", "value": "2794356"}}}, {"id": "157", "question": [{"language": "en", "string": "In which countries can you pay using the West African CFA franc?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/currency> <http://dbpedia.org/resource/West_African_CFA_franc> }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Benin"}}}, {"id": "158", "question": [{"language": "en", "string": "Give me the capitals of all countries that the Himalayas run through."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Himalayas> <http://dbpedia.org/ontology/country> ?country . ?country <http://dbpedia.org/ontology/capital> ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/New_Delhi"}}}, {"id": "159", "question": [{"language": "en", "string": "Who was the first to climb Mount Everest?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Mount_Everest dbo:firstAscentPerson ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Tenzing_Norgay"}}}, {"id": "160", "question": [{"language": "en", "string": "To which artistic movement did the painter of The Three Dancers belong?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:The_Three_Dancers dbo:author ?person . ?person dbo:movement ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cubism"}}}, {"id": "161", "question": [{"language": "en", "string": "Which pope succeeded John Paul II?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Pope_John_Paul_II> <http://dbpedia.org/property/successor> ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pope_Benedict_XVI"}}}, {"id": "162", "question": [{"language": "en", "string": "What was the last movie with Alec Guinness?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Film ; dbo:starring res:Alec_Guinness ; dbo:releaseDate ?date } ORDER BY DESC(?date) LIMIT 1"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Star_Wars_original_trilogy"}}}, {"id": "163", "question": [{"language": "en", "string": "How many James Bond movies are there?"}], "query": {"sparql": "SELECT (COUNT(DISTINCT ?uri) as ?c) WHERE {  ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/class/yago/JamesBondFilms> . } "}, "answers": {"c": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "0"}}}, {"id": "164", "question": [{"language": "en", "string": "Which actor played Chewbacca?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Chewbacca> <http://dbpedia.org/ontology/portrayer> ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Joonas_Suotamo"}}}, {"id": "165", "question": [{"language": "en", "string": "Give me the grandchildren of Bruce Lee."}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Bruce_Lee dbo:child ?child . ?child <http://dbpedia.org/property/children> ?uri }"}, "answers": {"uri": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "1"}}}, {"id": "166", "question": [{"language": "en", "string": "Give me all writers that won the Nobel Prize in literature."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Writer> ; <http://dbpedia.org/ontology/award> <http://dbpedia.org/resource/Nobel_Prize_in_Literature> }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Aleksandr_Solzhenitsyn"}}}, {"id": "167", "question": [{"language": "en", "string": "What is the official color of the University of Oxford?"}], "query": {"sparql": "SELECT DISTINCT ?string WHERE { <http://dbpedia.org/resource/University_of_Oxford> <http://dbpedia.org/ontology/officialSchoolColour> ?string }"}, "answers": {"string": {"type": "literal", "value": ""}}}, {"id": "168", "question": [{"language": "en", "string": "How deep is Lake Placid?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> SELECT DISTINCT ?n WHERE { <http://dbpedia.org/resource/Lake_Placid_(Texas)> dbo:maximumDepth ?n }"}, "answers": {"n": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#double", "value": "12.192"}}}, {"id": "169", "question": [{"language": "en", "string": "Which spaceflights were launched from Baikonur?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/launchPad> res:Baikonur_Cosmodrome }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Salyut_1"}}}, {"id": "170", "question": [{"language": "en", "string": "Give me all cosmonauts."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Astronaut> { ?uri <http://dbpedia.org/ontology/nationality> <http://dbpedia.org/resource/Russia> } UNION { ?uri <http://dbpedia.org/ontology/nationality> <http://dbpedia.org/resource/Soviet_Union> } }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Valery_Kubasov"}}}, {"id": "171", "question": [{"language": "en", "string": "Give me a list of all bandleaders that play trumpet."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/occupation> <http://dbpedia.org/resource/Bandleader> ; <http://dbpedia.org/ontology/instrument> <http://dbpedia.org/resource/Trumpet> }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Danny_Davis_(country_musician)"}}}, {"id": "172", "question": [{"language": "en", "string": "Which countries have more than ten caves?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Country> . ?cave a <http://dbpedia.org/ontology/Cave> { ?cave <http://dbpedia.org/ontology/location> ?uri } UNION { ?cave <http://dbpedia.org/ontology/location> ?loc . ?loc <http://dbpedia.org/ontology/country> ?uri } } GROUP BY ?uri HAVING ( COUNT(?cave) > 10 )"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jamaica"}}}, {"id": "173", "question": [{"language": "en", "string": "Give me all world heritage sites designated within the past two years."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/WorldHeritageSite> . { ?uri <http://dbpedia.org/property/year> '2013'^^xsd:integer . } UNION { ?uri <http://dbpedia.org/property/year> '2014'^^xsd:integer . } }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Descent_of_the_Holy_Spirit_Church"}}}, {"id": "174", "question": [{"language": "en", "string": "How many languages are spoken in Turkmenistan?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT (COUNT(DISTINCT ?x) AS ?c) WHERE { res:Turkmenistan dbo:language ?x }"}, "answers": {"c": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "0"}}}, {"id": "175", "question": [{"language": "en", "string": "Give me all actors starring in movies directed by William Shatner."}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { ?x dbo:director res:William_Shatner ; dbo:starring ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/DeForest_Kelley"}}}, {"id": "176", "question": [{"language": "en", "string": "Give me all Methodist politicians."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Politician> ; <http://dbpedia.org/ontology/religion> <http://dbpedia.org/resource/Methodism> }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bourke_B._Hickenlooper"}}}, {"id": "177", "question": [{"language": "en", "string": "How often did Jane Fonda marry?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT (COUNT(DISTINCT ?uri) AS ?c) WHERE { res:Jane_Fonda dbo:spouse ?uri }"}, "answers": {"c": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "3"}}}, {"id": "178", "question": [{"language": "en", "string": "Give me all islands that belong to Japan."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Island> ; <http://dbpedia.org/ontology/country> <http://dbpedia.org/resource/Japan> }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Amami_Islands"}}}, {"id": "179", "question": [{"language": "en", "string": "Give me all Apollo 14 astronauts."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/mission> <http://dbpedia.org/resource/Apollo_14> }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alan_Shepard"}}}, {"id": "180", "question": [{"language": "en", "string": "Which U.S. states are in the same time zone as Utah?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Utah> <http://dbpedia.org/property/timezone> ?x . ?uri a <http://dbpedia.org/class/yago/WikicatStatesOfTheUnitedStates> ; <http://dbpedia.org/property/timezone> ?x FILTER ( ?uri != <http://dbpedia.org/resource/Utah> ) }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Montana"}}}, {"id": "181", "question": [{"language": "en", "string": "Give me all Danish films."}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Film ; dbo:country res:Denmark }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/De_Udstillede"}}}, {"id": "182", "question": [{"language": "en", "string": "Which Chess players died in the same place they were born in?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/ChessPlayer> ; <http://dbpedia.org/ontology/birthPlace> ?x ; <http://dbpedia.org/ontology/deathPlace> ?y FILTER ( ?x = ?y ) }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bertus_Enklaar"}}}, {"id": "183", "question": [{"language": "en", "string": "Which countries adopted the Euro?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Country> { ?uri <http://dbpedia.org/ontology/currency> <http://dbpedia.org/resource/Euro> } UNION { ?uri <http://dbpedia.org/property/currencyCode> \"EUR\"@en } }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Andorra"}}}, {"id": "184", "question": [{"language": "en", "string": "What is the official language of Suriname?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Suriname dbo:officialLanguage ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Surinamese_Dutch"}}}, {"id": "185", "question": [{"language": "en", "string": "What is the highest place of the Urals?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Ural_Mountains> <http://dbpedia.org/property/highest> ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mount_Narodnaya"}}}, {"id": "186", "question": [{"language": "en", "string": "How many countries are there in Europe?"}], "query": {"sparql": "SELECT (COUNT(DISTINCT ?uri) as ?c) WHERE {  ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/class/yago/EuropeanCountries> . } "}, "answers": {"c": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "0"}}}, {"id": "187", "question": [{"language": "en", "string": "Give me all libraries established earlier than 1400."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Library> ; <http://dbpedia.org/property/established> ?year FILTER ( ?year < 1400 ) }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Library_of_Pergamum"}}}, {"id": "188", "question": [{"language": "en", "string": "Give me all federal chancellors of Germany."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Person> { ?uri <http://dbpedia.org/ontology/office> \"Chancellor of Germany\" } UNION { ?uri <http://dbpedia.org/property/office> <http://dbpedia.org/resource/Chancellor_of_Germany> } }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Franz_von_Papen"}}}, {"id": "189", "question": [{"language": "en", "string": "How many Aldi stores are there?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?number WHERE { res:Aldi dbo:numberOfLocations ?number }"}, "answers": {"number": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#nonNegativeInteger", "value": "11235"}}}, {"id": "190", "question": [{"language": "en", "string": "Give me all female given names."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {  ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/GivenName> .  ?uri <http://dbpedia.org/ontology/gender> <http://dbpedia.org/resource/Female> . } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Amy"}}}, {"id": "191", "question": [{"language": "en", "string": "Who wrote the book The Pillars of the Earth?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:The_Pillars_of_the_Earth dbo:author ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ken_Follett"}}}, {"id": "192", "question": [{"language": "en", "string": "In which U.S. state is Mount McKinley located?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Mount_McKinley> dbo:wikiPageRedirects ?x . ?x <http://dbpedia.org/ontology/locatedInArea> ?uri. ?uri rdf:type yago:WikicatStatesOfTheUnitedStates }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alaska"}}}, {"id": "193", "question": [{"language": "en", "string": "Which organizations were founded in 1930?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Organisation> { ?uri <http://dbpedia.org/ontology/formationYear> ?date } UNION { ?uri <http://dbpedia.org/ontology/foundingYear> ?date } FILTER regex(?date, \"^1930\") }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/American_Popular_Revolutionary_Alliance"}}}, {"id": "194", "question": [{"language": "en", "string": "Give me all ESA astronauts."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Astronaut> ; <http://dbpedia.org/property/type> <http://dbpedia.org/resource/European_Space_Agency> }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dirk_Frimout"}}}, {"id": "195", "question": [{"language": "en", "string": "Give me all Swedish holidays."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Holiday> ; <http://dbpedia.org/ontology/country> <http://dbpedia.org/resource/Sweden> }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Saint_Knut's_Day"}}}, {"id": "196", "question": [{"language": "en", "string": "Who is the youngest Pulitzer Prize winner?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {  ?uri <http://dbpedia.org/ontology/award> <http://dbpedia.org/resource/Pulitzer_Prize> .  ?uri <http://dbpedia.org/ontology/birthDate> ?d . } ORDER BY DESC(?d) OFFSET 0 LIMIT 1 "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mohammad_Ponir_Hossain"}}}, {"id": "197", "question": [{"language": "en", "string": "Which animals are critically endangered?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Animal> ; <http://dbpedia.org/ontology/conservationStatus> \"CR\" }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Africallagma_cuneistigma"}}}, {"id": "198", "question": [{"language": "en", "string": "Which soccer players were born on Malta?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/SoccerPlayer> ; <http://dbpedia.org/ontology/birthPlace> <http://dbpedia.org/resource/Malta> }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Andrei_Agius"}}}, {"id": "199", "question": [{"language": "en", "string": "Which programming languages were influenced by Perl?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/ProgrammingLanguage> { ?uri <http://dbpedia.org/ontology/influencedBy> <http://dbpedia.org/resource/Perl> } UNION { <http://dbpedia.org/resource/Perl> <http://dbpedia.org/ontology/influenced> ?uri } }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/BeanShell"}}}, {"id": "200", "question": [{"language": "en", "string": "How many children does Eddie Murphy have?"}], "query": {"sparql": "SELECT DISTINCT ?n WHERE { <http://dbpedia.org/resource/Eddie_Murphy> <http://dbpedia.org/property/children> ?n }"}, "answers": {"n": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "10"}}}, {"id": "201", "question": [{"language": "en", "string": "Which frequent flyer program has the most airlines?"}], "query": {"sparql": "SELECT ?uri WHERE { ?airline <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Airline> . ?airline <http://dbpedia.org/property/frequentFlyer> ?uri. } GROUP BY ?uri ORDER BY DESC(COUNT(DISTINCT ?airline)) OFFSET 0 LIMIT 1"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Miles_&_More"}}}, {"id": "202", "question": [{"language": "en", "string": "In which city is Air China headquartered?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE {  <http://dbpedia.org/resource/Air_China> <http://dbpedia.org/ontology/headquarter> ?uri .  ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/class/yago/City108524735> . } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Beijing"}}}, {"id": "203", "question": [{"language": "en", "string": "Which artists were born on the same date as Rachel Stevens?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { ?uri a dbo:Artist . dbr:Rachel_Stevens dbo:birthDate ?birthdate . ?uri dbo:birthDate ?birthdate }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vesna_Pisarovi\u0107"}}}, {"id": "204", "question": [{"language": "en", "string": "How many scientists graduated from an Ivy League university?"}], "query": {"sparql": "SELECT (COUNT(DISTINCT ?uri) AS ?c) WHERE { ?uri a <http://dbpedia.org/ontology/Scientist> ; <http://dbpedia.org/ontology/almaMater> ?university . ?university <http://dbpedia.org/ontology/affiliation> <http://dbpedia.org/resource/Ivy_League> ; a <http://dbpedia.org/ontology/University> }"}, "answers": {"c": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "0"}}}, {"id": "205", "question": [{"language": "en", "string": "Which types of grapes grow in Oregon?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Oregon_wine dbo:growingGrape ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dolcetto"}}}, {"id": "206", "question": [{"language": "en", "string": "Who is starring in Spanish movies produced by Benicio del Toro?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?film rdf:type dbo:Film ; dbo:country res:Spain ; dbo:producer res:Benicio_del_Toro ; dbo:starring ?uri . ?uri rdf:type dbo:Person }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Benicio_del_Toro"}}}, {"id": "207", "question": [{"language": "en", "string": "Give me the currency of China."}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:China dbo:currency ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Renminbi"}}}, {"id": "208", "question": [{"language": "en", "string": "Which movies starring Brad Pitt were directed by Guy Ritchie?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Film ; dbo:starring res:Brad_Pitt ; dbo:director res:Guy_Ritchie }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Snatch_(film)__Snatch__1"}}}, {"id": "209", "question": [{"language": "en", "string": "How many companies were founded by the founder of Facebook?"}], "query": {"sparql": "SELECT (COUNT(DISTINCT ?x) AS ?c) WHERE { <http://dbpedia.org/resource/Facebook> <http://dbpedia.org/ontology/foundedBy> ?uri . ?x <http://dbpedia.org/ontology/foundedBy> ?uri }"}, "answers": {"c": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "0"}}}, {"id": "210", "question": [{"language": "en", "string": "How many companies were founded in the same year as Google?"}], "query": {"sparql": "SELECT (COUNT(DISTINCT ?uri) as ?c) WHERE {  ?uri <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Company> .  ?uri <http://dbpedia.org/ontology/foundingYear> ?year .  <http://dbpedia.org/resource/Google> <http://dbpedia.org/ontology/foundingYear> ?year . } "}, "answers": {"c": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "1343"}}}, {"id": "211", "question": [{"language": "en", "string": "How many airlines are members of the Star Alliance?"}], "query": {"sparql": "SELECT (COUNT(DISTINCT ?uri) AS ?c) WHERE { ?uri a <http://dbpedia.org/ontology/Airline> ; <http://dbpedia.org/ontology/alliance> <http://dbpedia.org/resource/Star_Alliance> }"}, "answers": {"c": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "107"}}}, {"id": "212", "question": [{"language": "en", "string": "Give me all spacecrafts that flew to Mars."}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbc: <http://dbpedia.org/resource/Category:> PREFIX dct: <http://purl.org/dc/terms/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?s WHERE { ?s dct:subject dbc:Mars_rovers ; rdf:type ?type FILTER ( ?type IN (dbo:Satellite, dbo:ArtificialSatellite) ) }"}, "answers": {"s": {"type": "uri", "value": "http://dbpedia.org/resource/Mars_2"}}}, {"id": "213", "question": [{"language": "en", "string": "Which musician wrote the most books?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/occupation> <http://dbpedia.org/resource/Musician> . ?x <http://dbpedia.org/ontology/author> ?uri . ?x <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Book> . } ORDER BY DESC(COUNT(?x)) OFFSET 0 LIMIT 1"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Julius_Lester"}}}, {"id": "214", "question": [{"language": "en", "string": "Show me everyone who was born on Halloween."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Person> { ?uri <http://dbpedia.org/ontology/birthDate> ?date } UNION { ?uri <http://dbpedia.org/property/birthDate> ?date } <http://dbpedia.org/resource/Halloween> <http://dbpedia.org/property/date> ?date }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mathias_Braschler_and_Monika_Fischer"}}}, {"id": "215", "question": [{"language": "en", "string": "Give me all Swiss non-profit organizations."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/type> <http://dbpedia.org/resource/Nonprofit_organization> { ?uri <http://dbpedia.org/ontology/location> <http://dbpedia.org/resource/Switzerland> } UNION { ?uri <http://dbpedia.org/ontology/location> ?x . ?x <http://dbpedia.org/ontology/country> <http://dbpedia.org/resource/Switzerland> } }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Aiducation"}}}, {"id": "216", "question": [{"language": "en", "string": "In which country is Mecca located?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Mecca dbo:country ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Saudi_Arabia"}}}, {"id": "217", "question": [{"language": "en", "string": "What is the net income of Apple?"}], "query": {"sparql": "SELECT DISTINCT ?ni WHERE { <http://dbpedia.org/resource/Apple_Inc.> <http://dbpedia.org/ontology/netIncome> ?ni }"}, "answers": {"ni": {"type": "typed-literal", "datatype": "http://dbpedia.org/datatype/usDollar", "value": "9.468E10"}}}, {"id": "218", "question": [{"language": "en", "string": "What does the abbreviation FIFA stand for?"}], "query": {"sparql": "SELECT DISTINCT ?name WHERE {  <http://dbpedia.org/resource/FIFA> <http://dbpedia.org/property/name> ?name . } "}, "answers": {"name": {"type": "literal", "xml:lang": "en", "value": "F\u00e9d\u00e9ration internationale de Football Association"}}}, {"id": "219", "question": [{"language": "en", "string": "Which museum in New York has the most visitors?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Museum ; dbo:location res:New_York_City ; dbo:numberOfVisitors ?num } ORDER BY DESC(?num) OFFSET 0 LIMIT 1"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/American_Museum_of_Natural_History"}}}, {"id": "220", "question": [{"language": "en", "string": "What is the highest mountain in Italy?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Mountain ; dbo:locatedInArea res:Italy ; dbo:elevation ?num } ORDER BY DESC(?num) OFFSET 0 LIMIT 1"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mont_Blanc"}}}, {"id": "221", "question": [{"language": "en", "string": "Where did the architect of the Eiffel Tower study?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Eiffel_Tower> <http://dbpedia.org/ontology/architect> ?x . ?x <http://dbpedia.org/property/almaMater> ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/\u00c9cole_Sp\u00e9ciale_d'Architecture"}}}, {"id": "222", "question": [{"language": "en", "string": "Which Greek parties are pro-European?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/PoliticalParty> ; <http://dbpedia.org/ontology/country> <http://dbpedia.org/resource/Greece> ; <http://dbpedia.org/ontology/ideology> <http://dbpedia.org/resource/Pro-Europeanism> }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Democratic_Alignment_(2015)"}}}, {"id": "223", "question": [{"language": "en", "string": "How high is the Yokohama Marine Tower?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?num WHERE { res:Yokohama_Marine_Tower dbo:height ?num }"}, "answers": {"num": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#double", "value": "106.07"}}}, {"id": "224", "question": [{"language": "en", "string": "How many ethnic groups live in Slovenia?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT (COUNT(DISTINCT ?uri) AS ?c) WHERE { res:Slovenia dbo:ethnicGroup ?uri }"}, "answers": {"c": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "7"}}}, {"id": "225", "question": [{"language": "en", "string": "List the seven kings of Rome."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/title> <http://dbpedia.org/resource/King_of_Rome> }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ancus_Marcius"}}}, {"id": "226", "question": [{"language": "en", "string": "Who were the parents of Queen Victoria?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Queen_Victoria dbo:parent ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Prince_Edward,_Duke_of_Kent_and_Strathearn"}}}, {"id": "227", "question": [{"language": "en", "string": "Who is the heaviest player of the Chicago Bulls?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Person> ; <http://dbpedia.org/ontology/weight> ?num { ?uri <http://dbpedia.org/property/team> <http://dbpedia.org/resource/Chicago_Bulls> } UNION { ?uri <http://dbpedia.org/property/draftTeam> <http://dbpedia.org/resource/Chicago_Bulls> } UNION { ?uri <http://dbpedia.org/ontology/draftTeam> <http://dbpedia.org/resource/Chicago_Bulls> } } ORDER BY DESC(?num) OFFSET 0 LIMIT 1"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Michael_Sweetney"}}}, {"id": "228", "question": [{"language": "en", "string": "Which volcanos in Japan erupted since 2000?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Volcano> ; <http://dbpedia.org/ontology/locatedInArea> <http://dbpedia.org/resource/Japan> ; <http://dbpedia.org/ontology/eruptionYear> ?date FILTER ( year(?date) >= 2000 ) }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mount_I\u014d_(I\u014djima)"}}}, {"id": "229", "question": [{"language": "en", "string": "Who is the tallest basketball player?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:BasketballPlayer ; dbo:height ?num } ORDER BY DESC(?num) OFFSET 0 LIMIT 1"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Edison_Reshketa"}}}, {"id": "230", "question": [{"language": "en", "string": "How many missions does the Soyuz programme have?"}], "query": {"sparql": "SELECT (COUNT(DISTINCT ?uri) AS ?c) WHERE { ?uri <http://dbpedia.org/property/programme> <http://dbpedia.org/resource/Soyuz_programme> }"}, "answers": {"c": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "148"}}}, {"id": "231", "question": [{"language": "en", "string": "Give me all Danish movies."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Film> ; <http://dbpedia.org/ontology/country> <http://dbpedia.org/resource/Denmark> }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/De_Udstillede"}}}, {"id": "232", "question": [{"language": "en", "string": "Which movies did Kurosawa direct?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT ?uri WHERE { ?uri rdf:type dbo:Film ; dbo:director res:Akira_Kurosawa }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dersu_Uzala_(1975_film)"}}}, {"id": "233", "question": [{"language": "en", "string": "Which television shows were created by John Cleese?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/TelevisionShow> ; <http://dbpedia.org/ontology/creator> <http://dbpedia.org/resource/John_Cleese> }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Monty_Python's_Fliegender_Zirkus"}}}, {"id": "234", "question": [{"language": "en", "string": "Which awards did Douglas Hofstadter win?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Douglas_Hofstadter dbo:award ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/American_Academy_of_Arts_and_Sciences"}}}, {"id": "235", "question": [{"language": "en", "string": "Who is the daughter of Robert Kennedy married to?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Robert_F._Kennedy> <http://dbpedia.org/ontology/child> ?child . ?child <http://dbpedia.org/ontology/spouse> ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Andrew_Cuomo"}}}, {"id": "236", "question": [{"language": "en", "string": "Who is the owner of Rolls-Royce?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Rolls-Royce_Motors> <http://dbpedia.org/ontology/owner> ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vickers_plc"}}}, {"id": "237", "question": [{"language": "en", "string": "What is the most frequent cause of death?"}], "query": {"sparql": "SELECT DISTINCT ?x WHERE { ?uri <http://dbpedia.org/ontology/deathCause> ?x . } ORDER BY DESC(COUNT(DISTINCT ?uri)) OFFSET 0 LIMIT 1"}, "answers": {"x": {"type": "uri", "value": "http://dbpedia.org/resource/Gunshot_wound"}}}, {"id": "238", "question": [{"language": "en", "string": "Which rockets were launched from Baikonur?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Rocket> ; <http://dbpedia.org/ontology/launchSite> <http://dbpedia.org/resource/Baikonur_Cosmodrome> }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Voskhod_(rocket)"}}}, {"id": "239", "question": [{"language": "en", "string": "What does IYCM stand for?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { ?uri dbo:abbreviation \"IYCM\" }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Youth_Climate_Movement"}}}, {"id": "240", "question": [{"language": "en", "string": "Which companies have more than 1 million employees?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Company> { ?uri <http://dbpedia.org/ontology/numberOfEmployees> ?n } UNION { ?uri <http://dbpedia.org/property/numEmployees> ?n } FILTER ( ?n > 1000000 ) }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Walmart"}}}, {"id": "241", "question": [{"language": "en", "string": "Give all swimmers that were born in Moscow."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Swimmer> ; <http://dbpedia.org/ontology/birthPlace> <http://dbpedia.org/resource/Moscow> }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alla_Grebennikova"}}}, {"id": "242", "question": [{"language": "en", "string": "Show me the book that Muhammad Ali wrote."}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Book ; dbo:author res:Muhammad_Ali }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Soul_of_a_Butterfly"}}}, {"id": "243", "question": [{"language": "en", "string": "How many museums does Paris have?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Museum> ; <http://dbpedia.org/ontology/location> <http://dbpedia.org/resource/Paris> }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Gallery_of_Paleontology_and_Comparative_Anatomy"}}}, {"id": "244", "question": [{"language": "en", "string": "Which city has the most inhabitants?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:City ; dbo:populationTotal ?pop } ORDER BY DESC(?pop) OFFSET 0 LIMIT 1"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Beinamar"}}}, {"id": "245", "question": [{"language": "en", "string": "Which city has the least inhabitants?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:City ; dbo:populationTotal ?pop } ORDER BY ASC(?pop) OFFSET 0 LIMIT 1"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ambae_Island"}}}, {"id": "246", "question": [{"language": "en", "string": "Give me all the TV shows with Neil Patrick Harris."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/TelevisionShow> ; <http://dbpedia.org/ontology/starring> <http://dbpedia.org/resource/Neil_Patrick_Harris> }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Christmas_Blessing"}}}, {"id": "247", "question": [{"language": "en", "string": "Who wrote The Hunger Games?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/The_Hunger_Games> <http://dbpedia.org/property/author> ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Suzanne_Collins"}}}, {"id": "248", "question": [{"language": "en", "string": "Show a list of soccer clubs that play in the Bundesliga."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/SoccerClub> ; <http://dbpedia.org/ontology/league> <http://dbpedia.org/resource/Bundesliga> }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/1969\u201370_FC_Bayern_Munich_season"}}}, {"id": "249", "question": [{"language": "en", "string": "What country is Mount Everest in?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { res:Mount_Everest dbo:locatedInArea ?uri . ?uri rdf:type dbo:Country }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/China"}}}, {"id": "250", "question": [{"language": "en", "string": "Who is the founder of Penguin Books?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { res:Penguin_Books dbo:founder ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Allen_Lane"}}}, {"id": "251", "question": [{"language": "en", "string": "Which programming languages influenced Javascript?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/ProgrammingLanguage> ; <http://dbpedia.org/ontology/influenced> <http://dbpedia.org/resource/JavaScript> }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/CoffeeScript"}}}, {"id": "252", "question": [{"language": "en", "string": "List all the musicals with music by Elton John."}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Musical ; dbo:musicBy res:Elton_John }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Aida_(musical)"}}}, {"id": "253", "question": [{"language": "en", "string": "Show me all the breweries in Australia."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Brewery> { ?uri <http://dbpedia.org/ontology/location> <http://dbpedia.org/resource/Australia> } UNION { ?uri <http://dbpedia.org/ontology/location> ?x . ?x <http://dbpedia.org/ontology/country> <http://dbpedia.org/resource/Australia> } }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cascade_Brewery"}}}, {"id": "254", "question": [{"language": "en", "string": "How much did Pulp Fiction cost?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?n WHERE { res:Pulp_Fiction dbo:budget ?n }"}, "answers": {"n": {"type": "typed-literal", "datatype": "http://dbpedia.org/datatype/usDollar", "value": "8.0"}}}, {"id": "255", "question": [{"language": "en", "string": "How many airlines are there?"}], "query": {"sparql": "SELECT (COUNT(DISTINCT ?uri) AS ?c) WHERE { ?uri a <http://dbpedia.org/ontology/Airline> }"}, "answers": {"c": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "4838"}}}, {"id": "256", "question": [{"language": "en", "string": "Who played Agent Smith in Matrix?"}], "query": {"sparql": "PREFIX res: <http://dbpedia.org/resource/> PREFIX dbp: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Agent_Smith <http://dbpedia.org/ontology/portrayer> ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jonathan_Groff"}}}, {"id": "257", "question": [{"language": "en", "string": "How much carbs does peanut butter have?"}], "query": {"sparql": "SELECT DISTINCT ?carbs WHERE { <http://dbpedia.org/resource/Peanut_butter> <http://dbpedia.org/property/carbs> ?carbs }"}, "answers": {"carbs": {"type": "typed-literal", "datatype": "http://dbpedia.org/datatype/gram", "value": "22.3"}}}, {"id": "258", "question": [{"language": "en", "string": "Which book has the most pages?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Book ; dbo:numberOfPages ?n } ORDER BY DESC(?n) OFFSET 0 LIMIT 1"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Tolkien_Reader"}}}, {"id": "259", "question": [{"language": "en", "string": "Which bridges cross the Seine?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Bridge> ; <http://dbpedia.org/ontology/crosses> <http://dbpedia.org/resource/Seine> }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Viaduc_d'Austerlitz"}}}, {"id": "260", "question": [{"language": "en", "string": "When did Dracula's creator die?"}], "query": {"sparql": "SELECT DISTINCT xsd:date(?date) WHERE { <http://dbpedia.org/resource/Count_Dracula> <http://dbpedia.org/ontology/creator> ?x . ?x <http://dbpedia.org/ontology/deathDate> ?date. }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#date", "value": "1912-04-20"}}}, {"id": "261", "question": [{"language": "en", "string": "What is the location of the Houses of Parliament?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT ?uri WHERE { res:Palace_of_Westminster dbo:location ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/United_Kingdom"}}}, {"id": "262", "question": [{"language": "en", "string": "Show me all English Gothic buildings in Kent."}], "query": {"sparql": "SELECT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Building> ; <http://dbpedia.org/ontology/architecturalStyle> <http://dbpedia.org/resource/English_Gothic_architecture> ; <http://dbpedia.org/ontology/location> <http://dbpedia.org/resource/Kent> }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/All_Saints_Church,_Waldershare"}}}, {"id": "263", "question": [{"language": "en", "string": "What airlines are part of the SkyTeam alliance?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Airline> { ?uri <http://dbpedia.org/ontology/alliance> <http://dbpedia.org/resource/SkyTeam> } UNION { ?uri <http://dbpedia.org/ontology/Alliance> <http://dbpedia.org/resource/SkyTeam> } }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alitalia"}}}, {"id": "264", "question": [{"language": "en", "string": "What is the total population of Melbourne, Florida?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> SELECT ?uri WHERE { <http://dbpedia.org/resource/Melbourne,_Florida> dbo:populationTotal ?uri }"}, "answers": {"uri": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#nonNegativeInteger", "value": "84678"}}}, {"id": "265", "question": [{"language": "en", "string": "Which airports does Air China serve?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Air_China dbo:targetAirport ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Hangzhou_Xiaoshan_International_Airport"}}}, {"id": "266", "question": [{"language": "en", "string": "In which year was Rachel Stevens born?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Rachel_Stevens dbo:birthYear ?uri }"}, "answers": {"uri": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#gYear", "value": "1978"}}}, {"id": "267", "question": [{"language": "en", "string": "Where was JFK assassinated?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/John_F._Kennedy> <http://dbpedia.org/ontology/deathPlace> ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dallas"}}}, {"id": "268", "question": [{"language": "en", "string": "How many politicians graduated from Columbia University?"}], "query": {"sparql": "SELECT (COUNT(DISTINCT ?uri) AS ?c) WHERE { ?uri <http://dbpedia.org/ontology/profession> <http://dbpedia.org/resource/Politician> ; <http://dbpedia.org/ontology/almaMater> <http://dbpedia.org/resource/Columbia_University> }"}, "answers": {"c": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "10"}}}, {"id": "269", "question": [{"language": "en", "string": "What is the highest volcano in Africa?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Volcano> ; <http://dbpedia.org/ontology/locatedInArea> ?area . ?area dct:subject dbc:Countries_in_Africa . ?uri <http://dbpedia.org/ontology/elevation> ?elevation } ORDER BY DESC(?elevation) LIMIT 1"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mount_Kenya"}}}, {"id": "270", "question": [{"language": "en", "string": "What are the specialities of the UNC Health Care?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/UNC_Health_Care> <http://dbpedia.org/property/speciality> ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Cancer"}}}, {"id": "271", "question": [{"language": "en", "string": "From which region is the Melon de Bourgogne?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Melon_de_Bourgogne dbo:wineRegion ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Washington_(state)"}}}, {"id": "272", "question": [{"language": "en", "string": "Who was influenced by Socrates?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/influencedBy> <http://dbpedia.org/resource/Socrates> }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Arcesilaus"}}}, {"id": "273", "question": [{"language": "en", "string": "Who was president of Pakistan in 1978?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/title> <http://dbpedia.org/resource/President_of_Pakistan> ; <http://dbpedia.org/property/years> 1978 }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Muhammad_Zia-ul-Haq"}}}, {"id": "274", "question": [{"language": "en", "string": "Give me English actors starring in Lovesick."}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Lovesick_(1983_film)> dbo:starring ?uri . ?uri dbo:birthPlace ?city . ?city dbo:country <http://dbpedia.org/resource/United_Kingdom> }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dudley_Moore"}}}, {"id": "275", "question": [{"language": "en", "string": "Give me all types of eating disorders."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/class/yago/WikicatEatingDisorders> }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Disordered_eating"}}}, {"id": "276", "question": [{"language": "en", "string": "Who was married to president Chirac?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Jacques_Chirac dbo:spouse ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bernadette_Chirac"}}}, {"id": "277", "question": [{"language": "en", "string": "What is the largest metropolitan area in Washington state?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Washington_(state)> <http://dbpedia.org/property/largestmetro> ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Seattle_metropolitan_area"}}}, {"id": "278", "question": [{"language": "en", "string": "Where in France is sparkling wine produced?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { ?uri dbo:wineProduced res:Sparkling_wine ; dbo:location res:France }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Loire_Valley_(wine)"}}}, {"id": "279", "question": [{"language": "en", "string": "Where did Hillel Slovak die?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Hillel_Slovak> <http://dbpedia.org/ontology/deathPlace> ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/California"}}}, {"id": "280", "question": [{"language": "en", "string": "What is the timezone in San Pedro de Atacama?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:San_Pedro_de_Atacama dbo:timeZone ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Time_in_Chile"}}}, {"id": "281", "question": [{"language": "en", "string": "In which city does the Chile Route 68 end?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Chile_Route_68 dbo:routeEnd ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Valpara\u00edso"}}}, {"id": "282", "question": [{"language": "en", "string": "Who was the doctoral supervisor of Albert Einstein?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Albert_Einstein dbo:doctoralAdvisor ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alfred_Kleiner"}}}, {"id": "283", "question": [{"language": "en", "string": "Who wrote the song Hotel California?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Hotel_California dbo:writer ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Glenn_Frey"}}}, {"id": "284", "question": [{"language": "en", "string": "Who was on the Apollo 11 mission?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Apollo_11> <http://dbpedia.org/property/crewMembers> ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Buzz_Aldrin"}}}, {"id": "285", "question": [{"language": "en", "string": "What is in a chocolate chip cookie?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Chocolate_chip_cookie dbo:ingredient ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chocolate_chip"}}}, {"id": "286", "question": [{"language": "en", "string": "What is the atmosphere of the Moon composed of?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Moon> <http://dbpedia.org/property/atmosphereComposition> ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Argon"}}}, {"id": "287", "question": [{"language": "en", "string": "How many movies did Park Chan-wook direct?"}], "query": {"sparql": "SELECT COUNT(DISTINCT ?uri AS ?uri) WHERE { ?uri <http://dbpedia.org/ontology/director> <http://dbpedia.org/resource/Park_Chan-wook> . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "17"}}}, {"id": "288", "question": [{"language": "en", "string": "Who are the developers of DBpedia?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:DBpedia dbo:developer ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/OpenLink_Software"}}}, {"id": "289", "question": [{"language": "en", "string": "Which Indian company has the most employees?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Company ; dbo:location res:India ; dbo:numberOfEmployees ?n } ORDER BY DESC(?n) OFFSET 0 LIMIT 1"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ministry_of_Railways_(India)"}}}, {"id": "290", "question": [{"language": "en", "string": "Where does Piccadilly start?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/routeStart> <http://dbpedia.org/resource/Piccadilly> }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dover_Street"}}}, {"id": "291", "question": [{"language": "en", "string": "What is the capital of Cameroon?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Cameroon dbo:capital ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Yaound\u00e9"}}}, {"id": "292", "question": [{"language": "en", "string": "When did the Boston Tea Party take place?"}], "query": {"sparql": "SELECT DISTINCT ?d WHERE { <http://dbpedia.org/resource/Boston_Tea_Party> <http://dbpedia.org/property/date> ?d }"}, "answers": {"d": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#date", "value": "1773-12-16"}}}, {"id": "293", "question": [{"language": "en", "string": "Who played Gus Fring in Breaking Bad?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Gus_Fring dbo:portrayer ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Giancarlo_Esposito"}}}, {"id": "294", "question": [{"language": "en", "string": "Who wrote Harry Potter?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Harry_Potter> <http://dbpedia.org/property/author> ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/J._K._Rowling"}}}, {"id": "295", "question": [{"language": "en", "string": "Which actors play in Big Bang Theory?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/The_Big_Bang_Theory> <http://dbpedia.org/ontology/starring> ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kevin_Sussman"}}}, {"id": "296", "question": [{"language": "en", "string": "What is the largest country in the world?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Country ; dbo:areaTotal ?n } ORDER BY DESC(?n) OFFSET 0 LIMIT 1"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Asia"}}}, {"id": "297", "question": [{"language": "en", "string": "Who created Family Guy?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Family_Guy dbo:creator ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Seth_MacFarlane"}}}, {"id": "298", "question": [{"language": "en", "string": "To which party does the mayor of Paris belong?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Paris dbo:mayor ?x . ?x dbo:party ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Socialist_Party_(France)"}}}, {"id": "299", "question": [{"language": "en", "string": "Who composed the soundtrack for Cameron's Titanic?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Titanic_(1997_film)> dbo:musicComposer ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/James_Horner"}}}, {"id": "300", "question": [{"language": "en", "string": "When did Boris Becker end his active career?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?d WHERE { res:Boris_Becker dbo:activeYearsEndDate ?d }"}, "answers": {"d": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#date", "value": "1999-06-25"}}}, {"id": "301", "question": [{"language": "en", "string": "Show me all basketball players that are higher than 2 meters."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/BasketballPlayer> ; <http://dbpedia.org/ontology/height> ?n FILTER ( ?n > 2.0 ) }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alize_Johnson"}}}, {"id": "302", "question": [{"language": "en", "string": "Who developed Slack?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?uri dbo:product <http://dbpedia.org/resource/Slack_(software)> }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Slack_Technologies"}}}, {"id": "303", "question": [{"language": "en", "string": "How many grand-children did Jacques Cousteau have?"}], "query": {"sparql": "SELECT COUNT(DISTINCT ?y AS ?y) WHERE { <http://dbpedia.org/resource/Jacques_Cousteau> <http://dbpedia.org/ontology/child> ?x . ?x <http://dbpedia.org/ontology/child> ?y . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "4"}}}, {"id": "304", "question": [{"language": "en", "string": "Which films did Stanley Kubrick direct?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { ?uri dbo:director res:Stanley_Kubrick }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Day_of_the_Fight"}}}, {"id": "305", "question": [{"language": "en", "string": "How many seats does the home stadium of FC Porto have?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbp: <http://dbpedia.org/property/> PREFIX dbr: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> PREFIX db: <http://dbpedia.org/> SELECT ?capacity WHERE { { dbr:FC_Porto dbo:ground ?ground . ?ground dbo:capacity ?capacity } UNION { dbr:FC_Porto dbo:ground ?ground . ?ground dbp:capacity ?capacity } }"}, "answers": {"capacity": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "50035"}}}, {"id": "306", "question": [{"language": "en", "string": "Show me all books in Asimov's Foundation series."}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { ?uri dbo:series res:Foundation_series }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/R._Daneel_Olivaw"}}}, {"id": "307", "question": [{"language": "en", "string": "Which movies star both Liz Taylor and Richard Burton?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/starring> <http://dbpedia.org/resource/Elizabeth_Taylor> ; <http://dbpedia.org/ontology/starring> <http://dbpedia.org/resource/Richard_Burton> }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Divorce_His,_Divorce_Hers"}}}, {"id": "308", "question": [{"language": "en", "string": "In which city are the headquarters of the United Nations?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { res:Headquarters_of_the_United_Nations dbo:location ?uri . ?uri rdf:type dbo:City }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/New_York_City"}}}, {"id": "309", "question": [{"language": "en", "string": "In which city was the president of Montenegro born?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { ?x <http://dbpedia.org/property/title> dbr:President_of_Montenegro ; dbo:birthPlace ?uri . ?uri dbo:type dbr:Capital_city }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Belgrade"}}}, {"id": "310", "question": [{"language": "en", "string": "Which writers studied in Istanbul?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Writer> { ?uri <http://dbpedia.org/ontology/almaMater> ?x } UNION { ?uri <http://dbpedia.org/ontology/education> ?x } { ?x <http://dbpedia.org/ontology/city> <http://dbpedia.org/resource/Istanbul> } UNION { ?x <http://dbpedia.org/property/city> <http://dbpedia.org/resource/Istanbul> } }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vedat_T\u00fcrkali"}}}, {"id": "311", "question": [{"language": "en", "string": "Who is the mayor of Paris?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Paris dbo:mayor ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Anne_Hidalgo"}}}, {"id": "312", "question": [{"language": "en", "string": "What is the longest river in China?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/River> ; <http://dbpedia.org/ontology/country> <http://dbpedia.org/resource/China> ; <http://dbpedia.org/property/length> ?l } ORDER BY DESC(?l) OFFSET 0 LIMIT 1"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Jin_River_(Sichuan)"}}}, {"id": "313", "question": [{"language": "en", "string": "Who discovered Ceres?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Ceres_(dwarf_planet)> dbo:discoverer ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Giuseppe_Piazzi"}}}, {"id": "314", "question": [{"language": "en", "string": "Who is the host of the BBC Wildlife Specials?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:BBC_Wildlife_Specials dbo:presenter ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/David_Attenborough"}}}, {"id": "315", "question": [{"language": "en", "string": "How many moons does Mars have?"}], "query": {"sparql": "SELECT DISTINCT ?n WHERE { <http://dbpedia.org/resource/Mars> <http://dbpedia.org/property/satellites> ?n }"}, "answers": {"n": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "2"}}}, {"id": "316", "question": [{"language": "en", "string": "What was the first Queen album?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Album ; dbo:artist <http://dbpedia.org/resource/Queen_(band)> ; dbo:releaseDate ?d } ORDER BY ASC(?d) OFFSET 0 LIMIT 1"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Seven_Seas_of_Rhye"}}}, {"id": "317", "question": [{"language": "en", "string": "Give me a list of all Canadians that reside in the U.S."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/birthPlace> <http://dbpedia.org/resource/Canada> . ?uri <http://dbpedia.org/ontology/residence> <http://dbpedia.org/resource/United_States> . } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Glenn_Michibata"}}}, {"id": "318", "question": [{"language": "en", "string": "Where is Syngman Rhee buried?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Syngman_Rhee dbo:restingPlace ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Seoul"}}}, {"id": "319", "question": [{"language": "en", "string": "In which countries do people speak Japanese?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Country ; dbo:language res:Japanese_language }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Taiwan_under_Japanese_rule"}}}, {"id": "320", "question": [{"language": "en", "string": "When did the Dodo become extinct?"}], "query": {"sparql": "SELECT DISTINCT ?s WHERE { <http://dbpedia.org/resource/Dodo> <http://dbpedia.org/property/extinct> ?s . } "}, "answers": {"s": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "1662"}}}, {"id": "321", "question": [{"language": "en", "string": "Show me all Czech movies."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Film> ; <http://dbpedia.org/ontology/country> <http://dbpedia.org/resource/Czech_Republic> }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Boredom_in_Brno"}}}, {"id": "322", "question": [{"language": "en", "string": "Which rivers flow into the North Sea?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/River> ; <http://dbpedia.org/ontology/riverMouth> <http://dbpedia.org/resource/North_Sea> }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Water_of_Cruden"}}}, {"id": "323", "question": [{"language": "en", "string": "When did Operation Overlord commence?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?d WHERE { res:Operation_Overlord dbo:date ?d }"}, "answers": {"d": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#date", "value": "1944-08-30"}}}, {"id": "324", "question": [{"language": "en", "string": "Where do the Red Sox play?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Boston_Red_Sox> <http://dbpedia.org/property/ballpark> ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Fenway_Park"}}}, {"id": "325", "question": [{"language": "en", "string": "In which time zone is Rome?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Rome dbo:timeZone ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Central_European_Time"}}}, {"id": "326", "question": [{"language": "en", "string": "Give me a list of all critically endangered birds."}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dct: <http://purl.org/dc/terms/> PREFIX dbc: <http://dbpedia.org/resource/Category:> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri ?p WHERE { ?uri rdf:type dbo:Bird { ?uri dbo:conservationStatus \"CR\" } UNION { ?uri dct:subject dbc:Critically_endangered_animals } }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Mara\u00f1\u00f3n_spinetail"}}}, {"id": "327", "question": [{"language": "en", "string": "How much did the Lego Movie cost?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?n WHERE { res:The_Lego_Movie dbo:budget ?n }"}, "answers": {"n": {"type": "typed-literal", "datatype": "http://dbpedia.org/datatype/usDollar", "value": "60.0"}}}, {"id": "328", "question": [{"language": "en", "string": "What was the original occupation of the inventor of Lego?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Lego> <http://dbpedia.org/property/inventor> ?x . ?x <http://dbpedia.org/property/occupation> ?uri . } "}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Carpenter"}}}, {"id": "329", "question": [{"language": "en", "string": "Which countries have more than ten volcanoes?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?x a <http://dbpedia.org/ontology/Volcano> ; <http://dbpedia.org/ontology/locatedInArea> ?uri . ?uri a <http://dbpedia.org/ontology/Country> } GROUP BY ?uri HAVING ( COUNT(?x) > 10 )"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Japan"}}}, {"id": "330", "question": [{"language": "en", "string": "Who wrote the Game of Thrones theme?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Game_of_Thrones dbo:composer ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ramin_Djawadi"}}}, {"id": "331", "question": [{"language": "en", "string": "How many calories does a baguette have?"}], "query": {"sparql": "SELECT DISTINCT ?n WHERE { <http://dbpedia.org/resource/Baguette> <http://dbpedia.org/property/calories> ?n }"}, "answers": {"n": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "263"}}}, {"id": "332", "question": [{"language": "en", "string": "Which companies produce hovercrafts?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Company ; dbo:product res:Hovercraft }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/HJ_Shipbuilding_&_Construction"}}}, {"id": "333", "question": [{"language": "en", "string": "How many emperors did China have?"}], "query": {"sparql": "SELECT COUNT(DISTINCT ?uri AS ?uri) WHERE { ?uri <http://dbpedia.org/property/title> <http://dbpedia.org/resource/Emperor_of_China> . }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "242"}}}, {"id": "334", "question": [{"language": "en", "string": "Show me hiking trails in the Grand Canyon where there's no danger of flash floods."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/property/trailheads> <http://dbpedia.org/resource/Grand_Canyon> FILTER NOT EXISTS { ?uri <http://dbpedia.org/property/hazards> <http://dbpedia.org/resource/Flash_flood> } }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bright_Angel_Trail"}}}, {"id": "335", "question": [{"language": "en", "string": "In which ancient empire could you pay with cocoa beans?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { ?uri dbo:currency res:Cocoa_bean }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Aztec_Empire"}}}, {"id": "336", "question": [{"language": "en", "string": "How did Michael Jackson die?"}], "query": {"sparql": "SELECT DISTINCT ?s WHERE { <http://dbpedia.org/resource/Michael_Jackson> <http://dbpedia.org/property/deathCause> ?s }"}, "answers": {"s": {"type": "uri", "value": "http://dbpedia.org/resource/Death_of_Michael_Jackson"}}}, {"id": "337", "question": [{"language": "en", "string": "Which space probes were sent into orbit around the sun?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbc: <http://dbpedia.org/resource/Category:> PREFIX dct: <http://purl.org/dc/terms/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?s WHERE { ?s dct:subject dbc:Missions_to_the_Sun ; rdf:type ?type FILTER ( ?type IN (dbo:Satellite, dbo:ArtificialSatellite) ) }"}, "answers": {"s": {"type": "uri", "value": "http://dbpedia.org/resource/Geomagnetic_Field_Monitoring_Program_of_SUPARCO"}}}, {"id": "338", "question": [{"language": "en", "string": "When was Coca Cola invented?"}], "query": {"sparql": "SELECT DISTINCT ?n WHERE { <http://dbpedia.org/resource/Coca-Cola> <http://dbpedia.org/property/introduced> ?n . } "}, "answers": {"n": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#date", "value": "1886-05-08"}}}, {"id": "339", "question": [{"language": "en", "string": "What is the biggest stadium in Spain?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Stadium ; dbo:location res:Spain ; dbo:seatingCapacity ?n } ORDER BY DESC(?n) OFFSET 0 LIMIT 1"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Camp_Nou"}}}, {"id": "340", "question": [{"language": "en", "string": "On which day is Columbus Day?"}], "query": {"sparql": "SELECT DISTINCT ?d WHERE { <http://dbpedia.org/resource/Columbus_Day> <http://dbpedia.org/property/date> ?d . } "}, "answers": {"d": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#gMonthDay", "value": "--10-12"}}}, {"id": "341", "question": [{"language": "en", "string": "How short is the shortest active NBA player?"}], "query": {"sparql": "SELECT DISTINCT ?n WHERE { ?x a <http://dbpedia.org/ontology/BasketballPlayer> ; <http://dbpedia.org/ontology/league> <http://dbpedia.org/resource/National_Basketball_Association> ; <http://dbpedia.org/ontology/height> ?n FILTER NOT EXISTS { ?x <http://dbpedia.org/ontology/activeYearsEndYear> ?d } } ORDER BY ASC(?n) OFFSET 0 LIMIT 1"}, "answers": {"n": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#double", "value": "1.7526"}}}, {"id": "342", "question": [{"language": "en", "string": "What form of government does Russia have?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Russia dbo:governmentType ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Federalism"}}}, {"id": "343", "question": [{"language": "en", "string": "What movies does Jesse Eisenberg play in?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Film> ; <http://dbpedia.org/ontology/starring> <http://dbpedia.org/resource/Jesse_Eisenberg> }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/American_Ultra"}}}, {"id": "344", "question": [{"language": "en", "string": "Show me all museums in London."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Museum> ; <http://dbpedia.org/ontology/location> <http://dbpedia.org/resource/London> }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Vagina_Museum"}}}, {"id": "345", "question": [{"language": "en", "string": "Who is the coach of Ankara's ice hockey team?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { ?x dbo:city res:Ankara ; dbo:league res:Turkish_Ice_Hockey_First_League ; dbo:coach ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/\u0130brahim_O\u011fuz"}}}, {"id": "346", "question": [{"language": "en", "string": "Who is the son of Sonny and Cher?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { ?uri dbo:parent res:Cher ; dbo:parent res:Sonny_Bono }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Chaz_Bono"}}}, {"id": "347", "question": [{"language": "en", "string": "Show me Hemingway's autobiography."}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { ?uri dbo:author res:Ernest_Hemingway ; dbo:literaryGenre res:Autobiography }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/A_Moveable_Feast"}}}, {"id": "348", "question": [{"language": "en", "string": "What kind of music did Lou Reed play?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Lou_Reed> <http://dbpedia.org/ontology/genre> ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Art_rock"}}}, {"id": "349", "question": [{"language": "en", "string": "What languages do they speak in Pakistan?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Pakistan> <http://dbpedia.org/ontology/language> ?uri . }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Memoni_language"}}}, {"id": "350", "question": [{"language": "en", "string": "What is Batman's real name?"}], "query": {"sparql": "SELECT DISTINCT ?label WHERE { <http://dbpedia.org/resource/Batman> <http://xmlns.com/foaf/0.1/name> ?label FILTER ( str(?label) != \"Batman\" ) }"}, "answers": {"label": {"type": "literal", "xml:lang": "en", "value": "Bruce Wayne"}}}, {"id": "351", "question": [{"language": "en", "string": "When is the movie Worst Case Scenario going to be in cinemas in the Netherlands?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> PREFIX dbr: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX foaf: <http://xmlns.com/foaf/0.1/> SELECT DISTINCT ?rel WHERE { <http://dbpedia.org/resource/Worst_Case_Scenario_(film)> ?p ?o ; dbo:releaseDate ?rel FILTER contains(lcase(str(?o)), \"netherlands\") }"}, "answers": {"rel": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#date", "value": "2008-01-30"}}}, {"id": "352", "question": [{"language": "en", "string": "How tall is Amazon Eve?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?height WHERE { res:Amazon_Eve dbo:height ?height }"}, "answers": {"height": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#double", "value": "1.8288"}}}, {"id": "353", "question": [{"language": "en", "string": "Which weapons did Heckler & Koch develop?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Weapon> ; <http://dbpedia.org/property/designer> <http://dbpedia.org/resource/Heckler_&_Koch> }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Ak_4_rifle"}}}, {"id": "354", "question": [{"language": "en", "string": "Where is Fort Knox located?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Fort_Knox> <http://dbpedia.org/ontology/location> ?uri. ?uri a <http://dbpedia.org/ontology/Place>. }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Kentucky"}}}, {"id": "355", "question": [{"language": "en", "string": "Who created Batman?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Batman dbo:creator ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Bill_Finger"}}}, {"id": "356", "question": [{"language": "en", "string": "Which politicians were married to a German?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Politician> ; <http://dbpedia.org/ontology/spouse> ?spouse { ?spouse <http://dbpedia.org/ontology/birthPlace> <http://dbpedia.org/resource/Germany> } UNION { ?spouse <http://dbpedia.org/ontology/birthPlace> ?p . ?p <http://dbpedia.org/ontology/country> <http://dbpedia.org/resource/Germany> } }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Marcus_Pretzell"}}}, {"id": "357", "question": [{"language": "en", "string": "When was Jack Wolfskin founded?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT xsd:date(?year) WHERE { res:Jack_Wolfskin dbo:foundingYear ?year }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#date", "value": "1981-01-01"}}}, {"id": "358", "question": [{"language": "en", "string": "In which studio did the Beatles record their first album?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbp: <http://dbpedia.org/property/> PREFIX dbr: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> PREFIX db: <http://dbpedia.org/> 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"}, "answers": {"studio": {"type": "literal", "xml:lang": "en", "value": "EMI, London"}}}, {"id": "359", "question": [{"language": "en", "string": "How many gold medals did Michael Phelps win at the 2008 Olympics?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> SELECT Count(?sub) as ?c WHERE { ?sub dbo:goldMedalist dbr:Michael_Phelps . filter (contains (str(?sub), \"2008\") && contains (str(?sub), \"Olympics\")) }"}, "answers": {"c": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "8"}}}, {"id": "360", "question": [{"language": "en", "string": "How deep is Lake Chiemsee?"}], "query": {"sparql": "SELECT DISTINCT ?n WHERE { <http://dbpedia.org/resource/Chiemsee> <http://dbpedia.org/ontology/maximumDepth> ?n }"}, "answers": {"n": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#double", "value": "72.7"}}}, {"id": "361", "question": [{"language": "en", "string": "Give me the grandchildren of Elvis Presley."}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { res:Elvis_Presley dbo:child ?child . ?child dbo:child ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Riley_Keough"}}}, {"id": "362", "question": [{"language": "en", "string": "What does ICRO stand for?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri <http://dbpedia.org/ontology/abbreviation> \"ICRO\" }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Irish_Cave_Rescue_Organisation"}}}, {"id": "363", "question": [{"language": "en", "string": "When was Olof Palme shot?"}], "query": {"sparql": "SELECT DISTINCT ?date WHERE { <http://dbpedia.org/resource/Olof_Palme> <http://dbpedia.org/ontology/deathDate> ?date }"}, "answers": {"date": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#date", "value": "1986-02-28"}}}, {"id": "364", "question": [{"language": "en", "string": "List all the musicals with music by Leonard Bernstein."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Musical> ; <http://dbpedia.org/ontology/musicBy> <http://dbpedia.org/resource/Leonard_Bernstein> }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Side_by_Side_by_Sondheim"}}}, {"id": "365", "question": [{"language": "en", "string": "Which movies starring Mickey Rourke were directed by Guy Ritchie?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Film ; dbo:starring res:Mickey_Rourke ; dbo:director res:Guy_Ritchie }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/The_Hire"}}}, {"id": "366", "question": [{"language": "en", "string": "How high is the lighthouse in Colombo?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?num WHERE { res:Colombo_Lighthouse dbo:height ?num }"}, "answers": {"num": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#double", "value": "15.0"}}}, {"id": "367", "question": [{"language": "en", "string": "How many years was the Ford Model T manufactured?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX xsd: <http://www.w3.org/2001/XMLSchema#> PREFIX res: <http://dbpedia.org/resource/> SELECT ?years WHERE { res:Ford_Model_T dbo:productionEndYear ?end ; dbo:productionStartYear ?start. BIND ( ( year(xsd:date(?end)) - year(xsd:date(?start)) ) AS ?years) }"}, "answers": {"years": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "19"}}}, {"id": "368", "question": [{"language": "en", "string": "Give me all gangsters from the prohibition era."}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dct: <http://purl.org/dc/terms/> PREFIX dbc: <http://dbpedia.org/resource/Category:> PREFIX dbr: <http://dbpedia.org/resource/> SELECT DISTINCT ?uri WHERE { ?uri dbo:occupation dbr:Gangster ; dct:subject dbc:Prohibition-era_gangsters }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Dean_O'Banion"}}}, {"id": "369", "question": [{"language": "en", "string": "Give me all Seven Wonders of the Ancient World."}], "query": {"sparql": "PREFIX dct: <http://purl.org/dc/terms/> PREFIX dbc: <http://dbpedia.org/resource/Category:> SELECT ?uri WHERE { ?uri dct:subject dbc:Seven_Wonders_of_the_Ancient_World }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Temple_of_Artemis"}}}, {"id": "370", "question": [{"language": "en", "string": "Give me all chemical elements."}], "query": {"sparql": "PREFIX dct: <http://purl.org/dc/terms/> PREFIX dbc: <http://dbpedia.org/resource/Category:> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX owl: <http://www.w3.org/2002/07/owl#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type owl:Thing ; dct:subject dbc:Chemical_elements }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Aluminium"}}}, {"id": "371", "question": [{"language": "en", "string": "How many rivers and lakes are in South Carolina?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dct: <http://purl.org/dc/terms/> PREFIX dbc: <http://dbpedia.org/resource/Category:> PREFIX dbr: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT (COUNT(DISTINCT ?uri) AS ?count) WHERE { { ?uri dbo:location dbr:South_Carolina ; rdf:type dbo:Lake } UNION { ?uri dct:subject dbc:Rivers_and_streams_of_South_Carolina } }"}, "answers": {"count": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "14"}}}, {"id": "372", "question": [{"language": "en", "string": "How many states are in Mexico?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT (COUNT(?uri) AS ?count) WHERE { ?uri dbo:type dbr:States_of_Mexico }"}, "answers": {"count": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "0"}}}, {"id": "373", "question": [{"language": "en", "string": "How many theories did Albert Einstein come up with?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT (COUNT(?uri) AS ?count) WHERE { dbr:Albert_Einstein dbo:knownFor ?uri }"}, "answers": {"count": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "15"}}}, {"id": "374", "question": [{"language": "en", "string": "What form of government is found in South Africa?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?uri WHERE { dbr:South_Africa dbo:governmentType ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Unitary_state"}}}, {"id": "375", "question": [{"language": "en", "string": "What is the largest state in the United States?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dct: <http://purl.org/dc/terms/> PREFIX dbc: <http://dbpedia.org/resource/Category:> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT ?uri WHERE { ?uri dct:subject dbc:States_of_the_United_States ; rdf:type dbo:AdministrativeRegion ; dbo:areaTotal ?area } ORDER BY DESC(?area) OFFSET 0 LIMIT 1"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Alaska"}}}, {"id": "376", "question": [{"language": "en", "string": "What is the longest river in the world?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT ?uri WHERE { ?uri rdf:type dbo:BodyOfWater ; dbo:length ?length } ORDER BY DESC(?length) LIMIT 1"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Indian_Ocean"}}}, {"id": "377", "question": [{"language": "en", "string": "What is the wavelength of indigo?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?n WHERE { dbr:Indigo dbo:wavelength ?n }"}, "answers": {"n": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#double", "value": "4.2e-07"}}}, {"id": "378", "question": [{"language": "en", "string": "What was the name of the famous battle in 1836 in San Antonio?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?uri WHERE { ?uri a dbo:MilitaryConflict ; dbo:place dbr:San_Antonio ; dbo:date ?date FILTER ( ?date > \"1835-12-31T00:00:00Z\"^^xsd:dateTime ) FILTER ( ?date <= \"1836-12-31T00:00:00Z\"^^xsd:dateTime ) }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Battle_of_the_Alamo"}}}, {"id": "379", "question": [{"language": "en", "string": "What were the names of the three ships used by Columbus?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dct: <http://purl.org/dc/terms/> PREFIX dbc: <http://dbpedia.org/resource/Category:> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT ?uri WHERE { ?uri rdf:type dbo:Ship ; dct:subject dbc:Christopher_Columbus ; dct:subject dbc:Exploration_ships }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pinta_(ship)"}}}, {"id": "380", "question": [{"language": "en", "string": "When did Muhammad die?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT xsd:date(?date) WHERE { res:Muhammad dbo:deathDate ?date }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#date", "value": "0632-06-08"}}}, {"id": "381", "question": [{"language": "en", "string": "When was the De Beers company founded?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT xsd:date(?date) WHERE { res:De_Beers dbo:foundingYear ?date }"}, "answers": {"callret-0": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#date", "value": "1888-01-01"}}}, {"id": "382", "question": [{"language": "en", "string": "When was John Adams born?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?date WHERE { res:John_Adams dbo:birthDate ?date }"}, "answers": {"date": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#date", "value": "1735-10-30"}}}, {"id": "383", "question": [{"language": "en", "string": "Which American presidents were in office during the Vietnam War?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX dct: <http://purl.org/dc/terms/> PREFIX dbc: <http://dbpedia.org/resource/Category:> SELECT ?uri WHERE { ?uri dct:subject dbc:Presidents_of_the_United_States . res:Vietnam_War dbo:commander ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Richard_Nixon"}}}, {"id": "384", "question": [{"language": "en", "string": "Which city has the oldest running metro?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT ?loc WHERE { ?uri dbo:type dbr:Rapid_transit ; dbo:openingYear ?date ; dbo:location ?loc . ?loc rdf:type dbo:City } ORDER BY ASC(?date) LIMIT 1"}, "answers": {"loc": {"type": "uri", "value": "http://dbpedia.org/resource/Klang_Valley"}}}, {"id": "385", "question": [{"language": "en", "string": "Which holidays are celebrated around the world?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Holiday }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/1981_Handsworth_riots"}}}, {"id": "386", "question": [{"language": "en", "string": "Who assassinated President McKinley?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dct: <http://purl.org/dc/terms/> PREFIX dbc: <http://dbpedia.org/resource/Category:> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Person ; dct:subject dbc:American_assassins ; dct:subject dbc:Assassination_of_William_McKinley }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Leon_Czolgosz"}}}, {"id": "387", "question": [{"language": "en", "string": "Who discovered Pluto?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?uri WHERE { dbr:Pluto dbo:discoverer ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Clyde_Tombaugh"}}}, {"id": "388", "question": [{"language": "en", "string": "Who killed Caesar?"}], "query": {"sparql": "PREFIX dct: <http://purl.org/dc/terms/> PREFIX dbc: <http://dbpedia.org/resource/Category:> SELECT DISTINCT ?uri WHERE { ?uri dct:subject dbc:Assassins_of_Julius_Caesar }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Decimus_Junius_Brutus_Albinus"}}}, {"id": "389", "question": [{"language": "en", "string": "Who was the first King of England?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX yago: <http://dbpedia.org/class/yago/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Royalty ; rdf:type yago:WikicatEnglishMonarchs ; dbo:activeYearsStartYear ?date } ORDER BY ASC(?date) OFFSET 0 LIMIT 1"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Harold_Godwinson"}}}, {"id": "390", "question": [{"language": "en", "string": "What was the final result of the War of the Roses?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT DISTINCT ?result WHERE { ?uri dbo:isPartOfMilitaryConflict dbr:Wars_of_the_Roses ; dbo:result ?result ; dbo:date ?date } ORDER BY DESC(?date) OFFSET 0 LIMIT 1"}, "answers": {"result": {"type": "literal", "value": "Decisive Tudor victory"}}}, {"id": "391", "question": [{"language": "en", "string": "Who writes the Farmers' Almanac?"}], "query": {"sparql": "PREFIX dbp: <http://dbpedia.org/property/> SELECT ?uri WHERE { <http://dbpedia.org/resource/Farmers'_Almanac> dbp:editor ?uri }"}, "answers": {"uri": {"type": "literal", "xml:lang": "en", "value": "Peter Geiger"}}}, {"id": "392", "question": [{"language": "en", "string": "How big is the earth's diameter?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT (( xsd:double(?radius) * 2 ) AS ?diameter) WHERE { res:Earth dbo:meanRadius ?radius }"}, "answers": {"diameter": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#double", "value": "1.2742e+07"}}}, {"id": "393", "question": [{"language": "en", "string": "How many people live in Eurasia?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?population WHERE { res:Eurasia dbo:populationTotal ?population }"}, "answers": {"population": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#nonNegativeInteger", "value": "5360351985"}}}, {"id": "394", "question": [{"language": "en", "string": "Give me the runtime of Toy Story."}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?runtime WHERE { res:Toy_Story dbo:runtime ?runtime }"}, "answers": {"runtime": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#double", "value": "4860.0"}}}, {"id": "395", "question": [{"language": "en", "string": "What was the first name of the band Queens of the Stone Age?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?name WHERE { res:Queens_of_the_Stone_Age dbo:alias ?name }"}, "answers": {"name": {"type": "literal", "xml:lang": "en", "value": "Gamma Ray(1996)"}}}, {"id": "396", "question": [{"language": "en", "string": "Give me the birth place of Frank Sinatra."}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?place WHERE { res:Frank_Sinatra dbo:birthPlace ?place }"}, "answers": {"place": {"type": "uri", "value": "http://dbpedia.org/resource/Hoboken,_New_Jersey"}}}, {"id": "397", "question": [{"language": "en", "string": "Which university did Angela Merkel attend?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?university WHERE { res:Angela_Merkel dbo:almaMater ?university }"}, "answers": {"university": {"type": "uri", "value": "http://dbpedia.org/resource/German_Academy_of_Sciences_at_Berlin"}}}, {"id": "398", "question": [{"language": "en", "string": "What is the alma mater of the chancellor of Germany Angela Merkel?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?Almamater WHERE { dbr:Angela_Merkel dbo:almaMater ?Almamater }"}, "answers": {"Almamater": {"type": "uri", "value": "http://dbpedia.org/resource/German_Academy_of_Sciences_at_Berlin"}}}, {"id": "399", "question": [{"language": "en", "string": "Who is the author of the interpretation of dreams?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?Author WHERE { dbr:The_Interpretation_of_Dreams dbo:author ?Author }"}, "answers": {"Author": {"type": "uri", "value": "http://dbpedia.org/resource/Sigmund_Freud"}}}, {"id": "400", "question": [{"language": "en", "string": "What is the birth name of Adele?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?bn WHERE { dbr:Adele dbo:birthName ?bn }"}, "answers": {"bn": {"type": "literal", "xml:lang": "en", "value": "Adele Laurie Blue Adkins"}}}, {"id": "401", "question": [{"language": "en", "string": "What are the top selling luxury vehicle brands in Germany?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dct: <http://purl.org/dc/terms/> PREFIX dbc: <http://dbpedia.org/resource/Category:> 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)"}, "answers": {"company": {"type": "uri", "value": "http://dbpedia.org/resource/Mercedes-Benz_Group"}}}, {"id": "402", "question": [{"language": "en", "string": "How many awards has Bertrand Russell?"}], "query": {"sparql": "PREFIX dbr: <http://dbpedia.org/resource/> PREFIX dbp: <http://dbpedia.org/property/> SELECT (COUNT(?Awards) AS ?Counter) WHERE { dbr:Bertrand_Russell dbp:awards ?Awards }"}, "answers": {"Counter": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "6"}}}, {"id": "403", "question": [{"language": "en", "string": "Who is Dan Jurafsky?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?Dan WHERE {  VALUES ?Dan {dbr:Daniel_Jurafsky } }"}, "answers": {"Dan": {"type": "uri", "value": "http://dbpedia.org/resource/Daniel_Jurafsky"}}}, {"id": "404", "question": [{"language": "en", "string": "how much is the elevation of D\u00fcsseldorf Airport ?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?ele WHERE { dbr:D\u00fcsseldorf_Airport dbo:elevation ?ele } LIMIT 1"}, "answers": {"ele": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#double", "value": "44.8"}}}, {"id": "405", "question": [{"language": "en", "string": "how much is the total population of  european union?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?europop WHERE { dbr:European_Union dbo:populationTotal ?europop }"}, "answers": {"europop": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#nonNegativeInteger", "value": "447007596"}}}, {"id": "406", "question": [{"language": "en", "string": "how many foreigners speak German?"}], "query": {"sparql": "PREFIX dbr: <http://dbpedia.org/resource/> PREFIX dbp: <http://dbpedia.org/property/> SELECT ?Ger_lang WHERE { dbr:German_language dbp:speakers ?Ger_lang } OFFSET 1 LIMIT 1"}, "answers": {"Ger_lang": {"type": "literal", "xml:lang": "en", "value": "L2 speakers: 80\u201385 million"}}}, {"id": "407", "question": [{"language": "en", "string": "Where is the birthplace of Goethe?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?Goethe WHERE { dbr:Johann_Wolfgang_von_Goethe dbo:birthPlace ?Goethe }"}, "answers": {"Goethe": {"type": "uri", "value": "http://dbpedia.org/resource/Holy_Roman_Empire"}}}, {"id": "408", "question": [{"language": "en", "string": "Where is the origin of Carolina reaper?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/>PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?uri WHERE { dbr:Carolina_Reaper dbo:origin ?uri}"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Rock_Hill,_South_Carolina"}}}, {"id": "409", "question": [{"language": "en", "string": "How much is the population of Mexico City ?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?Mexico_City WHERE { dbr:Mexico_City dbo:populationTotal ?Mexico_City }"}, "answers": {"Mexico_City": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#nonNegativeInteger", "value": "9209944"}}}, {"id": "410", "question": [{"language": "en", "string": "What is the nick name of Baghdad?"}], "query": {"sparql": "PREFIX dbr: <http://dbpedia.org/resource/> PREFIX foaf: <http://xmlns.com/foaf/0.1/> SELECT ?nm WHERE { dbr:Baghdad foaf:nick ?nm }"}, "answers": {"nm": {"type": "literal", "xml:lang": "en", "value": "City of Peace (\u0645\u062f\u064a\u0646\u0629 \u0627\u0644\u0633\u0644\u0627\u0645)"}}}, {"id": "411", "question": [{"language": "en", "string": "Who is the novelist of the work a song of ice and fire?"}], "query": {"sparql": "PREFIX dbr: <http://dbpedia.org/resource/> PREFIX dbp: <http://dbpedia.org/property/> SELECT ?Novelist WHERE { dbr:A_Song_of_Ice_and_Fire dbp:author ?Novelist }"}, "answers": {"Novelist": {"type": "uri", "value": "http://dbpedia.org/resource/George_R._R._Martin"}}}, {"id": "412", "question": [{"language": "en", "string": "What is the percentage of area water in Brazil?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?percentage WHERE { dbr:Brazil dbo:percentageOfAreaWater ?percentage }"}, "answers": {"percentage": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#float", "value": "0.65"}}}, {"id": "413", "question": [{"language": "en", "string": "How much is the population of Iraq?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?pIraq WHERE { dbr:Iraq dbo:populationTotal ?pIraq }"}, "answers": {"pIraq": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#nonNegativeInteger", "value": "44222503"}}}, {"id": "414", "question": [{"language": "en", "string": "What is the population of Cairo?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?pop WHERE { dbr:Cairo dbo:populationTotal ?pop }"}, "answers": {"pop": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#nonNegativeInteger", "value": "10025657"}}}, {"id": "415", "question": [{"language": "en", "string": "How much is the population density rank of Germany?"}], "query": {"sparql": "PREFIX dbr: <http://dbpedia.org/resource/> PREFIX dbp: <http://dbpedia.org/property/> SELECT ?rank WHERE { dbr:Germany dbp:populationDensityRank ?rank }"}, "answers": {"rank": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "58"}}}, {"id": "416", "question": [{"language": "en", "string": "What is the relation between Resource Description Framework and Web Ontology Language?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?rdf_owl WHERE { dbr:Web_Ontology_Language dbo:abstract ?rdf_owl } LIMIT 1"}, "answers": {"rdf_owl": {"type": "literal", "xml:lang": "ca", "value": "OWL \u00e9s l'acr\u00f2nim de l'angl\u00e8s Web Ontology Language, un llenguatge de marcat per publicar i compartir dades usant ontologies en la WWW. OWL t\u00e9 com a objectiu facilitar un model de marcat constru\u00eft sobre RDF i codificat en XML. T\u00e9 com a antecedent DAML+OIL, en els quals es van inspirar els creadors de OWL per crear el llenguatge. Al costat de l'entorn RDF i altres components, aquestes eines fan possible el projecte de web sem\u00e0ntica."}}}, {"id": "417", "question": [{"language": "en", "string": "How large is the total area of North Rhine-Westphalia?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?tarea WHERE { dbr:North_Rhine-Westphalia dbo:areaTotal ?tarea }"}, "answers": {"tarea": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#double", "value": "3.40841e+10"}}}, {"id": "418", "question": [{"language": "en", "string": "What is the original title of the interpretation of dreams?"}], "query": {"sparql": "PREFIX dbr: <http://dbpedia.org/resource/> PREFIX foaf: <http://xmlns.com/foaf/0.1/> SELECT ?title WHERE { dbr:The_Interpretation_of_Dreams foaf:name ?title }"}, "answers": {"title": {"type": "literal", "xml:lang": "en", "value": "Die Traumdeutung"}}}, {"id": "419", "question": [{"language": "en", "string": "When was the death  of  Shakespeare?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?x WHERE { dbr:William_Shakespeare dbo:deathDate ?x } LIMIT 1"}, "answers": {"x": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#date", "value": "1616-04-23"}}}, {"id": "420", "question": [{"language": "en", "string": "With how many countries Iran has borders?"}], "query": {"sparql": "PREFIX dbr: <http://dbpedia.org/resource/> PREFIX dbp: <http://dbpedia.org/property/> SELECT ?border WHERE { dbr:Geography_of_Iran dbp:borders ?border } LIMIT 8"}, "answers": {"border": {"type": "uri", "value": "http://dbpedia.org/resource/Azerbaijan"}}}, {"id": "421", "question": [{"language": "en", "string": "What is the smallest city by area in Germany?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX skos: <http://www.w3.org/2004/02/skos/core#> PREFIX dbc: <http://dbpedia.org/resource/Category:> PREFIX dct: <http://purl.org/dc/terms/> SELECT ?city WHERE { ?m skos:broader dbc:Cities_in_Germany . ?city dct:subject ?m ; dbo:areaTotal ?area } ORDER BY ?area LIMIT 1"}, "answers": {"city": {"type": "uri", "value": "http://dbpedia.org/resource/Eckernf\u00f6rde"}}}, {"id": "422", "question": [{"language": "en", "string": "Which beer brewing comapnies are located in North-Rhine Westphalia?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dct: <http://purl.org/dc/terms/> PREFIX dbc: <http://dbpedia.org/resource/Category:> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT ?company WHERE { ?company dct:subject dbc:Companies_based_in_North_Rhine-Westphalia ; rdf:type dbo:Brewery }"}, "answers": {"company": {"type": "uri", "value": "http://dbpedia.org/resource/Veltins_Brewery"}}}, {"id": "423", "question": [{"language": "en", "string": "What is the largest city in america?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?lcity WHERE { dbr:United_States dbo:largestCity ?lcity }"}, "answers": {"lcity": {"type": "uri", "value": "http://dbpedia.org/resource/New_York_City"}}}, {"id": "424", "question": [{"language": "en", "string": "Who is the current federal minister of finance in Germany?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> SELECT ?leader WHERE { <http://dbpedia.org/resource/Federal_Ministry_of_Finance_(Germany)> dbo:leader ?leader }"}, "answers": {"leader": {"type": "uri", "value": "http://dbpedia.org/resource/Katja_Hessel"}}}, {"id": "425", "question": [{"language": "en", "string": "What is the highest mountain in the Bavarian Alps?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?m  WHERE { dbr:Bavarian_Alps dbp:highest ?m} "}, "answers": {"m": {"type": "uri", "value": "http://dbpedia.org/resource/Zugspitze"}}}, {"id": "426", "question": [{"language": "en", "string": "Who is 8th president of US?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbp: <http://dbpedia.org/property/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?name WHERE { dbr:8th_President_of_the_United_States dbo:wikiPageRedirects ?link . ?link dbp:name ?name }"}, "answers": {"name": {"type": "literal", "xml:lang": "en", "value": "Martin Van Buren"}}}, {"id": "427", "question": [{"language": "en", "string": "In which state Penn State University is located?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?s WHERE { dbr:Pennsylvania_State_University dbo:state ?s }"}, "answers": {"s": {"type": "uri", "value": "http://dbpedia.org/resource/Pennsylvania"}}}, {"id": "428", "question": [{"language": "en", "string": "What is Donald Trump's main business?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?owner WHERE { ?owner dbo:owner dbr:Donald_Trump }"}, "answers": {"owner": {"type": "uri", "value": "http://dbpedia.org/resource/Trump_Model_Management"}}}, {"id": "429", "question": [{"language": "en", "string": "What is the last work of Dan Brown?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbp: <http://dbpedia.org/property/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?book WHERE { { ?book dbo:author dbr:Dan_Brown . ?book dbp:releaseDate ?date } UNION { ?book dbo:author dbr:Dan_Brown . ?book dbo:publicationDate ?date} } ORDER BY DESC(xsd:date(?date)) LIMIT 1"}, "answers": {"book": {"type": "uri", "value": "http://dbpedia.org/resource/Origin_(Brown_novel)"}}}, {"id": "430", "question": [{"language": "en", "string": "When was the last episode of the TV series Friends aired?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?date WHERE { dbr:Friends dbo:completionDate ?date }"}, "answers": {"date": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#date", "value": "2004-05-06"}}}, {"id": "431", "question": [{"language": "en", "string": "What is Angela Merkel\u2019s birth name?"}], "query": {"sparql": "PREFIX res: <http://dbpedia.org/resource/> PREFIX dbp: <http://dbpedia.org/property/> SELECT DISTINCT ?string WHERE { res:Angela_Merkel dbp:birthName ?string }"}, "answers": {"string": {"type": "literal", "xml:lang": "en", "value": "Angela Dorothea Kasner"}}}, {"id": "432", "question": [{"language": "en", "string": "Which classes does the Millepede belong to?"}], "query": {"sparql": "PREFIX res: <http://dbpedia.org/resource/> PREFIX dbp: <http://dbpedia.org/property/> SELECT DISTINCT ?String WHERE { res:Millipede dbp:taxon ?String }"}, "answers": {"String": {"type": "literal", "xml:lang": "en", "value": "Diplopoda"}}}, {"id": "433", "question": [{"language": "en", "string": "How many James Bond movies do exist?"}], "query": {"sparql": "SELECT (COUNT(DISTINCT ?uri) AS ?c) WHERE { ?uri dct:subject <http://dbpedia.org/resource/Category:James_Bond_films> }"}, "answers": {"c": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "29"}}}, {"id": "434", "question": [{"language": "en", "string": "What languages are spoken in Pakistan?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Pakistan> <http://dbpedia.org/ontology/language> ?uri }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Memoni_language"}}}, {"id": "435", "question": [{"language": "en", "string": "What is the wavelength of Indigo?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?n WHERE { dbr:Indigo dbo:wavelength ?n }"}, "answers": {"n": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#double", "value": "4.2e-07"}}}, {"id": "436", "question": [{"language": "en", "string": "Which daughters of British earls died at the same place they were born at?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX yago: <http://dbpedia.org/class/yago/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type yago:WikicatDaughtersOfBritishEarls ; dbo:birthPlace ?x ; dbo:deathPlace ?y FILTER ( ?x = ?y ) }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Megan_Lloyd_George"}}}, {"id": "437", "question": [{"language": "en", "string": "In which city is the headquarter of Air China?"}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Air_China> <http://dbpedia.org/ontology/headquarter> ?uri . ?uri a <http://dbpedia.org/class/yago/City108524735> }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Beijing"}}}, {"id": "438", "question": [{"language": "en", "string": "Give me all libraries established before 1400."}], "query": {"sparql": "SELECT DISTINCT ?uri WHERE { ?uri a <http://dbpedia.org/ontology/Library> ; <http://dbpedia.org/property/established> ?year FILTER ( ?year < 1400 ) }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Library_of_Pergamum"}}}, {"id": "439", "question": [{"language": "en", "string": "Which beer brewing companies are located in North-Rhine Westphalia?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dct: <http://purl.org/dc/terms/> PREFIX dbc: <http://dbpedia.org/resource/Category:> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT ?company WHERE { ?company dct:subject dbc:Companies_based_in_North_Rhine-Westphalia ; rdf:type dbo:Brewery }"}, "answers": {"company": {"type": "uri", "value": "http://dbpedia.org/resource/Veltins_Brewery"}}}, {"id": "440", "question": [{"language": "en", "string": "What were the names of the three ships by Columbus?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dct: <http://purl.org/dc/terms/> PREFIX dbc: <http://dbpedia.org/resource/Category:> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT ?uri WHERE { ?uri rdf:type dbo:Ship ; dct:subject dbc:Christopher_Columbus ; dct:subject dbc:Exploration_ships }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/Pinta_(ship)"}}}, {"id": "441", "question": [{"language": "en", "string": "What is the highest mountain in Saxony Germany?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?m WHERE { ?m dbo:mountainRange dbr:Ore_Mountains ; dbo:elevation ?height } ORDER BY DESC(?height) LIMIT 1"}, "answers": {"m": {"type": "uri", "value": "http://dbpedia.org/resource/Kl\u00ednovec"}}}, {"id": "442", "question": [{"language": "en", "string": "How much is the population of mexico city ?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?Mexico_City WHERE { dbr:Mexico_City dbo:populationTotal ?Mexico_City }"}, "answers": {"Mexico_City": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#nonNegativeInteger", "value": "9209944"}}}, {"id": "443", "question": [{"language": "en", "string": "how big is the total area of North Rhine- Westphalia?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?tarea WHERE { dbr:North_Rhine-Westphalia dbo:areaTotal ?tarea }"}, "answers": {"tarea": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#double", "value": "3.40841e+10"}}}, {"id": "444", "question": [{"language": "en", "string": "how much is the population  Iraq?"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX dbr: <http://dbpedia.org/resource/> SELECT ?pIraq WHERE { dbr:Iraq dbo:populationTotal ?pIraq }"}, "answers": {"pIraq": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#nonNegativeInteger", "value": "44222503"}}}, {"id": "445", "question": [{"language": "en", "string": "how much is the population densty rank of germany?"}], "query": {"sparql": "PREFIX dbr: <http://dbpedia.org/resource/> PREFIX dbp: <http://dbpedia.org/property/> SELECT ?rank WHERE { dbr:Germany dbp:populationDensityRank ?rank }"}, "answers": {"rank": {"type": "typed-literal", "datatype": "http://www.w3.org/2001/XMLSchema#integer", "value": "58"}}}, {"id": "446", "question": [{"language": "en", "string": "Which holidays are celebrated around the world? test2"}], "query": {"sparql": "PREFIX dbo: <http://dbpedia.org/ontology/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT ?uri WHERE { ?uri rdf:type dbo:Holiday }"}, "answers": {"uri": {"type": "uri", "value": "http://dbpedia.org/resource/1981_Handsworth_riots"}}}]}
\ No newline at end of file
diff --git a/QALD/query.py b/tools/query.py
similarity index 100%
rename from QALD/query.py
rename to tools/query.py
diff --git a/QALD/run_queries.py b/tools/run_queries.py
similarity index 97%
rename from QALD/run_queries.py
rename to tools/run_queries.py
index 3e289c7..4c792e4 100644
--- a/QALD/run_queries.py
+++ b/tools/run_queries.py
@@ -52,7 +52,7 @@ print("Faults: ", faults)
 print("Empty: ", empty)
 
 with open(output_file, 'w', encoding='utf-8') as output:
-    json.dump(data, output)
+    json.dump(out, output)
 
 
 
-- 
GitLab